1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game.Tests/Gameplay/TestSceneHitObjectSamples.cs

172 lines
5.7 KiB
C#
Raw Normal View History

2020-04-14 20:05:54 +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.IO.Stores;
2020-04-14 21:39:51 +08:00
using osu.Framework.Testing;
2020-04-14 20:05:54 +08:00
using osu.Game.Rulesets;
using osu.Game.Rulesets.Osu;
using osu.Game.Tests.Beatmaps;
using osu.Game.Tests.Resources;
2020-04-14 20:05:54 +08:00
namespace osu.Game.Tests.Gameplay
{
2020-04-14 21:39:51 +08:00
[HeadlessTest]
public class TestSceneHitObjectSamples : HitObjectSampleTest
2020-04-14 20:05:54 +08:00
{
protected override Ruleset CreatePlayerRuleset() => new OsuRuleset();
protected override IResourceStore<byte[]> Resources => TestResources.GetStore();
2020-04-14 20:05:54 +08:00
/// <summary>
/// Tests that a hitobject which provides no custom sample set retrieves samples from the user skin.
/// </summary>
[Test]
public void TestDefaultSampleFromUserSkin()
{
const string expected_sample = "normal-hitnormal";
SetupSkins(expected_sample, expected_sample);
2020-04-14 20:05:54 +08:00
CreateTestWithBeatmap("hitobject-skin-sample.osu");
2020-04-14 20:05:54 +08:00
AssertUserLookup(expected_sample);
2020-04-14 20:05:54 +08:00
}
/// <summary>
/// Tests that a hitobject which provides a sample set of 1 retrieves samples from the beatmap skin.
/// </summary>
[Test]
public void TestDefaultSampleFromBeatmap()
{
const string expected_sample = "normal-hitnormal";
SetupSkins(expected_sample, expected_sample);
2020-04-14 20:05:54 +08:00
CreateTestWithBeatmap("hitobject-beatmap-sample.osu");
2020-04-14 20:05:54 +08:00
AssertBeatmapLookup(expected_sample);
2020-04-14 20:05:54 +08:00
}
/// <summary>
/// Tests that a hitobject which provides a sample set of 1 retrieves samples from the user skin when the beatmap does not contain the sample.
/// </summary>
[Test]
public void TestDefaultSampleFromUserSkinFallback()
{
const string expected_sample = "normal-hitnormal";
SetupSkins(null, expected_sample);
2020-04-14 20:05:54 +08:00
CreateTestWithBeatmap("hitobject-beatmap-sample.osu");
2020-04-14 20:05:54 +08:00
AssertUserLookup(expected_sample);
2020-04-14 20:05:54 +08:00
}
/// <summary>
/// Tests that a hitobject which provides a custom sample set of 2 retrieves the following samples from the beatmap skin:
/// normal-hitnormal2
/// normal-hitnormal
/// </summary>
[TestCase("normal-hitnormal2")]
[TestCase("normal-hitnormal")]
public void TestDefaultCustomSampleFromBeatmap(string expectedSample)
{
SetupSkins(expectedSample, expectedSample);
2020-04-14 20:05:54 +08:00
CreateTestWithBeatmap("hitobject-beatmap-custom-sample.osu");
2020-04-14 20:05:54 +08:00
AssertBeatmapLookup(expectedSample);
2020-04-14 20:05:54 +08:00
}
/// <summary>
/// Tests that a hitobject which provides a custom sample set of 2 retrieves the following samples from the user skin when the beatmap does not contain the sample:
/// normal-hitnormal2
/// normal-hitnormal
/// </summary>
[TestCase("normal-hitnormal2")]
[TestCase("normal-hitnormal")]
public void TestDefaultCustomSampleFromUserSkinFallback(string expectedSample)
{
SetupSkins(string.Empty, expectedSample);
2020-04-14 20:05:54 +08:00
CreateTestWithBeatmap("hitobject-beatmap-custom-sample.osu");
2020-04-14 20:05:54 +08:00
AssertUserLookup(expectedSample);
2020-04-14 20:05:54 +08:00
}
/// <summary>
/// Tests that a hitobject which provides a sample file retrieves the sample file from the beatmap skin.
/// </summary>
[Test]
public void TestFileSampleFromBeatmap()
{
const string expected_sample = "hit_1.wav";
SetupSkins(expected_sample, expected_sample);
2020-04-14 20:05:54 +08:00
CreateTestWithBeatmap("file-beatmap-sample.osu");
2020-04-14 20:05:54 +08:00
AssertBeatmapLookup(expected_sample);
2020-04-14 20:05:54 +08:00
}
/// <summary>
/// Tests that a default hitobject and control point causes <see cref="TestDefaultSampleFromUserSkin"/>.
/// </summary>
[Test]
public void TestControlPointSampleFromSkin()
{
const string expected_sample = "normal-hitnormal";
SetupSkins(expected_sample, expected_sample);
2020-04-14 20:05:54 +08:00
CreateTestWithBeatmap("controlpoint-skin-sample.osu");
2020-04-14 20:05:54 +08:00
AssertUserLookup(expected_sample);
2020-04-14 20:05:54 +08:00
}
/// <summary>
/// Tests that a control point that provides a custom sample set of 1 causes <see cref="TestDefaultSampleFromBeatmap"/>.
/// </summary>
[Test]
public void TestControlPointSampleFromBeatmap()
{
const string expected_sample = "normal-hitnormal";
SetupSkins(expected_sample, expected_sample);
2020-04-14 20:05:54 +08:00
CreateTestWithBeatmap("controlpoint-beatmap-sample.osu");
2020-04-14 20:05:54 +08:00
AssertBeatmapLookup(expected_sample);
2020-04-14 20:05:54 +08:00
}
/// <summary>
/// Tests that a control point that provides a custom sample of 2 causes <see cref="TestDefaultCustomSampleFromBeatmap"/>.
/// </summary>
[TestCase("normal-hitnormal2")]
[TestCase("normal-hitnormal")]
public void TestControlPointCustomSampleFromBeatmap(string sampleName)
{
SetupSkins(sampleName, sampleName);
2020-04-14 20:05:54 +08:00
CreateTestWithBeatmap("controlpoint-beatmap-custom-sample.osu");
2020-04-14 20:05:54 +08:00
AssertBeatmapLookup(sampleName);
2020-04-14 20:05:54 +08:00
}
/// <summary>
/// Tests that a hitobject's custom sample overrides the control point's.
/// </summary>
[Test]
public void TestHitObjectCustomSampleOverride()
{
const string expected_sample = "normal-hitnormal3";
SetupSkins(expected_sample, expected_sample);
2020-04-14 20:05:54 +08:00
CreateTestWithBeatmap("hitobject-beatmap-custom-sample-override.osu");
2020-04-14 20:05:54 +08:00
AssertBeatmapLookup(expected_sample);
2020-04-14 20:05:54 +08:00
}
}
}