2019-12-11 14:24:06 +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.Allocation ;
using osu.Framework.Bindables ;
using osu.Framework.Platform ;
using osu.Framework.Testing ;
using osu.Game.Beatmaps ;
using osu.Game.Rulesets ;
namespace osu.Game.Tests.Visual.Gameplay
{
[HeadlessTest] // we alter unsafe properties on the game host to test inactive window state.
2020-06-12 18:40:54 +08:00
public class TestScenePauseWhenInactive : OsuPlayerTestScene
2019-12-11 14:24:06 +08:00
{
protected override IBeatmap CreateBeatmap ( RulesetInfo ruleset )
{
var beatmap = ( Beatmap ) base . CreateBeatmap ( ruleset ) ;
beatmap . HitObjects . RemoveAll ( h = > h . StartTime < 30000 ) ;
return beatmap ;
}
[Resolved]
private GameHost host { get ; set ; }
[Test]
public void TestDoesntPauseDuringIntro ( )
{
AddStep ( "set inactive" , ( ) = > ( ( Bindable < bool > ) host . IsActive ) . Value = false ) ;
2019-12-11 14:47:34 +08:00
2019-12-11 14:24:06 +08:00
AddStep ( "resume player" , ( ) = > Player . GameplayClockContainer . Start ( ) ) ;
2019-12-11 14:47:34 +08:00
AddAssert ( "ensure not paused" , ( ) = > ! Player . GameplayClockContainer . IsPaused . Value ) ;
2019-12-11 14:24:06 +08:00
AddUntilStep ( "wait for pause" , ( ) = > Player . GameplayClockContainer . IsPaused . Value ) ;
AddAssert ( "time of pause is after gameplay start time" , ( ) = > Player . GameplayClockContainer . GameplayClock . CurrentTime > = Player . DrawableRuleset . GameplayStartTime ) ;
}
2020-03-05 10:25:07 +08:00
protected override TestPlayer CreatePlayer ( Ruleset ruleset ) = > new TestPlayer ( true , true , true ) ;
2019-12-11 14:24:06 +08:00
}
}