public async void Email_Update_length() { Mock <IStudentRepository> studentRepository = new Mock <IStudentRepository>(); studentRepository.Setup(x => x.Get(It.IsAny <int>())).Returns(Task.FromResult(new Student())); var validator = new ApiStudentServerRequestModelValidator(studentRepository.Object); await validator.ValidateUpdateAsync(default(int), new ApiStudentServerRequestModel()); validator.ShouldHaveValidationErrorFor(x => x.Email, new string('A', 129)); }
public async void Email_Create_null() { Mock <IStudentRepository> studentRepository = new Mock <IStudentRepository>(); studentRepository.Setup(x => x.Get(It.IsAny <int>())).Returns(Task.FromResult(new Student())); var validator = new ApiStudentServerRequestModelValidator(studentRepository.Object); await validator.ValidateCreateAsync(new ApiStudentServerRequestModel()); validator.ShouldHaveValidationErrorFor(x => x.Email, null as string); }
public async void FamilyId_Create_Invalid_Reference() { Mock <IStudentRepository> studentRepository = new Mock <IStudentRepository>(); studentRepository.Setup(x => x.FamilyByFamilyId(It.IsAny <int>())).Returns(Task.FromResult <Family>(null)); var validator = new ApiStudentServerRequestModelValidator(studentRepository.Object); await validator.ValidateCreateAsync(new ApiStudentServerRequestModel()); validator.ShouldHaveValidationErrorFor(x => x.FamilyId, 1); }
public async void UserId_Update_Invalid_Reference() { Mock <IStudentRepository> studentRepository = new Mock <IStudentRepository>(); studentRepository.Setup(x => x.UserByUserId(It.IsAny <int>())).Returns(Task.FromResult <User>(null)); var validator = new ApiStudentServerRequestModelValidator(studentRepository.Object); await validator.ValidateUpdateAsync(default(int), new ApiStudentServerRequestModel()); validator.ShouldHaveValidationErrorFor(x => x.UserId, 1); }