Ejemplo n.º 1
0
        public async void Patch_No_Errors()
        {
            KeyAllocationControllerMockFacade mock = new KeyAllocationControllerMockFacade();
            var mockResult = new Mock <UpdateResponse <ApiKeyAllocationResponseModel> >();

            mockResult.SetupGet(x => x.Success).Returns(true);
            mock.ServiceMock.Setup(x => x.Update(It.IsAny <string>(), It.IsAny <ApiKeyAllocationRequestModel>()))
            .Callback <string, ApiKeyAllocationRequestModel>(
                (id, model) => model.Allocated.Should().Be(1)
                )
            .Returns(Task.FromResult <UpdateResponse <ApiKeyAllocationResponseModel> >(mockResult.Object));
            mock.ServiceMock.Setup(x => x.Get(It.IsAny <string>())).Returns(Task.FromResult <ApiKeyAllocationResponseModel>(new ApiKeyAllocationResponseModel()));
            KeyAllocationController controller = new KeyAllocationController(mock.ApiSettingsMoc.Object, mock.LoggerMock.Object, mock.TransactionCoordinatorMock.Object, mock.ServiceMock.Object, new ApiKeyAllocationModelMapper());

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

            var patch = new JsonPatchDocument <ApiKeyAllocationRequestModel>();

            patch.Replace(x => x.Allocated, 1);

            IActionResult response = await controller.Patch(default(string), patch);

            response.Should().BeOfType <OkObjectResult>();
            (response as OkObjectResult).StatusCode.Should().Be((int)HttpStatusCode.OK);
            mock.ServiceMock.Verify(x => x.Update(It.IsAny <string>(), It.IsAny <ApiKeyAllocationRequestModel>()));
        }
Ejemplo n.º 2
0
        public async void Patch_Record_Not_Found()
        {
            KeyAllocationControllerMockFacade mock = new KeyAllocationControllerMockFacade();
            var mockResult = new Mock <ActionResponse>();

            mock.ServiceMock.Setup(x => x.Get(It.IsAny <string>())).Returns(Task.FromResult <ApiKeyAllocationResponseModel>(null));
            KeyAllocationController controller = new KeyAllocationController(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 patch = new JsonPatchDocument <ApiKeyAllocationRequestModel>();

            patch.Replace(x => x.Allocated, 1);

            IActionResult response = await controller.Patch(default(string), patch);

            response.Should().BeOfType <StatusCodeResult>();
            (response as StatusCodeResult).StatusCode.Should().Be((int)HttpStatusCode.NotFound);
            mock.ServiceMock.Verify(x => x.Get(It.IsAny <string>()));
        }