mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 21:02:54 +08:00
Add another test for even more failure
This commit is contained in:
parent
87702b3312
commit
133e61a1b2
@ -352,5 +352,58 @@ namespace osu.Game.Tests.Beatmaps
|
|||||||
|
|
||||||
Assert.That(beatmapSet.Status, Is.EqualTo(BeatmapOnlineStatus.None));
|
Assert.That(beatmapSet.Status, Is.EqualTo(BeatmapOnlineStatus.None));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestPartiallyMaliciousSet([Values] bool preferOnlineFetch)
|
||||||
|
{
|
||||||
|
var firstResult = new OnlineBeatmapMetadata
|
||||||
|
{
|
||||||
|
BeatmapID = 654321,
|
||||||
|
BeatmapStatus = BeatmapOnlineStatus.Ranked,
|
||||||
|
BeatmapSetStatus = BeatmapOnlineStatus.Ranked,
|
||||||
|
MD5Hash = @"cafebabe"
|
||||||
|
};
|
||||||
|
var secondResult = new OnlineBeatmapMetadata
|
||||||
|
{
|
||||||
|
BeatmapStatus = BeatmapOnlineStatus.Ranked,
|
||||||
|
BeatmapSetStatus = BeatmapOnlineStatus.Ranked,
|
||||||
|
MD5Hash = @"dededede"
|
||||||
|
};
|
||||||
|
|
||||||
|
var targetMock = preferOnlineFetch ? apiMetadataSourceMock : localCachedMetadataSourceMock;
|
||||||
|
targetMock.Setup(src => src.Available).Returns(true);
|
||||||
|
targetMock.Setup(src => src.TryLookup(It.Is<BeatmapInfo>(bi => bi.OnlineID == 654321), out firstResult))
|
||||||
|
.Returns(true);
|
||||||
|
targetMock.Setup(src => src.TryLookup(It.Is<BeatmapInfo>(bi => bi.OnlineID == 666666), out secondResult))
|
||||||
|
.Returns(true);
|
||||||
|
|
||||||
|
var firstBeatmap = new BeatmapInfo
|
||||||
|
{
|
||||||
|
OnlineID = 654321,
|
||||||
|
MD5Hash = @"cafebabe",
|
||||||
|
};
|
||||||
|
var secondBeatmap = new BeatmapInfo
|
||||||
|
{
|
||||||
|
OnlineID = 666666,
|
||||||
|
MD5Hash = @"deadbeef"
|
||||||
|
};
|
||||||
|
var beatmapSet = new BeatmapSetInfo(new[]
|
||||||
|
{
|
||||||
|
firstBeatmap,
|
||||||
|
secondBeatmap
|
||||||
|
});
|
||||||
|
firstBeatmap.BeatmapSet = beatmapSet;
|
||||||
|
secondBeatmap.BeatmapSet = beatmapSet;
|
||||||
|
|
||||||
|
metadataLookup.Update(beatmapSet, preferOnlineFetch);
|
||||||
|
|
||||||
|
Assert.That(firstBeatmap.Status, Is.EqualTo(BeatmapOnlineStatus.Ranked));
|
||||||
|
Assert.That(firstBeatmap.OnlineID, Is.EqualTo(654321));
|
||||||
|
|
||||||
|
Assert.That(secondBeatmap.Status, Is.EqualTo(BeatmapOnlineStatus.None));
|
||||||
|
Assert.That(secondBeatmap.OnlineID, Is.EqualTo(-1));
|
||||||
|
|
||||||
|
Assert.That(beatmapSet.Status, Is.EqualTo(BeatmapOnlineStatus.None));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user