1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00
osu-lazer/osu.Game.Tests/Resources/TestResources.cs

29 lines
1.0 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using System.IO;
2019-01-28 17:19:57 +08:00
using NUnit.Framework;
using osu.Framework.IO.Stores;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Tests.Resources
{
2019-01-28 17:19:57 +08:00
public static class TestResources
2018-04-13 17:19:50 +08:00
{
2019-01-28 17:19:57 +08:00
public static Stream OpenResource(string name) => new DllResourceStore("osu.Game.Tests.dll").GetStream($"Resources/{name}");
2019-10-10 16:39:41 +08:00
public static Stream GetTestBeatmapStream(bool virtualTrack = false) => new DllResourceStore("osu.Game.Resources.dll").GetStream($"Beatmaps/241526 Soleily - Renatus{(virtualTrack ? "_virtual" : "")}.osz");
2019-01-28 17:19:57 +08:00
2019-10-10 16:39:41 +08:00
public static string GetTestBeatmapForImport(bool virtualTrack = false)
2018-04-13 17:19:50 +08:00
{
2019-01-28 17:19:57 +08:00
var temp = Path.GetTempFileName() + ".osz";
2019-10-10 16:39:41 +08:00
using (var stream = GetTestBeatmapStream(virtualTrack))
2019-01-28 17:19:57 +08:00
using (var newFile = File.Create(temp))
stream.CopyTo(newFile);
2018-04-13 17:19:50 +08:00
2019-01-28 17:19:57 +08:00
Assert.IsTrue(File.Exists(temp));
return temp;
2018-04-13 17:19:50 +08:00
}
}
}