public void Verify_Deactivate_ByID_ANonExistingEntity_Should_ThrowAnInvalidOperationException()
 {
     // Arrange
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => null);
     var mockLocationStoryArcsMapper = new Mock<ILocationStoryArcMapper>();
     mockLocationStoryArcsMapper.Setup(m => m.AreEqual(It.IsAny<ILocationStoryArcModel>(), It.IsAny<ILocationStoryArc>())).Returns(() => true);
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, mockLocationStoryArcsMapper.Object);
     // Act/Assert
     Assert.Throws<System.InvalidOperationException>(() => businessWorkflow.Deactivate(1));
 }
示例#2
0
        public void Verify_Get_ByID_Should_ReturnTheCorrectObjectType()
        {
            // Arrange
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
            var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
            // Act
            var person = businessWorkflow.Get(1);

            // Assert
            Assert.IsType <LocationStoryArcModel>(person);
        }
示例#3
0
        public void Verify_Remove_ANonExistingEntity_Should_ReturnTrue()
        {
            // Arrange
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();

            mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny <string>())).Returns(() => null);
            var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
            // Act
            var result = businessWorkflow.Remove("DOESNT-EXIST");

            // Assert
            Assert.Equal(true, result);
        }
 public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
 {
     // Arrange
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     mockLocationStoryArcsRepository.Setup(m => m.Search(It.IsAny<ILocationStoryArcSearchModel>(), It.IsAny<bool>()))
         .Returns(() => new Mock<List<ILocationStoryArc>>().Object);
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
     var model = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel();
     // Act
     try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
     // Assert
     mockLocationStoryArcsRepository.Verify(m => m.Add(It.IsAny<ILocationStoryArc>()), Times.Once);
 }
示例#5
0
        public void Verify_Deactivate_ByKey_ANonExistingEntity_Should_ThrowAnInvalidOperationException()
        {
            // Arrange
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();

            mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny <string>())).Returns(() => null);
            var mockLocationStoryArcsMapper = new Mock <ILocationStoryArcMapper>();

            mockLocationStoryArcsMapper.Setup(m => m.AreEqual(It.IsAny <ILocationStoryArcModel>(), It.IsAny <ILocationStoryArc>())).Returns(() => true);
            var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, mockLocationStoryArcsMapper.Object);

            // Act/Assert
            Assert.Throws <System.InvalidOperationException>(() => businessWorkflow.Deactivate("TEST"));
        }
示例#6
0
        public void Verify_Search_AsListing_Should_ReturnAListOfLocationStoryArcsWithDataMatchingSearchParametersWithListingMapping()
        {
            // Arrange
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
            var searchModel = new Mock <ILocationStoryArcSearchModel>();
            var mockLocationStoryArcsMapper = new Mock <ILocationStoryArcMapper>();

            mockLocationStoryArcsMapper.Setup(m => m.AreEqual(It.IsAny <ILocationStoryArcModel>(), It.IsAny <ILocationStoryArc>())).Returns(() => true);
            var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, mockLocationStoryArcsMapper.Object);

            // Act
            businessWorkflow.Search(searchModel.Object, true);
            // Assert
            mockLocationStoryArcsRepository.Verify(m => m.Search(It.IsAny <ILocationStoryArcSearchModel>(), It.IsAny <bool>()), Times.Once);
        }
示例#7
0
        public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
        {
            // Arrange
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();

            mockLocationStoryArcsRepository.Setup(m => m.Search(It.IsAny <ILocationStoryArcSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new Mock <List <ILocationStoryArc> >().Object);
            var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
            var model            = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel();

            // Act
            try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
            // Assert
            mockLocationStoryArcsRepository.Verify(m => m.Add(It.IsAny <ILocationStoryArc>()), Times.Once);
        }
示例#8
0
        public void Verify_Update_Should_SetUpdatedDate()
        {
            // Arrange
            var mockLocationStoryArc            = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArc(1);
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();

            mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockLocationStoryArc.Object);
            var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
            var expectedName     = "Stephen King (2)";
            var model            = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel(1, expectedName);

            // Act
            businessWorkflow.Update(model.Object);
            // Assert
            mockLocationStoryArc.Verify(m => m.UpdatedDate, Times.Once);
        }
 public void Verify_Create_WithDuplicateData_Should_NotAddAndReturnOriginal()
 {
     // Arrange
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     var mockLocationStoryArc = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArc(1);
     mockLocationStoryArcsRepository.Setup(m => m.Search(It.IsAny<ILocationStoryArcSearchModel>(), It.IsAny<bool>()))
         .Returns(() => new List<ILocationStoryArc> { mockLocationStoryArc.Object } );
     mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => mockLocationStoryArc.Object);
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
     var model = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel();
     // Act
     try { businessWorkflow.Create(model.Object); }
     catch { /* ignored, the Get call at the end doesn't work because don't get a real entity with id on it */ }
     // Assert
     mockLocationStoryArcsRepository.Verify(m => m.Add(It.IsAny<ILocationStoryArc>()), Times.Never);
 }
