2020-01-21 03:53:33 +00:00
|
|
|
using System.Threading.Tasks;
|
2020-01-20 23:38:05 +00:00
|
|
|
using NUnit.Framework;
|
2020-02-02 21:49:01 +00:00
|
|
|
using Aurora.Proto.Party;
|
2020-01-20 23:38:05 +00:00
|
|
|
using Aurora.Services.Server;
|
|
|
|
using Grpc.Core;
|
2020-02-02 15:26:47 +00:00
|
|
|
using Autofac;
|
2020-01-20 23:38:05 +00:00
|
|
|
|
2020-01-21 03:53:33 +00:00
|
|
|
namespace Aurora.test.ControllerTests
|
2020-01-20 23:38:05 +00:00
|
|
|
{
|
2020-01-21 03:53:33 +00:00
|
|
|
public class PartyControllerTests
|
2020-01-20 23:38:05 +00:00
|
|
|
{
|
|
|
|
private RemotePartyService.RemotePartyServiceClient _remotePartyService;
|
|
|
|
private Channel _channel;
|
2020-02-02 15:26:47 +00:00
|
|
|
private IContainer _container;
|
|
|
|
private IServerService _serverService;
|
|
|
|
|
2020-02-02 18:05:14 +00:00
|
|
|
#region Setup
|
2020-02-02 15:26:47 +00:00
|
|
|
[OneTimeSetUp]
|
|
|
|
public void SetupOneTime()
|
|
|
|
{
|
2020-02-02 18:05:14 +00:00
|
|
|
_container = SetupUtil.SetupOneTime();
|
2020-02-02 15:26:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[OneTimeTearDown]
|
|
|
|
public void TearDownOneTime()
|
|
|
|
{
|
|
|
|
_container.Dispose();
|
|
|
|
}
|
|
|
|
|
2020-01-20 23:38:05 +00:00
|
|
|
[SetUp]
|
|
|
|
public void Setup()
|
|
|
|
{
|
2020-02-02 18:05:14 +00:00
|
|
|
_remotePartyService = SetupUtil.Setup(ref _container, ref _serverService, ref _channel);
|
2020-01-20 23:38:05 +00:00
|
|
|
}
|
|
|
|
|
2020-01-21 03:53:33 +00:00
|
|
|
[TearDown]
|
|
|
|
public async Task TearDown()
|
|
|
|
{
|
2020-02-02 15:26:47 +00:00
|
|
|
await _serverService.Stop();
|
2020-01-21 03:53:33 +00:00
|
|
|
await _channel.ShutdownAsync();
|
|
|
|
}
|
2020-02-02 18:05:14 +00:00
|
|
|
#endregion Setup
|
2020-01-21 03:53:33 +00:00
|
|
|
|
2020-01-20 23:38:05 +00:00
|
|
|
[Test]
|
2020-01-21 03:53:33 +00:00
|
|
|
public void DefaultTest()
|
2020-01-20 23:38:05 +00:00
|
|
|
{
|
2020-01-21 03:53:33 +00:00
|
|
|
Party party = _remotePartyService.GetParty(new Proto.General.Empty());
|
|
|
|
|
|
|
|
Assert.NotNull(party);
|
|
|
|
Assert.AreEqual(party.Name, "party/party1");
|
2020-01-20 23:38:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|