Esempio n. 1
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;

            ITestAllFieldTypeService service = testServer.Host.Services.GetService(typeof(ITestAllFieldTypeService)) as ITestAllFieldTypeService;
            var model = new ApiTestAllFieldTypeServerRequestModel();

            model.SetProperties(2, BitConverter.GetBytes(2), true, "B", DateTime.Parse("1/1/1988 12:00:00 AM"), DateTime.Parse("1/1/1988 12:00:00 AM"), DateTime.Parse("1/1/1988 12:00:00 AM"), DateTimeOffset.Parse("1/1/1988 12:00:00 AM"), 2m, 2, BitConverter.GetBytes(2), 2m, "B", "B", 2m, "B", 2m, DateTime.Parse("1/1/1988 12:00:00 AM"), 2, 2m, "B", TimeSpan.Parse("02:00:00"), BitConverter.GetBytes(2), 2, Guid.Parse("3842cac4-b9a0-8223-0dcc-509a6f75849b"), BitConverter.GetBytes(2), "B", "B");
            CreateResponse <ApiTestAllFieldTypeServerResponseModel> createdResponse = await service.Create(model);

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

            ActionResponse deleteResult = await client.TestAllFieldTypeDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
        public async virtual Task <IActionResult> Get(int id)
        {
            ApiTestAllFieldTypeServerResponseModel response = await this.TestAllFieldTypeService.Get(id);

            if (response == null)
            {
                return(this.StatusCode(StatusCodes.Status404NotFound));
            }
            else
            {
                return(this.Ok(response));
            }
        }
