Cas update

This commit is contained in:
Filip Izydorczyk
2020-09-11 14:12:13 +02:00
parent 3deebe9248
commit c9f50c5b16
4 changed files with 59 additions and 3 deletions

View File

@ -1,5 +1,7 @@
package com.plannaplan.security;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.Ignore;
import org.junit.Test;
@ -14,8 +16,25 @@ public class CasValidatorTest {
try {
System.out.println(validator.validate());
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
assertTrue(false);
}
}
@Test
public void shouldNotValidateTicket() {
//you need to privide fresh ticket to make this test pass that's why it is marked as ignored
CasValidator validator = new CasValidator("http://localhost:3000",
"notticket");
try {
assertTrue(validator.validate().trim().equals(""));
}
catch (CasValidationExcepiton e){
assertTrue(true);
}
catch (Exception e) {
e.printStackTrace();
assertTrue(false);
}
}
}