public void Verify_Deactivate_ByID_ANonExistingEntity_Should_ThrowAnInvalidOperationException()
 {
     // Arrange
     var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
     mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => null);
     var mockVolumeLocationsMapper = new Mock<IVolumeLocationMapper>();
     mockVolumeLocationsMapper.Setup(m => m.AreEqual(It.IsAny<IVolumeLocationModel>(), It.IsAny<IVolumeLocation>())).Returns(() => true);
     var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, mockVolumeLocationsMapper.Object);
     // Act/Assert
     Assert.Throws<System.InvalidOperationException>(() => businessWorkflow.Deactivate(1));
 }
コード例 #2
0
        public void Verify_Get_ByID_Should_ReturnTheCorrectObjectType()
        {
            // Arrange
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
            var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
            // Act
            var person = businessWorkflow.Get(1);

            // Assert
            Assert.IsType <VolumeLocationModel>(person);
        }
 public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
 {
     // Arrange
     var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
     mockVolumeLocationsRepository.Setup(m => m.Search(It.IsAny<IVolumeLocationSearchModel>(), It.IsAny<bool>()))
         .Returns(() => new Mock<List<IVolumeLocation>>().Object);
     var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
     var model = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel();
     // Act
     try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
     // Assert
     mockVolumeLocationsRepository.Verify(m => m.Add(It.IsAny<IVolumeLocation>()), Times.Once);
 }
コード例 #4
0
        public void Verify_Remove_ANonExistingEntity_Should_ReturnTrue()
        {
            // Arrange
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();

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

            // Assert
            Assert.Equal(true, result);
        }
コード例 #5
0
        public void Verify_Deactivate_ByKey_ANonExistingEntity_Should_ThrowAnInvalidOperationException()
        {
            // Arrange
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();

            mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny <string>())).Returns(() => null);
            var mockVolumeLocationsMapper = new Mock <IVolumeLocationMapper>();

            mockVolumeLocationsMapper.Setup(m => m.AreEqual(It.IsAny <IVolumeLocationModel>(), It.IsAny <IVolumeLocation>())).Returns(() => true);
            var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, mockVolumeLocationsMapper.Object);

            // Act/Assert
            Assert.Throws <System.InvalidOperationException>(() => businessWorkflow.Deactivate("TEST"));
        }
コード例 #6
0
        public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
        {
            // Arrange
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();

            mockVolumeLocationsRepository.Setup(m => m.Search(It.IsAny <IVolumeLocationSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new Mock <List <IVolumeLocation> >().Object);
            var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
            var model            = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel();

            // Act
            try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
            // Assert
            mockVolumeLocationsRepository.Verify(m => m.Add(It.IsAny <IVolumeLocation>()), Times.Once);
        }
コード例 #7
0
        public void Verify_Search_AsListing_Should_ReturnAListOfVolumeLocationsWithDataMatchingSearchParametersWithListingMapping()
        {
            // Arrange
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
            var searchModel = new Mock <IVolumeLocationSearchModel>();
            var mockVolumeLocationsMapper = new Mock <IVolumeLocationMapper>();

            mockVolumeLocationsMapper.Setup(m => m.AreEqual(It.IsAny <IVolumeLocationModel>(), It.IsAny <IVolumeLocation>())).Returns(() => true);
            var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, mockVolumeLocationsMapper.Object);

            // Act
            businessWorkflow.Search(searchModel.Object, true);
            // Assert
            mockVolumeLocationsRepository.Verify(m => m.Search(It.IsAny <IVolumeLocationSearchModel>(), It.IsAny <bool>()), Times.Once);
        }
 public void Verify_Create_WithDuplicateData_Should_NotAddAndReturnOriginal()
 {
     // Arrange
     var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
     var mockVolumeLocation = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocation(1);
     mockVolumeLocationsRepository.Setup(m => m.Search(It.IsAny<IVolumeLocationSearchModel>(), It.IsAny<bool>()))
         .Returns(() => new List<IVolumeLocation> { mockVolumeLocation.Object } );
     mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => mockVolumeLocation.Object);
     var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
     var model = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel();
     // 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
     mockVolumeLocationsRepository.Verify(m => m.Add(It.IsAny<IVolumeLocation>()), Times.Never);
 }
コード例 #9
0
        public void Verify_Update_Should_SetUpdatedDate()
        {
            // Arrange
            var mockVolumeLocation            = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocation(1);
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();

            mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockVolumeLocation.Object);
            var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
            var expectedName     = "Stephen King (2)";
            var model            = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel(1, expectedName);

            // Act
            businessWorkflow.Update(model.Object);
            // Assert
            mockVolumeLocation.Verify(m => m.UpdatedDate, Times.Once);
        }
