mirror of
https://github.com/ppy/osu.git
synced 2026-05-13 19:54:15 +08:00
a996261304
It's been a while. Notes: - `SharpCompress` usages changed a bit. Manually adjusted these, mostly just renames or adjusted parameters. - nUnit 3 -> 4 migrated using https://gist.github.com/peppy/07994386d793a117350cb5f24b156585. there's a mode in this script to update to the newer `Assert.That` syntax but it requires fixes and couldn't really be bothered. - DeepEqual nuked as the only usage was on a disabled test. The reason it's disabled has been merged upstream, but it's failing for other (realm) reasons which I don't think is worthwhile to investigate for now. - This bumps Moq. I think the author is back in a sensible headspace and the new version has the stupid shit removed, so probably okay? Nice to be on a level playing field with packages for once in a long time. - Automapper is silly, but we've discussed this elsewhere. - `TestRealmKeyBindingStore` failures are a wildcard, but fixed by using a more standardised testing method. Dunno why, don't care. --------- Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
123 lines
4.7 KiB
C#
123 lines
4.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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Input;
|
|
using osu.Framework.Input.Bindings;
|
|
using osu.Game.Database;
|
|
using osu.Game.Input;
|
|
using osu.Game.Input.Bindings;
|
|
using osu.Game.Rulesets;
|
|
using Realms;
|
|
|
|
namespace osu.Game.Tests.Database
|
|
{
|
|
[TestFixture]
|
|
public partial class TestRealmKeyBindingStore : RealmTest
|
|
{
|
|
[Test]
|
|
public void TestDefaultsPopulationAndQuery()
|
|
{
|
|
RunTestWithRealm((realm, _) =>
|
|
{
|
|
Assert.That(queryCount(realm), Is.EqualTo(0));
|
|
|
|
KeyBindingContainer testContainer = new TestKeyBindingContainer();
|
|
|
|
var keyBindingStore = new RealmKeyBindingStore(realm, new ReadableKeyCombinationProvider());
|
|
keyBindingStore.Register(testContainer, Enumerable.Empty<RulesetInfo>());
|
|
|
|
Assert.That(queryCount(realm), Is.EqualTo(3));
|
|
|
|
Assert.That(queryCount(realm, GlobalAction.Back), Is.EqualTo(1));
|
|
Assert.That(queryCount(realm, GlobalAction.Select), Is.EqualTo(2));
|
|
});
|
|
}
|
|
|
|
[Test]
|
|
public void TestDefaultsPopulationRemovesExcess()
|
|
{
|
|
RunTestWithRealm((realm, _) =>
|
|
{
|
|
Assert.That(queryCount(realm), Is.EqualTo(0));
|
|
|
|
KeyBindingContainer testContainer = new TestKeyBindingContainer();
|
|
|
|
// Add some excess bindings for an action which only supports 1.
|
|
realm.Write(r =>
|
|
{
|
|
r.Add(new RealmKeyBinding(GlobalAction.Back, new KeyCombination(InputKey.A)));
|
|
r.Add(new RealmKeyBinding(GlobalAction.Back, new KeyCombination(InputKey.S)));
|
|
r.Add(new RealmKeyBinding(GlobalAction.Back, new KeyCombination(InputKey.D)));
|
|
});
|
|
|
|
Assert.That(queryCount(realm, GlobalAction.Back), Is.EqualTo(3));
|
|
|
|
var keyBindingStore = new RealmKeyBindingStore(realm, new ReadableKeyCombinationProvider());
|
|
keyBindingStore.Register(testContainer, Enumerable.Empty<RulesetInfo>());
|
|
|
|
Assert.That(queryCount(realm, GlobalAction.Back), Is.EqualTo(1));
|
|
});
|
|
}
|
|
|
|
[Test]
|
|
public void TestUpdateViaQueriedReference()
|
|
{
|
|
RunTestWithRealm((realm, _) =>
|
|
{
|
|
KeyBindingContainer testContainer = new TestKeyBindingContainer();
|
|
|
|
var keyBindingStore = new RealmKeyBindingStore(realm, new ReadableKeyCombinationProvider());
|
|
keyBindingStore.Register(testContainer, Enumerable.Empty<RulesetInfo>());
|
|
|
|
realm.Run(outerRealm =>
|
|
{
|
|
var backBinding = outerRealm.All<RealmKeyBinding>().Single(k => k.ActionInt == (int)GlobalAction.Back);
|
|
|
|
Assert.That(backBinding.KeyCombination.Keys, Is.EquivalentTo(new[] { InputKey.Escape }));
|
|
|
|
var tsr = ThreadSafeReference.Create(backBinding);
|
|
|
|
realm.Run(innerRealm =>
|
|
{
|
|
var binding = innerRealm.ResolveReference(tsr)!;
|
|
innerRealm.Write(() => binding.KeyCombination = new KeyCombination(InputKey.BackSpace));
|
|
});
|
|
|
|
Assert.That(backBinding.KeyCombination.Keys, Is.EquivalentTo(new[] { InputKey.BackSpace }));
|
|
|
|
// check still correct after re-query.
|
|
backBinding = outerRealm.All<RealmKeyBinding>().Single(k => k.ActionInt == (int)GlobalAction.Back);
|
|
Assert.That(backBinding.KeyCombination.Keys, Is.EquivalentTo(new[] { InputKey.BackSpace }));
|
|
});
|
|
});
|
|
}
|
|
|
|
private static int queryCount(RealmAccess realm, GlobalAction? match = null)
|
|
{
|
|
return realm.Run(r =>
|
|
{
|
|
var results = r.All<RealmKeyBinding>();
|
|
if (match.HasValue)
|
|
results = results.Where(k => k.ActionInt == (int)match.Value);
|
|
return results.Count();
|
|
});
|
|
}
|
|
|
|
public partial class TestKeyBindingContainer : KeyBindingContainer
|
|
{
|
|
public override IEnumerable<IKeyBinding> DefaultKeyBindings =>
|
|
new[]
|
|
{
|
|
new KeyBinding(InputKey.Escape, GlobalAction.Back),
|
|
new KeyBinding(InputKey.Enter, GlobalAction.Select),
|
|
new KeyBinding(InputKey.Space, GlobalAction.Select),
|
|
};
|
|
}
|
|
}
|
|
}
|