// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Game.Overlays; using NUnit.Framework; using osu.Game.Users; using osu.Framework.Bindables; using osu.Game.Overlays.Rankings; namespace osu.Game.Tests.Visual.Online { public class TestSceneRankingsOverlay : OsuTestScene { protected override bool UseOnlineAPI => true; [Cached(typeof(RankingsOverlay))] private readonly RankingsOverlay rankingsOverlay; private readonly Bindable countryBindable = new Bindable(); private readonly Bindable scope = new Bindable(); public TestSceneRankingsOverlay() { Add(rankingsOverlay = new TestRankingsOverlay { Country = { BindTarget = countryBindable }, Scope = { BindTarget = scope }, }); } [Test] public void TestShow() { AddStep("Show", rankingsOverlay.Show); } [Test] public void TestFlagScopeDependency() { AddStep("Set scope to Score", () => scope.Value = RankingsScope.Score); AddAssert("Check country is Null", () => countryBindable.Value == null); AddStep("Set country", () => countryBindable.Value = us_country); AddAssert("Check scope is Performance", () => scope.Value == RankingsScope.Performance); } [Test] public void TestShowCountry() { AddStep("Show US", () => rankingsOverlay.ShowCountry(us_country)); } [Test] public void TestHide() { AddStep("Hide", rankingsOverlay.Hide); } private static readonly Country us_country = new Country { FlagName = "US", FullName = "United States" }; private class TestRankingsOverlay : RankingsOverlay { public new Bindable Country => base.Country; public new Bindable Scope => base.Scope; } } }