2020-03-03 22:37:01 +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.Collections.Generic;
|
2020-03-03 23:08:51 +08:00
|
|
|
|
using System.Linq;
|
2020-03-03 22:37:01 +08:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-03-03 22:37:01 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2020-03-16 14:42:21 +08:00
|
|
|
|
using osu.Game.Overlays.Dashboard.Friends;
|
2020-03-03 22:37:01 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.UserInterface
|
|
|
|
|
{
|
|
|
|
|
public class TestSceneFriendsOnlineStatusControl : OsuTestScene
|
|
|
|
|
{
|
|
|
|
|
[Cached]
|
|
|
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
|
|
|
|
|
|
2020-03-23 09:47:27 +08:00
|
|
|
|
private FriendOnlineStreamControl control;
|
2020-03-03 22:37:01 +08:00
|
|
|
|
|
|
|
|
|
[SetUp]
|
2020-03-23 09:47:27 +08:00
|
|
|
|
public void SetUp() => Schedule(() => Child = control = new FriendOnlineStreamControl
|
2020-03-03 22:37:01 +08:00
|
|
|
|
{
|
2020-03-04 05:15:10 +08:00
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
2020-03-03 22:37:01 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Populate()
|
|
|
|
|
{
|
2021-11-04 17:02:44 +08:00
|
|
|
|
AddStep("Populate", () => control.Populate(new List<APIUser>
|
2020-03-03 22:37:01 +08:00
|
|
|
|
{
|
2021-11-04 17:02:44 +08:00
|
|
|
|
new APIUser
|
2020-03-03 23:08:51 +08:00
|
|
|
|
{
|
|
|
|
|
IsOnline = true
|
|
|
|
|
},
|
2021-11-04 17:02:44 +08:00
|
|
|
|
new APIUser
|
2020-03-03 23:08:51 +08:00
|
|
|
|
{
|
|
|
|
|
IsOnline = false
|
|
|
|
|
},
|
2021-11-04 17:02:44 +08:00
|
|
|
|
new APIUser
|
2020-03-03 23:08:51 +08:00
|
|
|
|
{
|
|
|
|
|
IsOnline = false
|
|
|
|
|
}
|
2020-03-03 22:37:01 +08:00
|
|
|
|
}));
|
2020-03-03 23:08:51 +08:00
|
|
|
|
|
2020-03-23 09:47:27 +08:00
|
|
|
|
AddAssert("3 users", () => control.Items.FirstOrDefault(item => item.Status == OnlineStatus.All)?.Count == 3);
|
|
|
|
|
AddAssert("1 online user", () => control.Items.FirstOrDefault(item => item.Status == OnlineStatus.Online)?.Count == 1);
|
|
|
|
|
AddAssert("2 offline users", () => control.Items.FirstOrDefault(item => item.Status == OnlineStatus.Offline)?.Count == 2);
|
2020-03-03 22:37:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|