mirror of
https://github.com/ppy/osu.git
synced 2024-11-15 05:57:29 +08:00
110 lines
3.7 KiB
C#
110 lines
3.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.Runtime.CompilerServices;
|
|
using System.Threading.Tasks;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Logging;
|
|
using osu.Framework.Platform;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Database;
|
|
|
|
#nullable enable
|
|
|
|
namespace osu.Game.Tests.Database
|
|
{
|
|
[TestFixture]
|
|
public abstract class RealmTest
|
|
{
|
|
private static readonly TemporaryNativeStorage storage;
|
|
|
|
static RealmTest()
|
|
{
|
|
storage = new TemporaryNativeStorage("realm-test");
|
|
storage.DeleteDirectory(string.Empty);
|
|
}
|
|
|
|
protected void RunTestWithRealm(Action<RealmContextFactory, Storage> testAction, [CallerMemberName] string caller = "")
|
|
{
|
|
using (HeadlessGameHost host = new CleanRunHeadlessGameHost(caller))
|
|
{
|
|
host.Run(new RealmTestGame(() =>
|
|
{
|
|
var testStorage = storage.GetStorageForDirectory(caller);
|
|
|
|
using (var realmFactory = new RealmContextFactory(testStorage, caller))
|
|
{
|
|
Logger.Log($"Running test using realm file {testStorage.GetFullPath(realmFactory.Filename)}");
|
|
testAction(realmFactory, testStorage);
|
|
|
|
realmFactory.Dispose();
|
|
|
|
Logger.Log($"Final database size: {getFileSize(testStorage, realmFactory)}");
|
|
realmFactory.Compact();
|
|
Logger.Log($"Final database size after compact: {getFileSize(testStorage, realmFactory)}");
|
|
}
|
|
}));
|
|
}
|
|
}
|
|
|
|
protected void RunTestWithRealmAsync(Func<RealmContextFactory, Storage, Task> testAction, [CallerMemberName] string caller = "")
|
|
{
|
|
using (HeadlessGameHost host = new CleanRunHeadlessGameHost(caller))
|
|
{
|
|
host.Run(new RealmTestGame(async () =>
|
|
{
|
|
var testStorage = storage.GetStorageForDirectory(caller);
|
|
|
|
using (var realmFactory = new RealmContextFactory(testStorage, caller))
|
|
{
|
|
Logger.Log($"Running test using realm file {testStorage.GetFullPath(realmFactory.Filename)}");
|
|
await testAction(realmFactory, testStorage);
|
|
|
|
realmFactory.Dispose();
|
|
|
|
Logger.Log($"Final database size: {getFileSize(testStorage, realmFactory)}");
|
|
realmFactory.Compact();
|
|
}
|
|
}));
|
|
}
|
|
}
|
|
|
|
private class RealmTestGame : Framework.Game
|
|
{
|
|
public RealmTestGame(Func<Task> work)
|
|
{
|
|
// ReSharper disable once AsyncVoidLambda
|
|
Scheduler.Add(async () =>
|
|
{
|
|
await work().ConfigureAwait(true);
|
|
Exit();
|
|
});
|
|
}
|
|
|
|
public RealmTestGame(Action work)
|
|
{
|
|
Scheduler.Add(() =>
|
|
{
|
|
work();
|
|
Exit();
|
|
});
|
|
}
|
|
}
|
|
|
|
private static long getFileSize(Storage testStorage, RealmContextFactory realmFactory)
|
|
{
|
|
try
|
|
{
|
|
using (var stream = testStorage.GetStream(realmFactory.Filename))
|
|
return stream?.Length ?? 0;
|
|
}
|
|
catch
|
|
{
|
|
// windows runs may error due to file still being open.
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
}
|