Ejemplo n.º 1
0
        public virtual async void TestUpdate()
        {
            var builder = new WebHostBuilder()
                          .UseEnvironment("Production")
                          .UseStartup <TestStartup>();
            TestServer testServer = new TestServer(builder);

            var client = new ApiClient(testServer.CreateClient());

            client.SetBearerToken(JWTTestHelper.GenerateBearerToken());
            var mapper = new ApiDestinationServerModelMapper();
            ApplicationDbContext context            = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            IDestinationService  service            = testServer.Host.Services.GetService(typeof(IDestinationService)) as IDestinationService;
            ApiDestinationServerResponseModel model = await service.Get(1);

            ApiDestinationClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties(1, "B", 2);

            UpdateResponse <ApiDestinationClientResponseModel> updateResponse = await client.DestinationUpdateAsync(model.Id, request);

            context.Entry(context.Set <Destination>().ToList()[0]).Reload();
            updateResponse.Record.Should().NotBeNull();
            updateResponse.Success.Should().BeTrue();
            updateResponse.Record.Id.Should().Be(1);
            context.Set <Destination>().ToList()[0].CountryId.Should().Be(1);
            context.Set <Destination>().ToList()[0].Name.Should().Be("B");
            context.Set <Destination>().ToList()[0].Order.Should().Be(2);

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.CountryId.Should().Be(1);
            updateResponse.Record.Name.Should().Be("B");
            updateResponse.Record.Order.Should().Be(2);
        }
Ejemplo n.º 2
0
        public virtual async void TestDelete()
        {
            var builder = new WebHostBuilder()
                          .UseEnvironment("Production")
                          .UseStartup <TestStartup>();
            TestServer testServer = new TestServer(builder);
            var        client     = new ApiClient(testServer.CreateClient());

            client.SetBearerToken(JWTTestHelper.GenerateBearerToken());
            ApplicationDbContext context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;

            IDestinationService service = testServer.Host.Services.GetService(typeof(IDestinationService)) as IDestinationService;
            var model = new ApiDestinationServerRequestModel();

            model.SetProperties(1, "B", 2);
            CreateResponse <ApiDestinationServerResponseModel> createdResponse = await service.Create(model);

            createdResponse.Success.Should().BeTrue();

            ActionResponse deleteResult = await client.DestinationDeleteAsync(2);

            deleteResult.Success.Should().BeTrue();
            ApiDestinationServerResponseModel verifyResponse = await service.Get(2);

            verifyResponse.Should().BeNull();
        }