Esempio n. 3
0
        public async void Get_ShouldReturnNullBecauseRecordNotFound()
        {
            var mock = new ServiceMockFacade <ITestAllFieldTypeService, ITestAllFieldTypeRepository>();

            mock.RepositoryMock.Setup(x => x.Get(It.IsAny <int>())).Returns(Task.FromResult <TestAllFieldType>(null));
            var service = new TestAllFieldTypeService(mock.LoggerMock.Object,
                                                      mock.MediatorMock.Object,
                                                      mock.RepositoryMock.Object,
                                                      mock.ModelValidatorMockFactory.TestAllFieldTypeModelValidatorMock.Object,
                                                      mock.DALMapperMockFactory.DALTestAllFieldTypeMapperMock);

            ApiTestAllFieldTypeServerResponseModel response = await service.Get(default(int));

            response.Should().BeNull();
            mock.RepositoryMock.Verify(x => x.Get(It.IsAny <int>()));
        }
        public async void Create_Errors()
        {
            TestAllFieldTypeControllerMockFacade mock = new TestAllFieldTypeControllerMockFacade();

            var mockResponse = new Mock <CreateResponse <ApiTestAllFieldTypeServerResponseModel> >(null as ApiTestAllFieldTypeServerResponseModel);
            var mockRecord   = new ApiTestAllFieldTypeServerResponseModel();

            mockResponse.SetupGet(x => x.Success).Returns(false);

            mock.ServiceMock.Setup(x => x.Create(It.IsAny <ApiTestAllFieldTypeServerRequestModel>())).Returns(Task.FromResult <CreateResponse <ApiTestAllFieldTypeServerResponseModel> >(mockResponse.Object));
            TestAllFieldTypeController controller = new TestAllFieldTypeController(mock.ApiSettingsMoc.Object, mock.LoggerMock.Object, mock.TransactionCoordinatorMock.Object, mock.ServiceMock.Object, mock.ModelMapperMock.Object);

            controller.ControllerContext             = new ControllerContext();
            controller.ControllerContext.HttpContext = new DefaultHttpContext();

            IActionResult response = await controller.Create(new ApiTestAllFieldTypeServerRequestModel());

            response.Should().BeOfType <ObjectResult>();
            (response as ObjectResult).StatusCode.Should().Be((int)HttpStatusCode.UnprocessableEntity);
            mock.ServiceMock.Verify(x => x.Create(It.IsAny <ApiTestAllFieldTypeServerRequestModel>()));
        }
        public async void All_Exists()
        {
            TestAllFieldTypeControllerMockFacade mock = new TestAllFieldTypeControllerMockFacade();
            var record  = new ApiTestAllFieldTypeServerResponseModel();
            var records = new List <ApiTestAllFieldTypeServerResponseModel>();

            records.Add(record);
            mock.ServiceMock.Setup(x => x.All(It.IsAny <int>(), It.IsAny <int>(), It.IsAny <string>())).Returns(Task.FromResult(records));
            TestAllFieldTypeController controller = new TestAllFieldTypeController(mock.ApiSettingsMoc.Object, mock.LoggerMock.Object, mock.TransactionCoordinatorMock.Object, mock.ServiceMock.Object, mock.ModelMapperMock.Object);

            controller.ControllerContext             = new ControllerContext();
            controller.ControllerContext.HttpContext = new DefaultHttpContext();

            IActionResult response = await controller.All(1000, 0, string.Empty);

            response.Should().BeOfType <OkObjectResult>();
            (response as OkObjectResult).StatusCode.Should().Be((int)HttpStatusCode.OK);
            var items = (response as OkObjectResult).Value as List <ApiTestAllFieldTypeServerResponseModel>;

            items.Count.Should().Be(1);
            mock.ServiceMock.Verify(x => x.All(It.IsAny <int>(), It.IsAny <int>(), It.IsAny <string>()));
        }
        public void MapServerResponseToRequest()
        {
            var mapper = new ApiTestAllFieldTypeServerModelMapper();
            var model  = new ApiTestAllFieldTypeServerResponseModel();

            model.SetProperties(1, 1, BitConverter.GetBytes(1), true, "A", DateTime.Parse("1/1/1987 12:00:00 AM"), DateTime.Parse("1/1/1987 12:00:00 AM"), DateTime.Parse("1/1/1987 12:00:00 AM"), DateTimeOffset.Parse("1/1/1987 12:00:00 AM"), 1m, 1, BitConverter.GetBytes(1), 1m, "A", "A", 1m, "A", 1m, DateTime.Parse("1/1/1987 12:00:00 AM"), 1, 1m, "A", TimeSpan.Parse("01:00:00"), BitConverter.GetBytes(1), 1, Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"), BitConverter.GetBytes(1), "A", "A");
            ApiTestAllFieldTypeServerRequestModel response = mapper.MapServerResponseToRequest(model);

            response.Should().NotBeNull();
            response.FieldBigInt.Should().Be(1);
            response.FieldBinary.Should().BeEquivalentTo(BitConverter.GetBytes(1));
            response.FieldBit.Should().Be(true);
            response.FieldChar.Should().Be("A");
            response.FieldDate.Should().Be(DateTime.Parse("1/1/1987 12:00:00 AM"));
            response.FieldDateTime.Should().Be(DateTime.Parse("1/1/1987 12:00:00 AM"));
            response.FieldDateTime2.Should().Be(DateTime.Parse("1/1/1987 12:00:00 AM"));
            response.FieldDateTimeOffset.Should().Be(DateTimeOffset.Parse("1/1/1987 12:00:00 AM"));
            response.FieldDecimal.Should().Be(1m);
            response.FieldFloat.Should().Be(1);
            response.FieldImage.Should().BeEquivalentTo(BitConverter.GetBytes(1));
            response.FieldMoney.Should().Be(1m);
            response.FieldNChar.Should().Be("A");
            response.FieldNText.Should().Be("A");
            response.FieldNumeric.Should().Be(1m);
            response.FieldNVarchar.Should().Be("A");
            response.FieldReal.Should().Be(1m);
            response.FieldSmallDateTime.Should().Be(DateTime.Parse("1/1/1987 12:00:00 AM"));
            response.FieldSmallInt.Should().Be(1);
            response.FieldSmallMoney.Should().Be(1m);
            response.FieldText.Should().Be("A");
            response.FieldTime.Should().Be(TimeSpan.Parse("01:00:00"));
            response.FieldTimestamp.Should().BeEquivalentTo(BitConverter.GetBytes(1));
            response.FieldTinyInt.Should().Be(1);
            response.FieldUniqueIdentifier.Should().Be(Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"));
            response.FieldVarBinary.Should().BeEquivalentTo(BitConverter.GetBytes(1));
            response.FieldVarchar.Should().Be("A");
            response.FieldXML.Should().Be("A");
        }
        public virtual async Task <IActionResult> Patch(int id, [FromBody] JsonPatchDocument <ApiTestAllFieldTypeServerRequestModel> patch)
        {
            ApiTestAllFieldTypeServerResponseModel record = await this.TestAllFieldTypeService.Get(id);

            if (record == null)
            {
                return(this.StatusCode(StatusCodes.Status404NotFound));
            }
            else
            {
                ApiTestAllFieldTypeServerRequestModel model = await this.PatchModel(id, patch) as ApiTestAllFieldTypeServerRequestModel;

                UpdateResponse <ApiTestAllFieldTypeServerResponseModel> result = await this.TestAllFieldTypeService.Update(id, model);

                if (result.Success)
                {
                    return(this.Ok(result));
                }
                else
                {
                    return(this.StatusCode(StatusCodes.Status422UnprocessableEntity, result));
                }
            }
        }
Esempio n. 8
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 ApiTestAllFieldTypeServerModelMapper();
            ApplicationDbContext     context             = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            ITestAllFieldTypeService service             = testServer.Host.Services.GetService(typeof(ITestAllFieldTypeService)) as ITestAllFieldTypeService;
            ApiTestAllFieldTypeServerResponseModel model = await service.Get(1);

            ApiTestAllFieldTypeClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties(2, BitConverter.GetBytes(2), true, "B", DateTime.Parse("1/1/1988 12:00:00 AM"), DateTime.Parse("1/1/1988 12:00:00 AM"), DateTime.Parse("1/1/1988 12:00:00 AM"), DateTimeOffset.Parse("1/1/1988 12:00:00 AM"), 2m, 2, BitConverter.GetBytes(2), 2m, "B", "B", 2m, "B", 2m, DateTime.Parse("1/1/1988 12:00:00 AM"), 2, 2m, "B", TimeSpan.Parse("02:00:00"), BitConverter.GetBytes(2), 2, Guid.Parse("3842cac4-b9a0-8223-0dcc-509a6f75849b"), BitConverter.GetBytes(2), "B", "B");

            UpdateResponse <ApiTestAllFieldTypeClientResponseModel> updateResponse = await client.TestAllFieldTypeUpdateAsync(model.Id, request);

            context.Entry(context.Set <TestAllFieldType>().ToList()[0]).Reload();
            updateResponse.Record.Should().NotBeNull();
            updateResponse.Success.Should().BeTrue();
            updateResponse.Record.Id.Should().Be(1);
            context.Set <TestAllFieldType>().ToList()[0].FieldBigInt.Should().Be(2);
            context.Set <TestAllFieldType>().ToList()[0].FieldBinary.Should().BeEquivalentTo(BitConverter.GetBytes(2));
            context.Set <TestAllFieldType>().ToList()[0].FieldBit.Should().Be(true);
            context.Set <TestAllFieldType>().ToList()[0].FieldChar.Should().Be("B");
            context.Set <TestAllFieldType>().ToList()[0].FieldDate.Should().Be(DateTime.Parse("1/1/1988 12:00:00 AM"));
            context.Set <TestAllFieldType>().ToList()[0].FieldDateTime.Should().Be(DateTime.Parse("1/1/1988 12:00:00 AM"));
            context.Set <TestAllFieldType>().ToList()[0].FieldDateTime2.Should().Be(DateTime.Parse("1/1/1988 12:00:00 AM"));
            context.Set <TestAllFieldType>().ToList()[0].FieldDateTimeOffset.Should().Be(DateTimeOffset.Parse("1/1/1988 12:00:00 AM"));
            context.Set <TestAllFieldType>().ToList()[0].FieldDecimal.Should().Be(2m);
            context.Set <TestAllFieldType>().ToList()[0].FieldFloat.Should().Be(2);
            context.Set <TestAllFieldType>().ToList()[0].FieldImage.Should().BeEquivalentTo(BitConverter.GetBytes(2));
            context.Set <TestAllFieldType>().ToList()[0].FieldMoney.Should().Be(2m);
            context.Set <TestAllFieldType>().ToList()[0].FieldNChar.Should().Be("B");
            context.Set <TestAllFieldType>().ToList()[0].FieldNText.Should().Be("B");
            context.Set <TestAllFieldType>().ToList()[0].FieldNumeric.Should().Be(2m);
            context.Set <TestAllFieldType>().ToList()[0].FieldNVarchar.Should().Be("B");
            context.Set <TestAllFieldType>().ToList()[0].FieldReal.Should().Be(2m);
            context.Set <TestAllFieldType>().ToList()[0].FieldSmallDateTime.Should().Be(DateTime.Parse("1/1/1988 12:00:00 AM"));
            context.Set <TestAllFieldType>().ToList()[0].FieldSmallInt.Should().Be(2);
            context.Set <TestAllFieldType>().ToList()[0].FieldSmallMoney.Should().Be(2m);
            context.Set <TestAllFieldType>().ToList()[0].FieldText.Should().Be("B");
            context.Set <TestAllFieldType>().ToList()[0].FieldTime.Should().Be(TimeSpan.Parse("02:00:00"));
            context.Set <TestAllFieldType>().ToList()[0].FieldTimestamp.Should().BeEquivalentTo(BitConverter.GetBytes(2));
            context.Set <TestAllFieldType>().ToList()[0].FieldTinyInt.Should().Be(2);
            context.Set <TestAllFieldType>().ToList()[0].FieldUniqueIdentifier.Should().Be(Guid.Parse("3842cac4-b9a0-8223-0dcc-509a6f75849b"));
            context.Set <TestAllFieldType>().ToList()[0].FieldVarBinary.Should().BeEquivalentTo(BitConverter.GetBytes(2));
            context.Set <TestAllFieldType>().ToList()[0].FieldVarchar.Should().Be("B");
            context.Set <TestAllFieldType>().ToList()[0].FieldXML.Should().Be("B");

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.FieldBigInt.Should().Be(2);
            updateResponse.Record.FieldBinary.Should().BeEquivalentTo(BitConverter.GetBytes(2));
            updateResponse.Record.FieldBit.Should().Be(true);
            updateResponse.Record.FieldChar.Should().Be("B");
            updateResponse.Record.FieldDate.Should().Be(DateTime.Parse("1/1/1988 12:00:00 AM"));
            updateResponse.Record.FieldDateTime.Should().Be(DateTime.Parse("1/1/1988 12:00:00 AM"));
            updateResponse.Record.FieldDateTime2.Should().Be(DateTime.Parse("1/1/1988 12:00:00 AM"));
            updateResponse.Record.FieldDateTimeOffset.Should().Be(DateTimeOffset.Parse("1/1/1988 12:00:00 AM"));
            updateResponse.Record.FieldDecimal.Should().Be(2m);
            updateResponse.Record.FieldFloat.Should().Be(2);
            updateResponse.Record.FieldImage.Should().BeEquivalentTo(BitConverter.GetBytes(2));
            updateResponse.Record.FieldMoney.Should().Be(2m);
            updateResponse.Record.FieldNChar.Should().Be("B");
            updateResponse.Record.FieldNText.Should().Be("B");
            updateResponse.Record.FieldNumeric.Should().Be(2m);
            updateResponse.Record.FieldNVarchar.Should().Be("B");
            updateResponse.Record.FieldReal.Should().Be(2m);
            updateResponse.Record.FieldSmallDateTime.Should().Be(DateTime.Parse("1/1/1988 12:00:00 AM"));
            updateResponse.Record.FieldSmallInt.Should().Be(2);
            updateResponse.Record.FieldSmallMoney.Should().Be(2m);
            updateResponse.Record.FieldText.Should().Be("B");
            updateResponse.Record.FieldTime.Should().Be(TimeSpan.Parse("02:00:00"));
            updateResponse.Record.FieldTimestamp.Should().BeEquivalentTo(BitConverter.GetBytes(2));
            updateResponse.Record.FieldTinyInt.Should().Be(2);
            updateResponse.Record.FieldUniqueIdentifier.Should().Be(Guid.Parse("3842cac4-b9a0-8223-0dcc-509a6f75849b"));
            updateResponse.Record.FieldVarBinary.Should().BeEquivalentTo(BitConverter.GetBytes(2));
            updateResponse.Record.FieldVarchar.Should().Be("B");
            updateResponse.Record.FieldXML.Should().Be("B");
        }