mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 10:17:43 +08:00
101 lines
3.2 KiB
C#
101 lines
3.2 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.
|
|
|
|
#nullable disable
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Extensions;
|
|
using osu.Game.Models;
|
|
using osu.Game.Tests.Resources;
|
|
|
|
namespace osu.Game.Tests.NonVisual
|
|
{
|
|
[TestFixture]
|
|
public class BeatmapSetInfoEqualityTest
|
|
{
|
|
[Test]
|
|
public void TestOnlineWithOnline()
|
|
{
|
|
var ourInfo = new BeatmapSetInfo { OnlineID = 123 };
|
|
var otherInfo = new BeatmapSetInfo { OnlineID = 123 };
|
|
|
|
Assert.AreNotEqual(ourInfo, otherInfo);
|
|
Assert.IsTrue(ourInfo.MatchesOnlineID(otherInfo));
|
|
}
|
|
|
|
[Test]
|
|
public void TestAudioEqualityNoFile()
|
|
{
|
|
var beatmapSetA = TestResources.CreateTestBeatmapSetInfo(1);
|
|
var beatmapSetB = TestResources.CreateTestBeatmapSetInfo(1);
|
|
|
|
Assert.AreNotEqual(beatmapSetA, beatmapSetB);
|
|
Assert.IsTrue(beatmapSetA.Beatmaps.Single().AudioEquals(beatmapSetB.Beatmaps.Single()));
|
|
}
|
|
|
|
[Test]
|
|
public void TestAudioEqualitySameHash()
|
|
{
|
|
var beatmapSetA = TestResources.CreateTestBeatmapSetInfo(1);
|
|
var beatmapSetB = TestResources.CreateTestBeatmapSetInfo(1);
|
|
|
|
addAudioFile(beatmapSetA, "abc");
|
|
addAudioFile(beatmapSetB, "abc");
|
|
|
|
Assert.AreNotEqual(beatmapSetA, beatmapSetB);
|
|
Assert.IsTrue(beatmapSetA.Beatmaps.Single().AudioEquals(beatmapSetB.Beatmaps.Single()));
|
|
}
|
|
|
|
[Test]
|
|
public void TestAudioEqualityDifferentHash()
|
|
{
|
|
var beatmapSetA = TestResources.CreateTestBeatmapSetInfo(1);
|
|
var beatmapSetB = TestResources.CreateTestBeatmapSetInfo(1);
|
|
|
|
addAudioFile(beatmapSetA);
|
|
addAudioFile(beatmapSetB);
|
|
|
|
Assert.AreNotEqual(beatmapSetA, beatmapSetB);
|
|
Assert.IsTrue(beatmapSetA.Beatmaps.Single().AudioEquals(beatmapSetB.Beatmaps.Single()));
|
|
}
|
|
|
|
private static void addAudioFile(BeatmapSetInfo beatmapSetInfo, string hash = null)
|
|
{
|
|
beatmapSetInfo.Files.Add(new RealmNamedFileUsage(new RealmFile { Hash = hash ?? Guid.NewGuid().ToString() }, "audio.mp3"));
|
|
}
|
|
|
|
[Test]
|
|
public void TestDatabasedWithDatabased()
|
|
{
|
|
var guid = Guid.NewGuid();
|
|
|
|
var ourInfo = new BeatmapSetInfo { ID = guid };
|
|
var otherInfo = new BeatmapSetInfo { ID = guid };
|
|
|
|
Assert.AreEqual(ourInfo, otherInfo);
|
|
}
|
|
|
|
[Test]
|
|
public void TestDatabasedWithOnline()
|
|
{
|
|
var ourInfo = new BeatmapSetInfo { ID = Guid.NewGuid(), OnlineID = 12 };
|
|
var otherInfo = new BeatmapSetInfo { OnlineID = 12 };
|
|
|
|
Assert.AreNotEqual(ourInfo, otherInfo);
|
|
Assert.IsTrue(ourInfo.MatchesOnlineID(otherInfo));
|
|
}
|
|
|
|
[Test]
|
|
public void TestCheckNullID()
|
|
{
|
|
var ourInfo = new BeatmapSetInfo { Hash = "1" };
|
|
var otherInfo = new BeatmapSetInfo { Hash = "2" };
|
|
|
|
Assert.AreNotEqual(ourInfo, otherInfo);
|
|
}
|
|
}
|
|
}
|