1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00
osu-lazer/osu.Game.Rulesets.Taiko.Tests/TestSceneSampleOutput.cs

56 lines
1.9 KiB
C#
Raw Normal View History

2023-06-23 00:37:25 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2020-05-19 22:28:13 +08:00
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
2020-05-19 22:28:13 +08:00
using System.Linq;
2023-06-30 14:38:24 +08:00
using NUnit.Framework;
2020-05-20 09:14:08 +08:00
using osu.Framework.Testing;
2020-05-19 22:28:13 +08:00
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Taiko.Objects.Drawables;
2023-06-30 14:38:24 +08:00
using osu.Game.Rulesets.Taiko.UI;
2020-05-19 22:28:13 +08:00
namespace osu.Game.Rulesets.Taiko.Tests
{
/// <summary>
2023-06-30 14:38:24 +08:00
/// Taiko doesn't output any samples. They are all handled externally by <see cref="DrumSamplePlayer"/>.
2020-05-19 22:28:13 +08:00
/// </summary>
2020-05-20 09:14:08 +08:00
[HeadlessTest]
2022-11-24 13:32:20 +08:00
public partial class TestSceneSampleOutput : TestSceneTaikoPlayer
2020-05-19 22:28:13 +08:00
{
public override void SetUpSteps()
{
base.SetUpSteps();
string[] expectedSampleNames =
{
string.Empty,
string.Empty,
string.Empty,
string.Empty,
2023-06-30 14:38:24 +08:00
string.Empty,
string.Empty,
string.Empty,
string.Empty,
};
var actualSampleNames = new List<string>();
// due to pooling we can't access all samples right away due to object re-use,
// so we need to collect as we go.
AddStep("collect sample names", () => Player.DrawableRuleset.Playfield.NewResult += (dho, _) =>
2020-05-19 22:28:13 +08:00
{
if (!(dho is DrawableHit h))
return;
actualSampleNames.Add(string.Join(',', h.GetSamples().Select(s => s.Name)));
2020-05-19 22:28:13 +08:00
});
AddUntilStep("all samples collected", () => actualSampleNames.Count == expectedSampleNames.Length);
2023-06-30 14:38:24 +08:00
AddAssert("samples are correct", () => actualSampleNames, () => Is.EqualTo(expectedSampleNames));
2020-05-19 22:28:13 +08:00
}
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset) => new TaikoBeatmapConversionTest().GetBeatmap("sample-to-type-conversions");
}
}