public void Verify_Get_ByID_Should_ReturnTheCorrectObjectType()
        {
            // Arrange
            var mockLocationAppearedInIssuesRepository = LocationAppearedInIssuesMockingSetup.DoMockingSetupForRepository();
            var businessWorkflow = new LocationAppearedInIssuesBusinessWorkflow(mockLocationAppearedInIssuesRepository.Object, new LocationAppearedInIssueMapper());
            // Act
            var person = businessWorkflow.Get(1);

            // Assert
            Assert.IsType <LocationAppearedInIssueModel>(person);
        }
        public void Verify_Remove_ANonExistingEntity_Should_ReturnTrue()
        {
            // Arrange
            var mockLocationAppearedInIssuesRepository = LocationAppearedInIssuesMockingSetup.DoMockingSetupForRepository();

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

            // Assert
            Assert.Equal(true, result);
        }
        public void Verify_Deactivate_ByKey_ANonExistingEntity_Should_ThrowAnInvalidOperationException()
        {
            // Arrange
            var mockLocationAppearedInIssuesRepository = LocationAppearedInIssuesMockingSetup.DoMockingSetupForRepository();

            mockLocationAppearedInIssuesRepository.Setup(m => m.Get(It.IsAny <string>())).Returns(() => null);
            var mockLocationAppearedInIssuesMapper = new Mock <ILocationAppearedInIssueMapper>();

            mockLocationAppearedInIssuesMapper.Setup(m => m.AreEqual(It.IsAny <ILocationAppearedInIssueModel>(), It.IsAny <ILocationAppearedInIssue>())).Returns(() => true);
            var businessWorkflow = new LocationAppearedInIssuesBusinessWorkflow(mockLocationAppearedInIssuesRepository.Object, mockLocationAppearedInIssuesMapper.Object);

            // Act/Assert
            Assert.Throws <System.InvalidOperationException>(() => businessWorkflow.Deactivate("TEST"));
        }
        public void Verify_Create_Should_AddANewEntityObjectToTheDatabase()
        {
            // Arrange
            var mockLocationAppearedInIssuesRepository = LocationAppearedInIssuesMockingSetup.DoMockingSetupForRepository();

            mockLocationAppearedInIssuesRepository.Setup(m => m.Search(It.IsAny <ILocationAppearedInIssueSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new Mock <List <ILocationAppearedInIssue> >().Object);
            var businessWorkflow = new LocationAppearedInIssuesBusinessWorkflow(mockLocationAppearedInIssuesRepository.Object, new LocationAppearedInIssueMapper());
            var model            = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssueModel();

            // Act
            try { businessWorkflow.Create(model.Object); } catch { /* Ignored */ }
            // Assert
            mockLocationAppearedInIssuesRepository.Verify(m => m.Add(It.IsAny <ILocationAppearedInIssue>()), Times.Once);
        }
        public void Verify_Search_AsListing_Should_ReturnAListOfLocationAppearedInIssuesWithDataMatchingSearchParametersWithListingMapping()
        {
            // Arrange
            var mockLocationAppearedInIssuesRepository = LocationAppearedInIssuesMockingSetup.DoMockingSetupForRepository();
            var searchModel = new Mock <ILocationAppearedInIssueSearchModel>();
            var mockLocationAppearedInIssuesMapper = new Mock <ILocationAppearedInIssueMapper>();

            mockLocationAppearedInIssuesMapper.Setup(m => m.AreEqual(It.IsAny <ILocationAppearedInIssueModel>(), It.IsAny <ILocationAppearedInIssue>())).Returns(() => true);
            var businessWorkflow = new LocationAppearedInIssuesBusinessWorkflow(mockLocationAppearedInIssuesRepository.Object, mockLocationAppearedInIssuesMapper.Object);

            // Act
            businessWorkflow.Search(searchModel.Object, true);
            // Assert
            mockLocationAppearedInIssuesRepository.Verify(m => m.Search(It.IsAny <ILocationAppearedInIssueSearchModel>(), It.IsAny <bool>()), Times.Once);
        }
        public void Verify_Update_Should_SetUpdatedDate()
        {
            // Arrange
            var mockLocationAppearedInIssue            = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssue(1);
            var mockLocationAppearedInIssuesRepository = LocationAppearedInIssuesMockingSetup.DoMockingSetupForRepository();

            mockLocationAppearedInIssuesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockLocationAppearedInIssue.Object);
            var businessWorkflow = new LocationAppearedInIssuesBusinessWorkflow(mockLocationAppearedInIssuesRepository.Object, new LocationAppearedInIssueMapper());
            var expectedName     = "Stephen King (2)";
            var model            = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssueModel(1, expectedName);

            // Act
            businessWorkflow.Update(model.Object);
            // Assert
            mockLocationAppearedInIssue.Verify(m => m.UpdatedDate, Times.Once);
        }
        public void Verify_Remove_ByKey_Should_DeactivateTheObjectAndReturnTrue()
        {
            // Arrange
            var mockLocationAppearedInIssuesRepository = LocationAppearedInIssuesMockingSetup.DoMockingSetupForRepository();
            var mockLocationAppearedInIssuesMapper     = new Mock <ILocationAppearedInIssueMapper>();

            mockLocationAppearedInIssuesMapper.Setup(m => m.AreEqual(It.IsAny <ILocationAppearedInIssueModel>(), It.IsAny <ILocationAppearedInIssue>())).Returns(() => true);
            var businessWorkflow = new LocationAppearedInIssuesBusinessWorkflow(mockLocationAppearedInIssuesRepository.Object, mockLocationAppearedInIssuesMapper.Object);

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

            // Assert
            mockLocationAppearedInIssuesRepository.Verify(m => m.Remove(It.IsAny <ILocationAppearedInIssue>()), Times.Once);
            Assert.Equal(true, result);
        }
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssue(1);
            var mockLocationAppearedInIssuesRepository = LocationAppearedInIssuesMockingSetup.DoMockingSetupForRepository();

            mockLocationAppearedInIssuesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow = new LocationAppearedInIssuesBusinessWorkflow(mockLocationAppearedInIssuesRepository.Object, new LocationAppearedInIssueMapper());
            var model            = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssueModel(1);
            ILocationAppearedInIssueModel 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_Create_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var mockLocationAppearedInIssuesRepository = LocationAppearedInIssuesMockingSetup.DoMockingSetupForRepository();
            var mockLocationAppearedInIssue            = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssue(1);

            mockLocationAppearedInIssuesRepository.Setup(m => m.Search(It.IsAny <ILocationAppearedInIssueSearchModel>(), It.IsAny <bool>()))
            .Returns(() => new List <ILocationAppearedInIssue> {
                mockLocationAppearedInIssue.Object
            });
            mockLocationAppearedInIssuesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => mockLocationAppearedInIssue.Object);
            var businessWorkflow = new LocationAppearedInIssuesBusinessWorkflow(mockLocationAppearedInIssuesRepository.Object, new LocationAppearedInIssueMapper());
            var model            = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssueModel();

            // 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
            mockLocationAppearedInIssuesRepository.Verify(m => m.Add(It.IsAny <ILocationAppearedInIssue>()), Times.Never);
        }