mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 10:47:28 +08:00
e9463f3c19
Makes it hard to test anything because `EditorBeatmap`'s `Update` method updates whether a beatmap has timing or not (enabling the placement controls). Also adds a basic timing point to allow for better testing.
81 lines
2.9 KiB
C#
81 lines
2.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;
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Extensions.ObjectExtensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Rulesets.Edit;
|
|
using osu.Game.Rulesets.Osu;
|
|
using osu.Game.Rulesets.Osu.Beatmaps;
|
|
using osu.Game.Screens.Edit;
|
|
using osu.Game.Screens.Edit.Compose;
|
|
using osu.Game.Skinning;
|
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
|
{
|
|
[TestFixture]
|
|
public class TestSceneComposeScreen : EditorClockTestScene
|
|
{
|
|
private EditorBeatmap editorBeatmap = null!;
|
|
|
|
[Cached]
|
|
private EditorClipboard clipboard = new EditorClipboard();
|
|
|
|
[SetUpSteps]
|
|
public void SetUpSteps()
|
|
{
|
|
AddStep("setup compose screen", () =>
|
|
{
|
|
var beatmap = new OsuBeatmap
|
|
{
|
|
BeatmapInfo = { Ruleset = new OsuRuleset().RulesetInfo },
|
|
};
|
|
|
|
beatmap.ControlPointInfo.Add(0, new TimingControlPoint());
|
|
|
|
editorBeatmap = new EditorBeatmap(beatmap, new LegacyBeatmapSkin(beatmap.BeatmapInfo, null));
|
|
|
|
Beatmap.Value = CreateWorkingBeatmap(editorBeatmap.PlayableBeatmap);
|
|
|
|
Child = new DependencyProvidingContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
CachedDependencies = new (Type, object)[]
|
|
{
|
|
(typeof(EditorBeatmap), editorBeatmap),
|
|
(typeof(IBeatSnapProvider), editorBeatmap),
|
|
(typeof(OverlayColourProvider), new OverlayColourProvider(OverlayColourScheme.Green)),
|
|
},
|
|
Children = new Drawable[]
|
|
{
|
|
editorBeatmap,
|
|
new ComposeScreen { State = { Value = Visibility.Visible } },
|
|
}
|
|
};
|
|
});
|
|
|
|
AddUntilStep("wait for composer", () => this.ChildrenOfType<HitObjectComposer>().SingleOrDefault()?.IsLoaded == true);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Ensures that the skin of the edited beatmap is properly wrapped in a <see cref="LegacySkinTransformer"/>.
|
|
/// </summary>
|
|
[Test]
|
|
public void TestLegacyBeatmapSkinHasTransformer()
|
|
{
|
|
AddAssert("legacy beatmap skin has transformer", () =>
|
|
{
|
|
var sources = this.ChildrenOfType<BeatmapSkinProvidingContainer>().First().AllSources;
|
|
return sources.OfType<LegacySkinTransformer>().Count(t => t.Skin == editorBeatmap.BeatmapSkin.AsNonNull().Skin) == 1;
|
|
});
|
|
}
|
|
}
|
|
}
|