mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:17:26 +08:00
109 lines
4.3 KiB
C#
109 lines
4.3 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.IO;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Audio.Track;
|
|
using osu.Framework.Extensions;
|
|
using osu.Framework.Extensions.ObjectExtensions;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Audio;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Database;
|
|
using osu.Game.Tests.Resources;
|
|
using osu.Game.Tests.Visual;
|
|
using MemoryStream = System.IO.MemoryStream;
|
|
|
|
namespace osu.Game.Tests.Skins
|
|
{
|
|
[HeadlessTest]
|
|
public partial class TestSceneBeatmapSkinResources : OsuTestScene
|
|
{
|
|
[Resolved]
|
|
private BeatmapManager beatmaps { get; set; } = null!;
|
|
|
|
[Test]
|
|
public void TestRetrieveAndLegacyExportJapaneseFilename()
|
|
{
|
|
IWorkingBeatmap beatmap = null!;
|
|
MemoryStream outStream = null!;
|
|
|
|
// Ensure importer encoding is correct
|
|
AddStep("import beatmap", () => beatmap = importBeatmapFromArchives(@"japanese-filename.osz"));
|
|
AddAssert("sample is non-null", () => beatmap.Skin.GetSample(new SampleInfo(@"見本")) != null);
|
|
|
|
// Ensure exporter encoding is correct (round trip)
|
|
AddStep("export", () =>
|
|
{
|
|
outStream = new MemoryStream();
|
|
|
|
new LegacyBeatmapExporter(LocalStorage)
|
|
.ExportToStream((BeatmapSetInfo)beatmap.BeatmapInfo.BeatmapSet!, outStream, null);
|
|
});
|
|
|
|
AddStep("import beatmap again", () => beatmap = importBeatmapFromStream(outStream));
|
|
AddAssert("sample is non-null", () => beatmap.Skin.GetSample(new SampleInfo(@"見本")) != null);
|
|
}
|
|
|
|
[Test]
|
|
public void TestRetrieveAndNonLegacyExportJapaneseFilename()
|
|
{
|
|
IWorkingBeatmap beatmap = null!;
|
|
MemoryStream outStream = null!;
|
|
|
|
// Ensure importer encoding is correct
|
|
AddStep("import beatmap", () => beatmap = importBeatmapFromArchives(@"japanese-filename.osz"));
|
|
AddAssert("sample is non-null", () => beatmap.Skin.GetSample(new SampleInfo(@"見本")) != null);
|
|
|
|
// Ensure exporter encoding is correct (round trip)
|
|
AddStep("export", () =>
|
|
{
|
|
outStream = new MemoryStream();
|
|
|
|
new BeatmapExporter(LocalStorage)
|
|
.ExportToStream((BeatmapSetInfo)beatmap.BeatmapInfo.BeatmapSet!, outStream, null);
|
|
});
|
|
|
|
AddStep("import beatmap again", () => beatmap = importBeatmapFromStream(outStream));
|
|
AddAssert("sample is non-null", () => beatmap.Skin.GetSample(new SampleInfo(@"見本")) != null);
|
|
}
|
|
|
|
[Test]
|
|
public void TestRetrieveOggAudio()
|
|
{
|
|
IWorkingBeatmap beatmap = null!;
|
|
|
|
AddStep("import beatmap", () => beatmap = importBeatmapFromArchives(@"ogg-beatmap.osz"));
|
|
AddAssert("sample is non-null", () => beatmap.Skin.GetSample(new SampleInfo(@"sample")) != null);
|
|
AddAssert("track is non-null", () =>
|
|
{
|
|
using (var track = beatmap.LoadTrack())
|
|
return track is not TrackVirtual;
|
|
});
|
|
}
|
|
|
|
[Test]
|
|
public void TestRetrievalWithConflictingFilenames()
|
|
{
|
|
IWorkingBeatmap beatmap = null!;
|
|
|
|
AddStep("import beatmap", () => beatmap = importBeatmapFromArchives(@"conflicting-filenames-beatmap.osz"));
|
|
AddAssert("texture is non-null", () => beatmap.Skin.GetTexture(@"spinner-osu") != null);
|
|
AddAssert("sample is non-null", () => beatmap.Skin.GetSample(new SampleInfo(@"spinner-osu")) != null);
|
|
}
|
|
|
|
private IWorkingBeatmap importBeatmapFromStream(Stream stream)
|
|
{
|
|
var imported = beatmaps.Import(new ImportTask(stream, "filename.osz")).GetResultSafely();
|
|
return imported.AsNonNull().PerformRead(s => beatmaps.GetWorkingBeatmap(s.Beatmaps[0]));
|
|
}
|
|
|
|
private IWorkingBeatmap importBeatmapFromArchives(string filename)
|
|
{
|
|
var imported = beatmaps.Import(new ImportTask(TestResources.OpenResource($@"Archives/{filename}"), filename)).GetResultSafely();
|
|
return imported.AsNonNull().PerformRead(s => beatmaps.GetWorkingBeatmap(s.Beatmaps[0]));
|
|
}
|
|
}
|
|
}
|