Пример #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 ApiBreedServerModelMapper();
            ApplicationDbContext        context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            IBreedService               service = testServer.Host.Services.GetService(typeof(IBreedService)) as IBreedService;
            ApiBreedServerResponseModel model   = await service.Get(1);

            ApiBreedClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B", 1);

            UpdateResponse <ApiBreedClientResponseModel> updateResponse = await client.BreedUpdateAsync(model.Id, request);

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

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.Name.Should().Be("B");
            updateResponse.Record.SpeciesId.Should().Be(1);
        }
Пример #2
0
        public virtual async void TestBulkInsert()
        {
            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;

            var model = new ApiBreedClientRequestModel();

            model.SetProperties("B", 1);
            var model2 = new ApiBreedClientRequestModel();

            model2.SetProperties("C", 1);
            var request = new List <ApiBreedClientRequestModel>()
            {
                model, model2
            };
            CreateResponse <List <ApiBreedClientResponseModel> > result = await client.BreedBulkInsertAsync(request);

            result.Success.Should().BeTrue();
            result.Record.Should().NotBeNull();

            context.Set <Breed>().ToList()[1].Name.Should().Be("B");
            context.Set <Breed>().ToList()[1].SpeciesId.Should().Be(1);

            context.Set <Breed>().ToList()[2].Name.Should().Be("C");
            context.Set <Breed>().ToList()[2].SpeciesId.Should().Be(1);
        }
        public virtual ApiBreedClientRequestModel MapServerResponseToClientRequest(
            ApiBreedServerResponseModel response)
        {
            var request = new ApiBreedClientRequestModel();

            request.SetProperties(
                response.Name,
                response.SpeciesId);
            return(request);
        }
        public void MapClientResponseToRequest()
        {
            var mapper = new ApiBreedModelMapper();
            var model  = new ApiBreedClientResponseModel();

            model.SetProperties(1, "A", 1);
            ApiBreedClientRequestModel response = mapper.MapClientResponseToRequest(model);

            response.Should().NotBeNull();
            response.Name.Should().Be("A");
            response.SpeciesId.Should().Be(1);
        }