コード例 #1
0
        public void TimelineController_GetAll_Test()
        {
            // Arrange
            Mock<ITimelineService> mock = new Mock<ITimelineService>(MockBehavior.Strict);
            mock.Setup(setup => setup.GetAllPublicTimelinesWithoutContentItems()).Returns(new List<Entities.Timeline>()
            {
                new Timeline()
                {
                    Id = 1,
                    BeginDate = 1000,
                    EndDate = 1500,
                    Title = "Test 1"
                },
                new Timeline()
                {
                    Id = 2,
                    BeginDate = 1555,
                    EndDate = 1666,
                    Title = "Test 2"
                }
            });
            TimelineController target = new TimelineController(mock.Object);

            // Act
            IHttpActionResult result = target.Get();

            // Assert
            Assert.IsNotNull(result);
            Assert.IsTrue(result is OkNegotiatedContentResult<IEnumerable<Timeline>>);
            Assert.AreEqual(2, ((OkNegotiatedContentResult<IEnumerable<Timeline>>) result).Content.Count());
            mock.Verify(verify => verify.GetAllPublicTimelinesWithoutContentItems(), Times.Once);
        }
コード例 #2
0
        public void TimelineController_Get_BadRequest_Test()
        {
            // Arrange
            Mock<ITimelineService> mock = new Mock<ITimelineService>(MockBehavior.Strict);
            mock.Setup(setup => setup.Get(It.IsAny<int>())).Throws(new Exception());
            TimelineController target = new TimelineController(mock.Object);

            // Act
            IHttpActionResult result = target.Get(12);

            // Assert
            Assert.IsNotNull(result);
            Assert.IsTrue(result is BadRequestErrorMessageResult);
        }
コード例 #3
0
        public void TimelineController_Put_Validation_Test()
        {
            // Arrange
            Mock<ITimelineService> mock = new Mock<ITimelineService>(MockBehavior.Strict);
            mock.Setup(setup => setup.Add(It.IsAny<Timeline>()));
            TimelineController target = new TimelineController(mock.Object);
            Timeline timeline = new Timeline()
            {
                RootContentItem = null
            };

            // Act
            target.Configuration = new HttpConfiguration();
            target.Validate<Timeline>(timeline);
            IHttpActionResult result = target.Put(timeline);

            // Assert
            Assert.IsNotNull(result);
            Assert.IsTrue(result is BadRequestErrorMessageResult);
            Assert.AreEqual(false, target.ModelState.IsValid);
            Assert.AreEqual(3, target.ModelState.Count);
        }
コード例 #4
0
        public void TimelineController_Put_Test()
        {
            // Arrange
            Mock<ITimelineService> mock = new Mock<ITimelineService>(MockBehavior.Strict);
            mock.Setup(setup => setup.Update(It.IsAny<Timeline>()));
            TimelineController target = new TimelineController(mock.Object);
            Timeline timeline = new Timeline()
            {
                Id = 1,
                BeginDate = -1,
                EndDate = -1,
                Title = "test",
                RootContentItem = null
            };

            // Act
            target.Configuration = new HttpConfiguration();
            target.Validate<Timeline>(timeline);
            IHttpActionResult result = target.Put(timeline);

            // Assert
            Assert.IsNotNull(result);
            Assert.IsTrue(result is OkResult);
            mock.Verify(verify => verify.Update(It.IsAny<Timeline>()), Times.Once);
        }
コード例 #5
0
        public void TimelineController_Post_Test()
        {
            // Arrange
            Mock<ITimelineService> mock = new Mock<ITimelineService>(MockBehavior.Strict);
            mock.Setup(setup => setup.Add(It.IsAny<Timeline>())).Returns(new Timeline()
            {
                Id = 123
            });
            TimelineController target = new TimelineController(mock.Object);
            Timeline timeline = new Timeline()
            {
                BeginDate = -1,
                EndDate = -1,
                Title = "test",
                RootContentItem = null
            };

            // Act
            target.Configuration = new HttpConfiguration();
            target.Validate<Timeline>(timeline);
            IHttpActionResult result = target.Post(timeline);

            // Assert
            Assert.IsNotNull(result);
            Assert.IsTrue(result is OkNegotiatedContentResult<long>);
            Assert.AreEqual((long)123, (result as OkNegotiatedContentResult<long>).Content);
            mock.Verify(verify => verify.Add(It.IsAny<Timeline>()), Times.Once);
        }
コード例 #6
0
        public void TimelineController_Post_InvalidID_Test()
        {
            // Arrange
            Mock<ITimelineService> mock = new Mock<ITimelineService>(MockBehavior.Strict);
            mock.Setup(setup => setup.Update(It.IsAny<Timeline>()));
            TimelineController target = new TimelineController(mock.Object);
            Timeline timeline = new Timeline()
            {
                BeginDate = -1,
                EndDate = -1,
                Title = "test"
            };

            // Act
            target.Configuration = new HttpConfiguration();
            target.Validate<Timeline>(timeline);
            IHttpActionResult result = target.Post(timeline);

            // Assert
            Assert.IsNotNull(result);
            Assert.IsTrue(result is BadRequestErrorMessageResult);
        }
コード例 #7
0
        public void TimelineController_Get_Test()
        {
            // Arrange
            Mock<ITimelineService> mock = new Mock<ITimelineService>(MockBehavior.Strict);
            mock.Setup(setup => setup.Get(It.IsAny<int>())).Returns(new Entities.Timeline()
            {
                Id =12
            });
            TimelineController target = new TimelineController(mock.Object);

            // Act
            IHttpActionResult result = target.Get(12);

            // Assert
            Assert.IsNotNull(result);
            Assert.IsTrue(result is OkNegotiatedContentResult<Timeline>);
            Assert.AreEqual(12, (result as OkNegotiatedContentResult<Timeline>).Content.Id);
            mock.Verify(verify => verify.Get(It.IsAny<int>()), Times.Once);
        }