mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 03:57:25 +08:00
944f0b0285
* Use [Cached] injection instead of modifying beatmaps read from store. * Add assertion steps verifying the presence of mapper name (or lack thereof).
131 lines
4.3 KiB
C#
131 lines
4.3 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;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Rulesets;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Osu;
|
|
using osu.Game.Rulesets.Osu.Mods;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Scoring;
|
|
using osu.Game.Screens.Ranking.Expanded;
|
|
using osu.Game.Screens.Ranking.Expanded.Accuracy;
|
|
using osu.Game.Screens.Ranking.Expanded.Statistics;
|
|
using osu.Game.Tests.Beatmaps;
|
|
using osu.Game.Users;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Tests.Visual.Ranking
|
|
{
|
|
public class TestSceneExpandedPanelMiddleContent : OsuTestScene
|
|
{
|
|
[Resolved]
|
|
private RulesetStore rulesetStore { get; set; }
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
{
|
|
typeof(ExpandedPanelMiddleContent),
|
|
typeof(AccuracyCircle),
|
|
typeof(AccuracyStatistic),
|
|
typeof(ComboStatistic),
|
|
typeof(CounterStatistic),
|
|
typeof(StarRatingDisplay),
|
|
typeof(StatisticDisplay),
|
|
typeof(TotalScoreCounter)
|
|
};
|
|
|
|
[Test]
|
|
public void TestMapWithKnownMapper()
|
|
{
|
|
var author = new User { Username = "mapper_name" };
|
|
|
|
AddStep("show example score", () => showPanel(createTestBeatmap(author), createTestScore()));
|
|
|
|
AddAssert("mapper name present", () => this.ChildrenOfType<OsuSpriteText>().Any(spriteText => spriteText.Text == "mapper_name"));
|
|
}
|
|
|
|
[Test]
|
|
public void TestMapWithUnknownMapper()
|
|
{
|
|
AddStep("show example score", () => showPanel(createTestBeatmap(null), createTestScore()));
|
|
|
|
AddAssert("mapped by text not present", () =>
|
|
this.ChildrenOfType<OsuSpriteText>().All(spriteText => !containsAny(spriteText.Text, "mapped", "by")));
|
|
}
|
|
|
|
private void showPanel(WorkingBeatmap workingBeatmap, ScoreInfo score)
|
|
{
|
|
Child = new ExpandedPanelMiddleContentContainer(workingBeatmap, score);
|
|
}
|
|
|
|
private WorkingBeatmap createTestBeatmap(User author)
|
|
{
|
|
var beatmap = new TestBeatmap(rulesetStore.GetRuleset(0));
|
|
beatmap.Metadata.Author = author;
|
|
|
|
return new TestWorkingBeatmap(beatmap);
|
|
}
|
|
|
|
private ScoreInfo createTestScore() => new ScoreInfo
|
|
{
|
|
User = new User
|
|
{
|
|
Id = 2,
|
|
Username = "peppy",
|
|
},
|
|
Beatmap = new TestBeatmap(new OsuRuleset().RulesetInfo).BeatmapInfo,
|
|
Mods = new Mod[] { new OsuModHardRock(), new OsuModDoubleTime() },
|
|
TotalScore = 999999,
|
|
Accuracy = 0.95,
|
|
MaxCombo = 999,
|
|
Rank = ScoreRank.S,
|
|
Date = DateTimeOffset.Now,
|
|
Statistics =
|
|
{
|
|
{ HitResult.Miss, 1 },
|
|
{ HitResult.Meh, 50 },
|
|
{ HitResult.Good, 100 },
|
|
{ HitResult.Great, 300 },
|
|
}
|
|
};
|
|
|
|
private bool containsAny(string text, params string[] stringsToMatch) => stringsToMatch.Any(text.Contains);
|
|
|
|
private class ExpandedPanelMiddleContentContainer : Container
|
|
{
|
|
[Cached]
|
|
private Bindable<WorkingBeatmap> workingBeatmap { get; set; }
|
|
|
|
public ExpandedPanelMiddleContentContainer(WorkingBeatmap beatmap, ScoreInfo score)
|
|
{
|
|
workingBeatmap = new Bindable<WorkingBeatmap>(beatmap);
|
|
|
|
Anchor = Anchor.Centre;
|
|
Origin = Anchor.Centre;
|
|
Size = new Vector2(500, 700);
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = Color4Extensions.FromHex("#444"),
|
|
},
|
|
new ExpandedPanelMiddleContent(score)
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|