コード例 #1
0
        public void TestAcknoledgeInterruptionWhenNoRequests()
        {
            InterruptionController controller = new InterruptionController();
            byte noAckIrq = 255;

            Assert.AreEqual(noAckIrq, controller.AcknowledgeInterruption());
        }
コード例 #2
0
        public async void Patch_No_Errors()
        {
            InterruptionControllerMockFacade mock = new InterruptionControllerMockFacade();
            var mockResult = new Mock <UpdateResponse <ApiInterruptionResponseModel> >();

            mockResult.SetupGet(x => x.Success).Returns(true);
            mock.ServiceMock.Setup(x => x.Update(It.IsAny <string>(), It.IsAny <ApiInterruptionRequestModel>()))
            .Callback <string, ApiInterruptionRequestModel>(
                (id, model) => model.Created.Should().Be(DateTimeOffset.Parse("1/1/1987 12:00:00 AM"))
                )
            .Returns(Task.FromResult <UpdateResponse <ApiInterruptionResponseModel> >(mockResult.Object));
            mock.ServiceMock.Setup(x => x.Get(It.IsAny <string>())).Returns(Task.FromResult <ApiInterruptionResponseModel>(new ApiInterruptionResponseModel()));
            InterruptionController controller = new InterruptionController(mock.ApiSettingsMoc.Object, mock.LoggerMock.Object, mock.TransactionCoordinatorMock.Object, mock.ServiceMock.Object, new ApiInterruptionModelMapper());

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

            var patch = new JsonPatchDocument <ApiInterruptionRequestModel>();

            patch.Replace(x => x.Created, DateTimeOffset.Parse("1/1/1987 12:00:00 AM"));

            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 <ApiInterruptionRequestModel>()));
        }
コード例 #3
0
        public async void BulkInsert_No_Errors()
        {
            InterruptionControllerMockFacade mock = new InterruptionControllerMockFacade();

            var mockResponse = new CreateResponse <ApiInterruptionResponseModel>(new FluentValidation.Results.ValidationResult());

            mockResponse.SetRecord(new ApiInterruptionResponseModel());
            mock.ServiceMock.Setup(x => x.Create(It.IsAny <ApiInterruptionRequestModel>())).Returns(Task.FromResult <CreateResponse <ApiInterruptionResponseModel> >(mockResponse));
            InterruptionController controller = new InterruptionController(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 <ApiInterruptionRequestModel>();

            records.Add(new ApiInterruptionRequestModel());
            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 List <ApiInterruptionResponseModel>;

            result.Should().NotBeEmpty();
            mock.ServiceMock.Verify(x => x.Create(It.IsAny <ApiInterruptionRequestModel>()));
        }
コード例 #4
0
        public void TestAcknolegdeInterruptionAfterMakeInterruption()
        {
            InterruptionController controller = new InterruptionController();
            byte irq = 3;

            controller.MakeInterruption(irq);
            Assert.AreEqual(irq, controller.AcknowledgeInterruption());
        }
コード例 #5
0
        public void TestHasInterruptionAfterMakeInterruption()
        {
            InterruptionController controller = new InterruptionController();
            byte irq = 3;

            controller.MakeInterruption(irq);
            Assert.IsTrue(controller.HasInterruptionRequests());
        }
コード例 #6
0
        public void TestHasNoInterruptionAfterClear()
        {
            InterruptionController controller = new InterruptionController();
            byte irq = 3;

            controller.MakeInterruption(irq);
            controller.Clear();
            Assert.IsFalse(controller.HasInterruptionRequests());
        }
コード例 #7
0
        public void TestClearInterruptionsClearOnlyCurrent()
        {
            InterruptionController controller = new InterruptionController();
            byte irq = 3;

            controller.MakeInterruption(irq);
            controller.ClearInterruptions();
            Assert.IsTrue(controller.HasInterruptionRequests());
        }
コード例 #8
0
        public void TestHasNoInterruptionAfterAcknowledgeWhenSingle()
        {
            InterruptionController controller = new InterruptionController();
            byte irq = 3;

            controller.MakeInterruption(irq);
            controller.AcknowledgeInterruption();
            Assert.IsFalse(controller.HasInterruptionRequests());
        }
コード例 #9
0
        public void TestHasInterruptionAfterAcknowledgeWhenMultiple()
        {
            InterruptionController controller = new InterruptionController();
            byte irq  = 3;
            byte irq2 = 4;

            controller.MakeInterruption(irq);
            controller.MakeInterruption(irq2);
            controller.AcknowledgeInterruption();
            Assert.IsTrue(controller.HasInterruptionRequests());
        }
コード例 #10
0
        public async void Get_Not_Exists()
        {
            InterruptionControllerMockFacade mock = new InterruptionControllerMockFacade();

            mock.ServiceMock.Setup(x => x.Get(It.IsAny <string>())).Returns(Task.FromResult <ApiInterruptionResponseModel>(null));
            InterruptionController controller = new InterruptionController(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.Get(default(string));

            response.Should().BeOfType <StatusCodeResult>();
            (response as StatusCodeResult).StatusCode.Should().Be((int)HttpStatusCode.NotFound);
            mock.ServiceMock.Verify(x => x.Get(It.IsAny <string>()));
        }
コード例 #11
0
        public async void Delete_Errors()
        {
            InterruptionControllerMockFacade mock = new InterruptionControllerMockFacade();
            var mockResult = new Mock <ActionResponse>();

            mockResult.SetupGet(x => x.Success).Returns(false);
            mock.ServiceMock.Setup(x => x.Delete(It.IsAny <string>())).Returns(Task.FromResult <ActionResponse>(mockResult.Object));
            InterruptionController controller = new InterruptionController(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.Delete(default(string));

            response.Should().BeOfType <ObjectResult>();
            (response as ObjectResult).StatusCode.Should().Be((int)HttpStatusCode.UnprocessableEntity);
            mock.ServiceMock.Verify(x => x.Delete(It.IsAny <string>()));
        }
コード例 #12
0
        public async void All_Not_Exists()
        {
            InterruptionControllerMockFacade mock = new InterruptionControllerMockFacade();

            mock.ServiceMock.Setup(x => x.All(It.IsAny <int>(), It.IsAny <int>())).Returns(Task.FromResult <List <ApiInterruptionResponseModel> >(new List <ApiInterruptionResponseModel>()));
            InterruptionController controller = new InterruptionController(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);

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

            items.Should().BeEmpty();
            mock.ServiceMock.Verify(x => x.All(It.IsAny <int>(), It.IsAny <int>()));
        }
コード例 #13
0
        public async void Update_NotFound()
        {
            InterruptionControllerMockFacade mock = new InterruptionControllerMockFacade();
            var mockResult = new Mock <UpdateResponse <ApiInterruptionResponseModel> >();

            mockResult.SetupGet(x => x.Success).Returns(false);
            mock.ServiceMock.Setup(x => x.Update(It.IsAny <string>(), It.IsAny <ApiInterruptionRequestModel>())).Returns(Task.FromResult <UpdateResponse <ApiInterruptionResponseModel> >(mockResult.Object));
            mock.ServiceMock.Setup(x => x.Get(It.IsAny <string>())).Returns(Task.FromResult <ApiInterruptionResponseModel>(null));
            InterruptionController controller = new InterruptionController(mock.ApiSettingsMoc.Object, mock.LoggerMock.Object, mock.TransactionCoordinatorMock.Object, mock.ServiceMock.Object, new ApiInterruptionModelMapper());

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

            IActionResult response = await controller.Update(default(string), new ApiInterruptionRequestModel());

            response.Should().BeOfType <StatusCodeResult>();
            (response as StatusCodeResult).StatusCode.Should().Be((int)HttpStatusCode.NotFound);
            mock.ServiceMock.Verify(x => x.Get(It.IsAny <string>()));
        }
コード例 #14
0
        public async void Patch_Record_Not_Found()
        {
            InterruptionControllerMockFacade mock = new InterruptionControllerMockFacade();
            var mockResult = new Mock <ActionResponse>();

            mock.ServiceMock.Setup(x => x.Get(It.IsAny <string>())).Returns(Task.FromResult <ApiInterruptionResponseModel>(null));
            InterruptionController controller = new InterruptionController(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 <ApiInterruptionRequestModel>();

            patch.Replace(x => x.Created, DateTimeOffset.Parse("1/1/1987 12:00:00 AM"));

            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>()));
        }
コード例 #15
0
        public async void Create_Errors()
        {
            InterruptionControllerMockFacade mock = new InterruptionControllerMockFacade();

            var mockResponse = new Mock <CreateResponse <ApiInterruptionResponseModel> >(new FluentValidation.Results.ValidationResult());
            var mockRecord   = new ApiInterruptionResponseModel();

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

            mock.ServiceMock.Setup(x => x.Create(It.IsAny <ApiInterruptionRequestModel>())).Returns(Task.FromResult <CreateResponse <ApiInterruptionResponseModel> >(mockResponse.Object));
            InterruptionController controller = new InterruptionController(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 ApiInterruptionRequestModel());

            response.Should().BeOfType <ObjectResult>();
            (response as ObjectResult).StatusCode.Should().Be((int)HttpStatusCode.UnprocessableEntity);
            mock.ServiceMock.Verify(x => x.Create(It.IsAny <ApiInterruptionRequestModel>()));
        }
コード例 #16
0
        public void TestHasNoInterruptionByDefault()
        {
            InterruptionController controller = new InterruptionController();

            Assert.IsFalse(controller.HasInterruptionRequests());
        }