예제 #1
0
        public async void Get_null_record()
        {
            var mock = new ServiceMockFacade <IBusinessEntityContactRepository>();

            mock.RepositoryMock.Setup(x => x.Get(It.IsAny <int>())).Returns(Task.FromResult <BusinessEntityContact>(null));
            var service = new BusinessEntityContactService(mock.LoggerMock.Object,
                                                           mock.RepositoryMock.Object,
                                                           mock.ModelValidatorMockFactory.BusinessEntityContactModelValidatorMock.Object,
                                                           mock.BOLMapperMockFactory.BOLBusinessEntityContactMapperMock,
                                                           mock.DALMapperMockFactory.DALBusinessEntityContactMapperMock);

            ApiBusinessEntityContactResponseModel response = await service.Get(default(int));

            response.Should().BeNull();
            mock.RepositoryMock.Verify(x => x.Get(It.IsAny <int>()));
        }
예제 #2
0
        public async void ByPersonID_Not_Exists()
        {
            var mock = new ServiceMockFacade <IBusinessEntityContactRepository>();

            mock.RepositoryMock.Setup(x => x.ByPersonID(It.IsAny <int>(), It.IsAny <int>(), It.IsAny <int>())).Returns(Task.FromResult <List <BusinessEntityContact> >(new List <BusinessEntityContact>()));
            var service = new BusinessEntityContactService(mock.LoggerMock.Object,
                                                           mock.RepositoryMock.Object,
                                                           mock.ModelValidatorMockFactory.BusinessEntityContactModelValidatorMock.Object,
                                                           mock.BOLMapperMockFactory.BOLBusinessEntityContactMapperMock,
                                                           mock.DALMapperMockFactory.DALBusinessEntityContactMapperMock);

            List <ApiBusinessEntityContactResponseModel> response = await service.ByPersonID(default(int));

            response.Should().BeEmpty();
            mock.RepositoryMock.Verify(x => x.ByPersonID(It.IsAny <int>(), It.IsAny <int>(), It.IsAny <int>()));
        }
예제 #3
0
        public async void Create()
        {
            var mock  = new ServiceMockFacade <IBusinessEntityContactRepository>();
            var model = new ApiBusinessEntityContactRequestModel();

            mock.RepositoryMock.Setup(x => x.Create(It.IsAny <BusinessEntityContact>())).Returns(Task.FromResult(new BusinessEntityContact()));
            var service = new BusinessEntityContactService(mock.LoggerMock.Object,
                                                           mock.RepositoryMock.Object,
                                                           mock.ModelValidatorMockFactory.BusinessEntityContactModelValidatorMock.Object,
                                                           mock.BOLMapperMockFactory.BOLBusinessEntityContactMapperMock,
                                                           mock.DALMapperMockFactory.DALBusinessEntityContactMapperMock);

            CreateResponse <ApiBusinessEntityContactResponseModel> response = await service.Create(model);

            response.Should().NotBeNull();
            mock.ModelValidatorMockFactory.BusinessEntityContactModelValidatorMock.Verify(x => x.ValidateCreateAsync(It.IsAny <ApiBusinessEntityContactRequestModel>()));
            mock.RepositoryMock.Verify(x => x.Create(It.IsAny <BusinessEntityContact>()));
        }
예제 #4
0
        public async void All()
        {
            var mock    = new ServiceMockFacade <IBusinessEntityContactRepository>();
            var records = new List <BusinessEntityContact>();

            records.Add(new BusinessEntityContact());
            mock.RepositoryMock.Setup(x => x.All(It.IsAny <int>(), It.IsAny <int>())).Returns(Task.FromResult(records));
            var service = new BusinessEntityContactService(mock.LoggerMock.Object,
                                                           mock.RepositoryMock.Object,
                                                           mock.ModelValidatorMockFactory.BusinessEntityContactModelValidatorMock.Object,
                                                           mock.BOLMapperMockFactory.BOLBusinessEntityContactMapperMock,
                                                           mock.DALMapperMockFactory.DALBusinessEntityContactMapperMock);

            List <ApiBusinessEntityContactResponseModel> response = await service.All();

            response.Should().HaveCount(1);
            mock.RepositoryMock.Verify(x => x.All(It.IsAny <int>(), It.IsAny <int>()));
        }
예제 #5
0
        public async void Delete()
        {
            var mock  = new ServiceMockFacade <IBusinessEntityContactRepository>();
            var model = new ApiBusinessEntityContactRequestModel();

            mock.RepositoryMock.Setup(x => x.Delete(It.IsAny <int>())).Returns(Task.CompletedTask);
            var service = new BusinessEntityContactService(mock.LoggerMock.Object,
                                                           mock.RepositoryMock.Object,
                                                           mock.ModelValidatorMockFactory.BusinessEntityContactModelValidatorMock.Object,
                                                           mock.BOLMapperMockFactory.BOLBusinessEntityContactMapperMock,
                                                           mock.DALMapperMockFactory.DALBusinessEntityContactMapperMock);

            ActionResponse response = await service.Delete(default(int));

            response.Should().NotBeNull();
            mock.RepositoryMock.Verify(x => x.Delete(It.IsAny <int>()));
            mock.ModelValidatorMockFactory.BusinessEntityContactModelValidatorMock.Verify(x => x.ValidateDeleteAsync(It.IsAny <int>()));
        }