public async void Patch_No_Errors() { CountryRegionCurrencyControllerMockFacade mock = new CountryRegionCurrencyControllerMockFacade(); var mockResult = new Mock <UpdateResponse <ApiCountryRegionCurrencyResponseModel> >(); mockResult.SetupGet(x => x.Success).Returns(true); mock.ServiceMock.Setup(x => x.Update(It.IsAny <string>(), It.IsAny <ApiCountryRegionCurrencyRequestModel>())) .Callback <string, ApiCountryRegionCurrencyRequestModel>( (id, model) => model.CurrencyCode.Should().Be("A") ) .Returns(Task.FromResult <UpdateResponse <ApiCountryRegionCurrencyResponseModel> >(mockResult.Object)); mock.ServiceMock.Setup(x => x.Get(It.IsAny <string>())).Returns(Task.FromResult <ApiCountryRegionCurrencyResponseModel>(new ApiCountryRegionCurrencyResponseModel())); CountryRegionCurrencyController controller = new CountryRegionCurrencyController(mock.ApiSettingsMoc.Object, mock.LoggerMock.Object, mock.TransactionCoordinatorMock.Object, mock.ServiceMock.Object, new ApiCountryRegionCurrencyModelMapper()); controller.ControllerContext = new ControllerContext(); controller.ControllerContext.HttpContext = new DefaultHttpContext(); var patch = new JsonPatchDocument <ApiCountryRegionCurrencyRequestModel>(); patch.Replace(x => x.CurrencyCode, "A"); 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 <ApiCountryRegionCurrencyRequestModel>())); }
public async void Patch_Record_Not_Found() { CountryRegionCurrencyControllerMockFacade mock = new CountryRegionCurrencyControllerMockFacade(); var mockResult = new Mock <ActionResponse>(); mock.ServiceMock.Setup(x => x.Get(It.IsAny <string>())).Returns(Task.FromResult <ApiCountryRegionCurrencyResponseModel>(null)); CountryRegionCurrencyController controller = new CountryRegionCurrencyController(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 <ApiCountryRegionCurrencyRequestModel>(); patch.Replace(x => x.CurrencyCode, "A"); 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>())); }