mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 23:07:26 +08:00
58 lines
1.9 KiB
C#
58 lines
1.9 KiB
C#
|
// 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.Linq;
|
||
|
using NUnit.Framework;
|
||
|
using osu.Framework.Allocation;
|
||
|
using osu.Framework.Graphics;
|
||
|
using osu.Framework.Screens;
|
||
|
using osu.Framework.Testing;
|
||
|
using osu.Game.Graphics.Containers;
|
||
|
using osu.Game.Screens.Multi.Lounge;
|
||
|
using osu.Game.Screens.Multi.Lounge.Components;
|
||
|
|
||
|
namespace osu.Game.Tests.Visual.Multiplayer
|
||
|
{
|
||
|
public class TestSceneLoungeSubScreen : RoomManagerTestScene
|
||
|
{
|
||
|
private LoungeSubScreen loungeScreen;
|
||
|
|
||
|
[BackgroundDependencyLoader]
|
||
|
private void load()
|
||
|
{
|
||
|
Child = new ScreenStack(loungeScreen = new LoungeSubScreen
|
||
|
{
|
||
|
Anchor = Anchor.Centre,
|
||
|
Origin = Anchor.Centre,
|
||
|
Width = 0.5f,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
public override void SetUpSteps()
|
||
|
{
|
||
|
base.SetUpSteps();
|
||
|
|
||
|
AddStep("clear rooms", () => RoomManager.Rooms.Clear());
|
||
|
}
|
||
|
|
||
|
private RoomsContainer roomsContainer => loungeScreen.ChildrenOfType<RoomsContainer>().First();
|
||
|
|
||
|
[Test]
|
||
|
public void TestScrollSelectedIntoView()
|
||
|
{
|
||
|
AddRooms(30);
|
||
|
|
||
|
AddUntilStep("first room is not masked", () => checkRoomVisible(roomsContainer.Rooms.First()));
|
||
|
|
||
|
AddStep("select last room", () => roomsContainer.Rooms.Last().Action?.Invoke());
|
||
|
|
||
|
AddUntilStep("first room is masked", () => !checkRoomVisible(roomsContainer.Rooms.First()));
|
||
|
AddUntilStep("last room is not masked", () => checkRoomVisible(roomsContainer.Rooms.Last()));
|
||
|
}
|
||
|
|
||
|
private bool checkRoomVisible(DrawableRoom room) =>
|
||
|
loungeScreen.ChildrenOfType<OsuScrollContainer>().First().ScreenSpaceDrawQuad
|
||
|
.Contains(room.ScreenSpaceDrawQuad.Centre);
|
||
|
}
|
||
|
}
|