public async void Create_Errors() { ContactTypeControllerMockFacade mock = new ContactTypeControllerMockFacade(); var mockResponse = new Mock <CreateResponse <ApiContactTypeResponseModel> >(new FluentValidation.Results.ValidationResult()); var mockRecord = new ApiContactTypeResponseModel(); mockResponse.SetupGet(x => x.Success).Returns(false); mock.ServiceMock.Setup(x => x.Create(It.IsAny <ApiContactTypeRequestModel>())).Returns(Task.FromResult <CreateResponse <ApiContactTypeResponseModel> >(mockResponse.Object)); ContactTypeController controller = new ContactTypeController(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 ApiContactTypeRequestModel()); response.Should().BeOfType <ObjectResult>(); (response as ObjectResult).StatusCode.Should().Be((int)HttpStatusCode.UnprocessableEntity); mock.ServiceMock.Verify(x => x.Create(It.IsAny <ApiContactTypeRequestModel>())); }
public async void Create_No_Errors() { ContactTypeControllerMockFacade mock = new ContactTypeControllerMockFacade(); var mockResponse = new CreateResponse <ApiContactTypeResponseModel>(new FluentValidation.Results.ValidationResult()); mockResponse.SetRecord(new ApiContactTypeResponseModel()); mock.ServiceMock.Setup(x => x.Create(It.IsAny <ApiContactTypeRequestModel>())).Returns(Task.FromResult <CreateResponse <ApiContactTypeResponseModel> >(mockResponse)); ContactTypeController controller = new ContactTypeController(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 ApiContactTypeRequestModel()); response.Should().BeOfType <CreatedResult>(); (response as CreatedResult).StatusCode.Should().Be((int)HttpStatusCode.Created); var createResponse = (response as CreatedResult).Value as CreateResponse <ApiContactTypeResponseModel>; createResponse.Record.Should().NotBeNull(); mock.ServiceMock.Verify(x => x.Create(It.IsAny <ApiContactTypeRequestModel>())); }