예제 #1
0
        public IEnumerable <Breed> Get()
        {
            List <Breed> r = _BreedService.Get();

            return(r.AsEnumerable());
            // return new string[] { "value1", "value2" };
        }
예제 #2
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);
        }
예제 #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());

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

            IBreedService service = testServer.Host.Services.GetService(typeof(IBreedService)) as IBreedService;
            var           model   = new ApiBreedServerRequestModel();

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

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

            ActionResponse deleteResult = await client.BreedDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }