public virtual async void TestDelete()
        {
            var builder = new WebHostBuilder()
                          .UseEnvironment("Production")
                          .UseStartup <TestStartup>();
            TestServer testServer = new TestServer(builder);
            var        client     = new ApiClient(testServer.CreateClient());

            client.SetBearerToken(JWTTestHelper.GenerateBearerToken());
            ApplicationDbContext context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;

            IEventTeacherService service = testServer.Host.Services.GetService(typeof(IEventTeacherService)) as IEventTeacherService;
            var model = new ApiEventTeacherServerRequestModel();

            model.SetProperties(1, 1);
            CreateResponse <ApiEventTeacherServerResponseModel> createdResponse = await service.Create(model);

            createdResponse.Success.Should().BeTrue();

            ActionResponse deleteResult = await client.EventTeacherDeleteAsync(2);

            deleteResult.Success.Should().BeTrue();
            ApiEventTeacherServerResponseModel verifyResponse = await service.Get(2);

            verifyResponse.Should().BeNull();
        }
Exemple #2
0
        public void MapServerRequestToResponse()
        {
            var mapper = new ApiEventTeacherServerModelMapper();
            var model  = new ApiEventTeacherServerRequestModel();

            model.SetProperties(1, 1);
            ApiEventTeacherServerResponseModel response = mapper.MapServerRequestToResponse(1, model);

            response.Should().NotBeNull();
            response.EventId.Should().Be(1);
            response.TeacherId.Should().Be(1);
        }
Exemple #3
0
        public async void Get_ShouldReturnNullBecauseRecordNotFound()
        {
            var mock = new ServiceMockFacade <IEventTeacherService, IEventTeacherRepository>();

            mock.RepositoryMock.Setup(x => x.Get(It.IsAny <int>())).Returns(Task.FromResult <EventTeacher>(null));
            var service = new EventTeacherService(mock.LoggerMock.Object,
                                                  mock.MediatorMock.Object,
                                                  mock.RepositoryMock.Object,
                                                  mock.ModelValidatorMockFactory.EventTeacherModelValidatorMock.Object,
                                                  mock.DALMapperMockFactory.DALEventTeacherMapperMock);

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

            response.Should().BeNull();
            mock.RepositoryMock.Verify(x => x.Get(It.IsAny <int>()));
        }