1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 23:27:24 +08:00
osu-lazer/osu.Game.Tests/Visual/Navigation/TestSettingsMigration.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.5 KiB
C#
Raw Normal View History

2020-03-05 13:46:07 +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 NUnit.Framework;
using osu.Framework.Utils;
using osu.Game.Configuration;
namespace osu.Game.Tests.Visual.Navigation
{
public partial class TestSettingsMigration : OsuGameTestScene
{
public override void RecycleLocalStorage(bool isDisposing)
2020-03-05 13:46:07 +08:00
{
base.RecycleLocalStorage(isDisposing);
if (isDisposing)
return;
2020-03-05 13:46:07 +08:00
using (var config = new OsuConfigManager(LocalStorage))
{
config.SetValue(OsuSetting.Version, "2020.101.0");
config.SetValue(OsuSetting.DisplayStarsMaximum, 10.0);
2020-03-05 13:46:07 +08:00
}
}
[Test]
public void TestDisplayStarsMigration()
{
AddAssert("config has migrated value", () => Precision.AlmostEquals(Game.LocalConfig.Get<double>(OsuSetting.DisplayStarsMaximum), 10.1));
2021-03-17 18:02:25 +08:00
AddStep("set value again", () => Game.LocalConfig.SetValue(OsuSetting.DisplayStarsMaximum, 10.0));
2020-03-05 13:46:07 +08:00
AddStep("force save config", () => Game.LocalConfig.Save());
AddStep("remove game", () => Remove(Game, true));
2020-03-05 13:46:07 +08:00
AddStep("create game again", CreateGame);
AddUntilStep("Wait for load", () => Game.IsLoaded);
AddAssert("config did not migrate value", () => Precision.AlmostEquals(Game.LocalConfig.Get<double>(OsuSetting.DisplayStarsMaximum), 10));
}
}
}