mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:37:51 +08:00
130 lines
5.7 KiB
C#
130 lines
5.7 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.Audio.Sample;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics.Textures;
|
|
using osu.Framework.IO.Stores;
|
|
using osu.Game.Audio;
|
|
using osu.Game.IO;
|
|
using osu.Game.IO.Archives;
|
|
using osu.Game.Screens.Play.HUD;
|
|
using osu.Game.Screens.Play.HUD.HitErrorMeters;
|
|
using osu.Game.Skinning;
|
|
using osu.Game.Tests.Resources;
|
|
|
|
namespace osu.Game.Tests.Skins
|
|
{
|
|
/// <summary>
|
|
/// Test that the main components (which are serialised based on namespace/class name)
|
|
/// remain compatible with any changes.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// If this test breaks, check any naming or class structure changes.
|
|
/// Migration rules may need to be added to <see cref="Skin"/>.
|
|
/// </remarks>
|
|
[TestFixture]
|
|
public class SkinDeserialisationTest
|
|
{
|
|
private static readonly string[] available_skins =
|
|
{
|
|
// Covers song progress before namespace changes, and most other components.
|
|
"Archives/modified-default-20220723.osk",
|
|
"Archives/modified-classic-20220723.osk",
|
|
// Covers legacy song progress, UR counter, colour hit error metre.
|
|
"Archives/modified-classic-20220801.osk",
|
|
// Covers clicks/s counter
|
|
"Archives/modified-default-20220818.osk"
|
|
};
|
|
|
|
/// <summary>
|
|
/// If this test fails, new test resources should be added to include new components.
|
|
/// </summary>
|
|
[Test]
|
|
public void TestSkinnableComponentsCoveredByDeserialisationTests()
|
|
{
|
|
HashSet<Type> instantiatedTypes = new HashSet<Type>();
|
|
|
|
foreach (string oskFile in available_skins)
|
|
{
|
|
using (var stream = TestResources.OpenResource(oskFile))
|
|
using (var storage = new ZipArchiveReader(stream))
|
|
{
|
|
var skin = new TestSkin(new SkinInfo(), null, storage);
|
|
|
|
foreach (var target in skin.DrawableComponentInfo)
|
|
{
|
|
foreach (var info in target.Value)
|
|
instantiatedTypes.Add(info.Type);
|
|
}
|
|
}
|
|
}
|
|
|
|
var editableTypes = SkinnableInfo.GetAllAvailableDrawables().Where(t => (Activator.CreateInstance(t) as ISkinnableDrawable)?.IsEditable == true);
|
|
|
|
Assert.That(instantiatedTypes, Is.EquivalentTo(editableTypes));
|
|
}
|
|
|
|
[Test]
|
|
public void TestDeserialiseModifiedDefault()
|
|
{
|
|
using (var stream = TestResources.OpenResource("Archives/modified-default-20220723.osk"))
|
|
using (var storage = new ZipArchiveReader(stream))
|
|
{
|
|
var skin = new TestSkin(new SkinInfo(), null, storage);
|
|
|
|
Assert.That(skin.DrawableComponentInfo, Has.Count.EqualTo(2));
|
|
Assert.That(skin.DrawableComponentInfo[SkinnableTarget.MainHUDComponents], Has.Length.EqualTo(9));
|
|
}
|
|
}
|
|
|
|
[Test]
|
|
public void TestDeserialiseModifiedClassic()
|
|
{
|
|
using (var stream = TestResources.OpenResource("Archives/modified-classic-20220723.osk"))
|
|
using (var storage = new ZipArchiveReader(stream))
|
|
{
|
|
var skin = new TestSkin(new SkinInfo(), null, storage);
|
|
|
|
Assert.That(skin.DrawableComponentInfo, Has.Count.EqualTo(2));
|
|
Assert.That(skin.DrawableComponentInfo[SkinnableTarget.MainHUDComponents], Has.Length.EqualTo(6));
|
|
Assert.That(skin.DrawableComponentInfo[SkinnableTarget.SongSelect], Has.Length.EqualTo(1));
|
|
|
|
var skinnableInfo = skin.DrawableComponentInfo[SkinnableTarget.SongSelect].First();
|
|
|
|
Assert.That(skinnableInfo.Type, Is.EqualTo(typeof(SkinnableSprite)));
|
|
Assert.That(skinnableInfo.Settings.First().Key, Is.EqualTo("sprite_name"));
|
|
Assert.That(skinnableInfo.Settings.First().Value, Is.EqualTo("ppy_logo-2.png"));
|
|
}
|
|
|
|
using (var stream = TestResources.OpenResource("Archives/modified-classic-20220801.osk"))
|
|
using (var storage = new ZipArchiveReader(stream))
|
|
{
|
|
var skin = new TestSkin(new SkinInfo(), null, storage);
|
|
Assert.That(skin.DrawableComponentInfo[SkinnableTarget.MainHUDComponents], Has.Length.EqualTo(8));
|
|
Assert.That(skin.DrawableComponentInfo[SkinnableTarget.MainHUDComponents].Select(i => i.Type), Contains.Item(typeof(UnstableRateCounter)));
|
|
Assert.That(skin.DrawableComponentInfo[SkinnableTarget.MainHUDComponents].Select(i => i.Type), Contains.Item(typeof(ColourHitErrorMeter)));
|
|
Assert.That(skin.DrawableComponentInfo[SkinnableTarget.MainHUDComponents].Select(i => i.Type), Contains.Item(typeof(LegacySongProgress)));
|
|
}
|
|
}
|
|
|
|
private class TestSkin : Skin
|
|
{
|
|
public TestSkin(SkinInfo skin, IStorageResourceProvider? resources, IResourceStore<byte[]>? storage = null, string configurationFilename = "skin.ini")
|
|
: base(skin, resources, storage, configurationFilename)
|
|
{
|
|
}
|
|
|
|
public override Texture GetTexture(string componentName, WrapMode wrapModeS, WrapMode wrapModeT) => throw new NotImplementedException();
|
|
|
|
public override IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup) => throw new NotImplementedException();
|
|
|
|
public override ISample GetSample(ISampleInfo sampleInfo) => throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|