2021-07-30 00:53:25 +08:00
|
|
|
// 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.Platform;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Tests;
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Tests.NonVisual
|
|
|
|
{
|
|
|
|
public class DataLoadTest : TournamentHostTest
|
|
|
|
{
|
|
|
|
[Test]
|
|
|
|
public void TestUnavailableRuleset()
|
|
|
|
{
|
2021-12-24 19:17:20 +08:00
|
|
|
using (HeadlessGameHost host = new CleanRunHeadlessGameHost())
|
2021-07-30 00:53:25 +08:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
var osu = new TestTournament();
|
|
|
|
|
|
|
|
LoadTournament(host, osu);
|
|
|
|
var storage = osu.Dependencies.Get<Storage>();
|
|
|
|
|
|
|
|
Assert.That(storage.GetFullPath("."), Is.EqualTo(Path.Combine(host.Storage.GetFullPath("."), "tournaments", "default")));
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
host.Exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class TestTournament : TournamentGameBase
|
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
Ruleset.Value = new RulesetInfo(); // not available
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|