1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:47:24 +08:00
osu-lazer/osu.Game.Tests/Editing/Checks/CheckBackgroundQualityTest.cs

137 lines
4.5 KiB
C#
Raw Normal View History

2021-04-18 07:21:51 +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 System.Collections.Generic;
using System.IO;
using System.Linq;
using JetBrains.Annotations;
using Moq;
using NUnit.Framework;
using osu.Framework.Graphics.Textures;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Edit;
2021-04-18 07:21:51 +08:00
using osu.Game.Rulesets.Edit.Checks;
using osu.Game.Rulesets.Objects;
using FileInfo = osu.Game.IO.FileInfo;
namespace osu.Game.Tests.Editing.Checks
{
[TestFixture]
public class CheckBackgroundQualityTest
{
private CheckBackgroundQuality check;
private IBeatmap beatmap;
[SetUp]
public void Setup()
{
check = new CheckBackgroundQuality();
beatmap = new Beatmap<HitObject>
{
BeatmapInfo = new BeatmapInfo
{
Metadata = new BeatmapMetadata { BackgroundFile = "abc123.jpg" },
BeatmapSet = new BeatmapSetInfo
{
Files = new List<BeatmapSetFileInfo>(new[]
{
new BeatmapSetFileInfo
{
Filename = "abc123.jpg",
FileInfo = new FileInfo
{
Hash = "abcdef"
}
}
})
}
}
};
}
[Test]
2021-04-20 07:32:22 +08:00
public void TestMissing()
2021-04-18 07:21:51 +08:00
{
// While this is a problem, it is out of scope for this check and is caught by a different one.
beatmap.Metadata.BackgroundFile = null;
var context = getContext(null, System.Array.Empty<byte>());
2021-04-18 07:21:51 +08:00
2021-05-13 17:24:22 +08:00
Assert.That(check.Run(context), Is.Empty);
2021-04-18 07:21:51 +08:00
}
[Test]
2021-04-20 07:32:22 +08:00
public void TestAcceptable()
2021-04-18 07:21:51 +08:00
{
var context = getContext(new Texture(1920, 1080));
2021-04-18 07:21:51 +08:00
2021-05-13 17:24:22 +08:00
Assert.That(check.Run(context), Is.Empty);
2021-04-18 07:21:51 +08:00
}
[Test]
2021-04-20 07:32:22 +08:00
public void TestTooHighResolution()
2021-04-18 07:21:51 +08:00
{
var context = getContext(new Texture(3840, 2160));
2021-04-18 07:21:51 +08:00
2021-05-13 17:24:22 +08:00
var issues = check.Run(context).ToList();
2021-04-18 07:21:51 +08:00
Assert.That(issues, Has.Count.EqualTo(1));
Assert.That(issues.Single().Template is CheckBackgroundQuality.IssueTemplateTooHighResolution);
}
[Test]
2021-04-20 07:32:22 +08:00
public void TestLowResolution()
2021-04-18 07:21:51 +08:00
{
var context = getContext(new Texture(640, 480));
2021-04-18 07:21:51 +08:00
2021-05-13 17:24:22 +08:00
var issues = check.Run(context).ToList();
2021-04-18 07:21:51 +08:00
Assert.That(issues, Has.Count.EqualTo(1));
Assert.That(issues.Single().Template is CheckBackgroundQuality.IssueTemplateLowResolution);
}
[Test]
2021-04-20 07:32:22 +08:00
public void TestTooLowResolution()
2021-04-18 07:21:51 +08:00
{
var context = getContext(new Texture(100, 100));
2021-04-18 07:21:51 +08:00
2021-05-13 17:24:22 +08:00
var issues = check.Run(context).ToList();
2021-04-18 07:21:51 +08:00
Assert.That(issues, Has.Count.EqualTo(1));
Assert.That(issues.Single().Template is CheckBackgroundQuality.IssueTemplateTooLowResolution);
}
[Test]
2021-04-20 07:32:22 +08:00
public void TestTooUncompressed()
2021-04-18 07:21:51 +08:00
{
var context = getContext(new Texture(1920, 1080), new byte[1024 * 1024 * 3]);
2021-04-18 07:21:51 +08:00
2021-05-13 17:24:22 +08:00
var issues = check.Run(context).ToList();
2021-04-18 07:21:51 +08:00
Assert.That(issues, Has.Count.EqualTo(1));
Assert.That(issues.Single().Template is CheckBackgroundQuality.IssueTemplateTooUncompressed);
}
private BeatmapVerifierContext getContext(Texture background, [CanBeNull] byte[] fileBytes = null)
{
2021-05-13 17:24:22 +08:00
return new BeatmapVerifierContext(beatmap, getMockWorkingBeatmap(background, fileBytes).Object);
}
2021-04-18 07:21:51 +08:00
/// <summary>
/// Returns the mock of the working beatmap with the given background and filesize.
/// </summary>
/// <param name="background">The texture of the background.</param>
/// <param name="fileBytes">The bytes that represent the background file.</param>
private Mock<IWorkingBeatmap> getMockWorkingBeatmap(Texture background, [CanBeNull] byte[] fileBytes = null)
{
var stream = new MemoryStream(fileBytes ?? new byte[1024 * 1024]);
var mock = new Mock<IWorkingBeatmap>();
2021-04-20 19:29:14 +08:00
mock.SetupGet(w => w.Beatmap).Returns(beatmap);
mock.SetupGet(w => w.Background).Returns(background);
mock.Setup(w => w.GetStream(It.IsAny<string>())).Returns(stream);
2021-04-18 07:21:51 +08:00
return mock;
}
}
}