Exemple #1
0
        public void MapServerRequestToResponse()
        {
            var mapper = new ApiBankAccountServerModelMapper();
            var model  = new ApiBankAccountServerRequestModel();

            model.SetProperties("A", 1, "A");
            ApiBankAccountServerResponseModel response = mapper.MapServerRequestToResponse(1, model);

            response.Should().NotBeNull();
            response.AccountNumber.Should().Be("A");
            response.ArtistId.Should().Be(1);
            response.RoutingNumber.Should().Be("A");
        }
Exemple #2
0
        public void CreatePatch()
        {
            var mapper = new ApiBankAccountServerModelMapper();
            var model  = new ApiBankAccountServerRequestModel();

            model.SetProperties("A", 1, "A");

            JsonPatchDocument <ApiBankAccountServerRequestModel> patch = mapper.CreatePatch(model);
            var response = new ApiBankAccountServerRequestModel();

            patch.ApplyTo(response);
            response.AccountNumber.Should().Be("A");
            response.ArtistId.Should().Be(1);
            response.RoutingNumber.Should().Be("A");
        }
Exemple #3
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());
            ApplicationDbContext context    = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;

            IBankAccountService service = testServer.Host.Services.GetService(typeof(IBankAccountService)) as IBankAccountService;
            var model = new ApiBankAccountServerRequestModel();

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

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

            ActionResponse deleteResult = await client.BankAccountDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }