Ejemplo n.º 1
0
        public async void FamilyId_Create_Valid_Reference()
        {
            Mock <IStudentRepository> studentRepository = new Mock <IStudentRepository>();

            studentRepository.Setup(x => x.FamilyByFamilyId(It.IsAny <int>())).Returns(Task.FromResult <Family>(new Family()));

            var validator = new ApiStudentServerRequestModelValidator(studentRepository.Object);
            await validator.ValidateCreateAsync(new ApiStudentServerRequestModel());

            validator.ShouldNotHaveValidationErrorFor(x => x.FamilyId, 1);
        }
Ejemplo n.º 2
0
        public async void UserId_Update_Valid_Reference()
        {
            Mock <IStudentRepository> studentRepository = new Mock <IStudentRepository>();

            studentRepository.Setup(x => x.UserByUserId(It.IsAny <int>())).Returns(Task.FromResult <User>(new User()));

            var validator = new ApiStudentServerRequestModelValidator(studentRepository.Object);
            await validator.ValidateUpdateAsync(default(int), new ApiStudentServerRequestModel());

            validator.ShouldNotHaveValidationErrorFor(x => x.UserId, 1);
        }
Ejemplo n.º 3
0
        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));
        }
Ejemplo n.º 4
0
        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);
        }