* Try to fix reconnect test * Use RunTicksSync in ReconnectTest * Change the top part as well * Await the other post * Update RobustToolbox * Merge branch 'master' of https://github.com/space-wizards/space-station-14 into fix-reconnect-test-maybe * Reset RobustToolbox * Update RobustToolbox * Merge branch 'master' of https://github.com/space-wizards/space-station-14 into fix-reconnect-test-maybe * Update RobustToolbox
49 lines
1.6 KiB
C#
49 lines
1.6 KiB
C#
using System.Threading.Tasks;
|
|
using NUnit.Framework;
|
|
using Robust.Client.Console;
|
|
using Robust.Shared.Interfaces.Network;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.IntegrationTests.Tests.Networking
|
|
{
|
|
[TestFixture]
|
|
public class ReconnectTest : ContentIntegrationTest
|
|
{
|
|
[Test]
|
|
public async Task Test()
|
|
{
|
|
var client = StartClient();
|
|
var server = StartServer();
|
|
|
|
await Task.WhenAll(client.WaitIdleAsync(), server.WaitIdleAsync());
|
|
|
|
// Connect.
|
|
client.SetConnectTarget(server);
|
|
|
|
await client.WaitPost(() => IoCManager.Resolve<IClientNetManager>().ClientConnect(null, 0, null));
|
|
|
|
// Run some ticks for the handshake to complete and such.
|
|
await RunTicksSync(client, server, 10);
|
|
|
|
await Task.WhenAll(client.WaitIdleAsync(), server.WaitIdleAsync());
|
|
|
|
await client.WaitPost(() => IoCManager.Resolve<IClientConsole>().ProcessCommand("disconnect"));
|
|
|
|
// Run some ticks for the disconnect to complete and such.
|
|
await RunTicksSync(client, server, 5);
|
|
|
|
await Task.WhenAll(client.WaitIdleAsync(), server.WaitIdleAsync());
|
|
|
|
// Reconnect.
|
|
client.SetConnectTarget(server);
|
|
|
|
await client.WaitPost(() => IoCManager.Resolve<IClientNetManager>().ClientConnect(null, 0, null));
|
|
|
|
// Run some ticks for the handshake to complete and such.
|
|
await RunTicksSync(client, server, 10);
|
|
|
|
await Task.WhenAll(client.WaitIdleAsync(), server.WaitIdleAsync());
|
|
}
|
|
}
|
|
}
|