12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System.Threading.Tasks;
- using Microsoft.EntityFrameworkCore;
- using Shouldly;
- using Xunit;
- using Abp.Application.Services.Dto;
- using YGNT.Exam.Users;
- using YGNT.Exam.Users.Dto;
- namespace YGNT.Exam.Tests.Users
- {
- public class UserAppService_Tests : ExamTestBase
- {
- private readonly IUserAppService _userAppService;
- public UserAppService_Tests()
- {
- _userAppService = Resolve<IUserAppService>();
- }
- [Fact]
- public async Task GetUsers_Test()
- {
- // Act
- var output = await _userAppService.GetAllAsync(new PagedUserResultRequestDto{MaxResultCount=20, SkipCount=0} );
- // Assert
- output.Items.Count.ShouldBeGreaterThan(0);
- }
- [Fact]
- public async Task CreateUser_Test()
- {
- // Act
- await _userAppService.CreateAsync(
- new CreateUserDto
- {
- EmailAddress = "john@volosoft.com",
- IsActive = true,
- Name = "John",
- Surname = "Nash",
- Password = "123qwe",
- UserName = "john.nash"
- });
- await UsingDbContextAsync(async context =>
- {
- var johnNashUser = await context.Users.FirstOrDefaultAsync(u => u.UserName == "john.nash");
- johnNashUser.ShouldNotBeNull();
- });
- }
- }
- }
|