コード例 #10
0
        public void Verify_Remove_ByKey_Should_DeactivateTheObjectAndReturnTrue()
        {
            // Arrange
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
            var mockVolumeLocationsMapper     = new Mock <IVolumeLocationMapper>();

            mockVolumeLocationsMapper.Setup(m => m.AreEqual(It.IsAny <IVolumeLocationModel>(), It.IsAny <IVolumeLocation>())).Returns(() => true);
            var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, mockVolumeLocationsMapper.Object);

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

            // Assert
            mockVolumeLocationsRepository.Verify(m => m.Remove(It.IsAny <IVolumeLocation>()), Times.Once);
            Assert.Equal(true, result);
        }
コード例 #11
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocation(1);
            var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();

            mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow        = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
            var model                   = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel(1);
            IVolumeLocationModel 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 mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
            var mockVolumeLocation            = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocation(1);

            mockVolumeLocationsRepository.Setup(m => m.Search(It.IsAny <IVolumeLocationSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new List <IVolumeLocation> {
                mockVolumeLocation.Object
            });
            mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockVolumeLocation.Object);
            var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
            var model            = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel();

            // 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
            mockVolumeLocationsRepository.Verify(m => m.Add(It.IsAny <IVolumeLocation>()), Times.Never);
        }
 public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
 {
     // Arrange
     var entity = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocation(1);
     var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
     mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => entity.Object);
     var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
     var model = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel(1);
     IVolumeLocationModel 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);
 }
 public void Verify_Update_Should_SetUpdatedDate()
 {
     // Arrange
     var mockVolumeLocation = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocation(1);
     var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
     mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => mockVolumeLocation.Object);
     var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
     var expectedName = "Stephen King (2)";
     var model = VolumeLocationsMockingSetup.DoMockingSetupForVolumeLocationModel(1, expectedName);
     // Act
     businessWorkflow.Update(model.Object);
     // Assert
     mockVolumeLocation.Verify(m => m.UpdatedDate, Times.Once);
 }
 public void Verify_Search_Should_ReturnAListOfVolumeLocations()
 {
     // Arrange
     var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
     var searchModel = new Mock<IVolumeLocationSearchModel>();
     var mockVolumeLocationsMapper = new Mock<IVolumeLocationMapper>();
     mockVolumeLocationsMapper.Setup(m => m.AreEqual(It.IsAny<IVolumeLocationModel>(), It.IsAny<IVolumeLocation>())).Returns(() => true);
     var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, mockVolumeLocationsMapper.Object);
     // Act
     businessWorkflow.Search(searchModel.Object);
     // Assert
     mockVolumeLocationsRepository.Verify(m => m.Search(It.IsAny<IVolumeLocationSearchModel>(), It.IsAny<bool>()), Times.Once);
 }
 public void Verify_Remove_ANonExistingEntity_Should_ReturnTrue()
 {
     // Arrange
     var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
     mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny<string>())).Returns(() => null);
     var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
     // Act
     var result = businessWorkflow.Remove("DOESNT-EXIST");
     // Assert
     Assert.Equal(true, result);
 }
 public void Verify_Deactivate_ByID_Should_DeactivateTheObjectAndReturnTrue()
 {
     // Arrange
     var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
     var mockVolumeLocationsMapper = new Mock<IVolumeLocationMapper>();
     mockVolumeLocationsMapper.Setup(m => m.AreEqual(It.IsAny<IVolumeLocationModel>(), It.IsAny<IVolumeLocation>())).Returns(() => true);
     var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, mockVolumeLocationsMapper.Object);
     mockVolumeLocationsRepository.Setup(m => m.Get(It.IsAny<int>())).Returns(() => new Mock<IVolumeLocation>().Object);
     mockVolumeLocationsRepository.Setup(m => m.SaveChanges()).Returns(() => true);
     // Act
     var result = businessWorkflow.Deactivate(1);
     // Assert
     mockVolumeLocationsRepository.Verify(m => m.Deactivate(It.IsAny<IVolumeLocation>()), Times.Once);
     Assert.Equal(true, result);
 }
 public void Verify_Get_ByKey_Should_ReturnTheCorrectObject()
 {
     // Arrange
     var mockVolumeLocationsRepository = VolumeLocationsMockingSetup.DoMockingSetupForRepository();
     var businessWorkflow = new VolumeLocationsBusinessWorkflow(mockVolumeLocationsRepository.Object, new VolumeLocationMapper());
     // Act
     var person = businessWorkflow.Get("KING-STEPHEN");
     // Assert
     Assert.IsType<VolumeLocationModel>(person);
 }