mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 05:27:51 +08:00
147 lines
5.3 KiB
C#
147 lines
5.3 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.Runtime.CompilerServices;
|
|
using System.Threading.Tasks;
|
|
using JetBrains.Annotations;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Extensions;
|
|
using osu.Framework.Logging;
|
|
using osu.Framework.Platform;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Database;
|
|
using osu.Game.IO;
|
|
using osu.Game.Models;
|
|
using osu.Game.Rulesets;
|
|
|
|
namespace osu.Game.Tests.Database
|
|
{
|
|
[TestFixture]
|
|
public abstract partial class RealmTest
|
|
{
|
|
protected void RunTestWithRealm([InstantHandle] Action<RealmAccess, OsuStorage> testAction, [CallerMemberName] string caller = "")
|
|
{
|
|
using (HeadlessGameHost host = new CleanRunHeadlessGameHost(callingMethodName: caller))
|
|
{
|
|
host.Run(new RealmTestGame(() =>
|
|
{
|
|
var defaultStorage = host.Storage;
|
|
|
|
var testStorage = new OsuStorage(host, defaultStorage);
|
|
|
|
using (var realm = new RealmAccess(testStorage, OsuGameBase.CLIENT_DATABASE_FILENAME))
|
|
{
|
|
Logger.Log($"Running test using realm file {testStorage.GetFullPath(realm.Filename)}");
|
|
testAction(realm, testStorage);
|
|
|
|
realm.Dispose();
|
|
|
|
Logger.Log($"Final database size: {getFileSize(testStorage, realm)}");
|
|
realm.Compact();
|
|
Logger.Log($"Final database size after compact: {getFileSize(testStorage, realm)}");
|
|
}
|
|
}));
|
|
}
|
|
}
|
|
|
|
protected void RunTestWithRealmAsync(Func<RealmAccess, Storage, Task> testAction, [CallerMemberName] string caller = "")
|
|
{
|
|
using (HeadlessGameHost host = new CleanRunHeadlessGameHost(callingMethodName: caller))
|
|
{
|
|
host.Run(new RealmTestGame(async () =>
|
|
{
|
|
var testStorage = host.Storage;
|
|
|
|
using (var realm = new RealmAccess(testStorage, OsuGameBase.CLIENT_DATABASE_FILENAME))
|
|
{
|
|
Logger.Log($"Running test using realm file {testStorage.GetFullPath(realm.Filename)}");
|
|
await testAction(realm, testStorage);
|
|
|
|
realm.Dispose();
|
|
|
|
Logger.Log($"Final database size: {getFileSize(testStorage, realm)}");
|
|
realm.Compact();
|
|
}
|
|
}));
|
|
}
|
|
}
|
|
|
|
protected static BeatmapSetInfo CreateBeatmapSet(RulesetInfo ruleset)
|
|
{
|
|
RealmFile createRealmFile() => new RealmFile { Hash = Guid.NewGuid().ToString().ComputeSHA2Hash() };
|
|
|
|
var metadata = new BeatmapMetadata
|
|
{
|
|
Title = "My Love",
|
|
Artist = "Kuba Oms"
|
|
};
|
|
|
|
var beatmapSet = new BeatmapSetInfo
|
|
{
|
|
Beatmaps =
|
|
{
|
|
new BeatmapInfo(ruleset, new BeatmapDifficulty(), metadata) { DifficultyName = "Easy", },
|
|
new BeatmapInfo(ruleset, new BeatmapDifficulty(), metadata) { DifficultyName = "Normal", },
|
|
new BeatmapInfo(ruleset, new BeatmapDifficulty(), metadata) { DifficultyName = "Hard", },
|
|
new BeatmapInfo(ruleset, new BeatmapDifficulty(), metadata) { DifficultyName = "Insane", }
|
|
},
|
|
Files =
|
|
{
|
|
new RealmNamedFileUsage(createRealmFile(), "test [easy].osu"),
|
|
new RealmNamedFileUsage(createRealmFile(), "test [normal].osu"),
|
|
new RealmNamedFileUsage(createRealmFile(), "test [hard].osu"),
|
|
new RealmNamedFileUsage(createRealmFile(), "test [insane].osu"),
|
|
}
|
|
};
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
beatmapSet.Files.Add(new RealmNamedFileUsage(createRealmFile(), $"hitsound{i}.mp3"));
|
|
|
|
foreach (var b in beatmapSet.Beatmaps)
|
|
b.BeatmapSet = beatmapSet;
|
|
|
|
return beatmapSet;
|
|
}
|
|
|
|
protected static RulesetInfo CreateRuleset() =>
|
|
new RulesetInfo("osu", "osu!", string.Empty, 0) { Available = true };
|
|
|
|
private partial class RealmTestGame : Framework.Game
|
|
{
|
|
public RealmTestGame([InstantHandle] Func<Task> work)
|
|
{
|
|
// ReSharper disable once AsyncVoidLambda
|
|
Scheduler.Add(async () =>
|
|
{
|
|
await work().ConfigureAwait(true);
|
|
Exit();
|
|
});
|
|
}
|
|
|
|
public RealmTestGame([InstantHandle] Action work)
|
|
{
|
|
Scheduler.Add(() =>
|
|
{
|
|
work();
|
|
Exit();
|
|
});
|
|
}
|
|
}
|
|
|
|
private static long getFileSize(Storage testStorage, RealmAccess realm)
|
|
{
|
|
try
|
|
{
|
|
using (var stream = testStorage.GetStream(realm.Filename))
|
|
return stream?.Length ?? 0;
|
|
}
|
|
catch
|
|
{
|
|
// windows runs may error due to file still being open.
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
}
|