示例#10
0
        public void Verify_Remove_ByKey_Should_DeactivateTheObjectAndReturnTrue()
        {
            // Arrange
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
            var mockLocationStoryArcsMapper     = new Mock <ILocationStoryArcMapper>();

            mockLocationStoryArcsMapper.Setup(m => m.AreEqual(It.IsAny <ILocationStoryArcModel>(), It.IsAny <ILocationStoryArc>())).Returns(() => true);
            var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, mockLocationStoryArcsMapper.Object);

            mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny <string>())).Returns(() => new Mock <ILocationStoryArc>().Object);
            mockLocationStoryArcsRepository.Setup(m => m.SaveChanges()).Returns(() => true);
            // Act
            var result = businessWorkflow.Remove("KING-STEPHEN");

            // Assert
            mockLocationStoryArcsRepository.Verify(m => m.Remove(It.IsAny <ILocationStoryArc>()), Times.Once);
            Assert.Equal(true, result);
        }
示例#11
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArc(1);
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();

            mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow          = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
            var model                     = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel(1);
            ILocationStoryArcModel result = null;

            // Act
            try { result = businessWorkflow.Update(model.Object); }
            catch { /* ignored, the Get call at the end doesn't work because don't get a real entity with id on it */ }
            // Assert
            Assert.NotNull(result);
            Assert.Equal("/TEST/KING-STEPHEN", result.ApiDetailUrl);
            Assert.Null(result.UpdatedDate);
        }
示例#12
0
        public void Verify_Create_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
            var mockLocationStoryArc            = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArc(1);

            mockLocationStoryArcsRepository.Setup(m => m.Search(It.IsAny <ILocationStoryArcSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new List <ILocationStoryArc> {
                mockLocationStoryArc.Object
            });
            mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockLocationStoryArc.Object);
            var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
            var model            = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel();

            // Act
            try { businessWorkflow.Create(model.Object); }
            catch { /* ignored, the Get call at the end doesn't work because don't get a real entity with id on it */ }
            // Assert
            mockLocationStoryArcsRepository.Verify(m => m.Add(It.IsAny <ILocationStoryArc>()), Times.Never);
        }
 public void Verify_Get_ByKey_Should_ReturnTheCorrectObject()
 {
     // Arrange
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
     // Act
     var person = businessWorkflow.Get("KING-STEPHEN");
     // Assert
     Assert.IsType<LocationStoryArcModel>(person);
 }
 public void Verify_Search_Should_ReturnAListOfLocationStoryArcs()
 {
     // Arrange
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     var searchModel = new Mock<ILocationStoryArcSearchModel>();
     var mockLocationStoryArcsMapper = new Mock<ILocationStoryArcMapper>();
     mockLocationStoryArcsMapper.Setup(m => m.AreEqual(It.IsAny<ILocationStoryArcModel>(), It.IsAny<ILocationStoryArc>())).Returns(() => true);
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, mockLocationStoryArcsMapper.Object);
     // Act
     businessWorkflow.Search(searchModel.Object);
     // Assert
     mockLocationStoryArcsRepository.Verify(m => m.Search(It.IsAny<ILocationStoryArcSearchModel>(), It.IsAny<bool>()), Times.Once);
 }
 public void Verify_Update_Should_SetUpdatedDate()
 {
     // Arrange
     var mockLocationStoryArc = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArc(1);
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => mockLocationStoryArc.Object);
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
     var expectedName = "Stephen King (2)";
     var model = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel(1, expectedName);
     // Act
     businessWorkflow.Update(model.Object);
     // Assert
     mockLocationStoryArc.Verify(m => m.UpdatedDate, Times.Once);
 }
 public void Verify_Remove_ANonExistingEntity_Should_ReturnTrue()
 {
     // Arrange
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny<string>())).Returns(() => null);
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
     // Act
     var result = businessWorkflow.Remove("DOESNT-EXIST");
     // Assert
     Assert.Equal(true, result);
 }
 public void Verify_Deactivate_ByID_Should_DeactivateTheObjectAndReturnTrue()
 {
     // Arrange
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     var mockLocationStoryArcsMapper = new Mock<ILocationStoryArcMapper>();
     mockLocationStoryArcsMapper.Setup(m => m.AreEqual(It.IsAny<ILocationStoryArcModel>(), It.IsAny<ILocationStoryArc>())).Returns(() => true);
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, mockLocationStoryArcsMapper.Object);
     mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => new Mock<ILocationStoryArc>().Object);
     mockLocationStoryArcsRepository.Setup(m => m.SaveChanges()).Returns(() => true);
     // Act
     var result = businessWorkflow.Deactivate(1);
     // Assert
     mockLocationStoryArcsRepository.Verify(m => m.Deactivate(It.IsAny<ILocationStoryArc>()), Times.Once);
     Assert.Equal(true, result);
 }
 public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
 {
     // Arrange
     var entity = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArc(1);
     var mockLocationStoryArcsRepository = LocationStoryArcsMockingSetup.DoMockingSetupForRepository();
     mockLocationStoryArcsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => entity.Object);
     var businessWorkflow = new LocationStoryArcsBusinessWorkflow(mockLocationStoryArcsRepository.Object, new LocationStoryArcMapper());
     var model = LocationStoryArcsMockingSetup.DoMockingSetupForLocationStoryArcModel(1);
     ILocationStoryArcModel result = null;
     // Act
     try { result = businessWorkflow.Update(model.Object); }
     catch { /* ignored, the Get call at the end doesn't work because don't get a real entity with id on it */ }
     // Assert
     Assert.NotNull(result);
     Assert.Equal("/TEST/KING-STEPHEN", result.ApiDetailUrl);
     Assert.Null(result.UpdatedDate);
 }