예제 #1
0
        public async void BulkInsert_No_Errors()
        {
            LocationControllerMockFacade mock = new LocationControllerMockFacade();

            var mockResponse = ValidationResponseFactory <ApiLocationServerResponseModel> .CreateResponse(null as ApiLocationServerResponseModel);

            mockResponse.SetRecord(new ApiLocationServerResponseModel());
            mock.ServiceMock.Setup(x => x.Create(It.IsAny <ApiLocationServerRequestModel>())).Returns(Task.FromResult <CreateResponse <ApiLocationServerResponseModel> >(mockResponse));
            LocationController controller = new LocationController(mock.ApiSettingsMoc.Object, mock.LoggerMock.Object, mock.TransactionCoordinatorMock.Object, mock.ServiceMock.Object, mock.ModelMapperMock.Object);

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

            var records = new List <ApiLocationServerRequestModel>();

            records.Add(new ApiLocationServerRequestModel());
            IActionResult response = await controller.BulkInsert(records);

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

            result.Success.Should().BeTrue();
            result.Record.Should().NotBeEmpty();
            mock.ServiceMock.Verify(x => x.Create(It.IsAny <ApiLocationServerRequestModel>()));
        }
예제 #2
0
        public async void BulkInsert_Errors()
        {
            LocationControllerMockFacade mock = new LocationControllerMockFacade();

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

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

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

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

            var records = new List <ApiLocationServerRequestModel>();

            records.Add(new ApiLocationServerRequestModel());
            IActionResult response = await controller.BulkInsert(records);

            response.Should().BeOfType <ObjectResult>();
            (response as ObjectResult).StatusCode.Should().Be((int)HttpStatusCode.UnprocessableEntity);
            mock.ServiceMock.Verify(x => x.Create(It.IsAny <ApiLocationServerRequestModel>()));
        }