Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -133,20 +133,13 @@ public SutInfoDto.OutputFormat getPreferredOutputFormat() {

@Override
public List<AuthenticationDto> getInfoForAuthentication() {
//TODO after AuthUtils changes in the EvoMaster, this should be updated

return Arrays.asList(
// AuthUtils.getForDefaultSpringFormLogin("ROLE_ADMIN", "admin", "test", "/app/login"),
// AuthUtils.getForDefaultSpringFormLogin("ROLE_EMP", "selimhorri", "test", "/app/login"),
// AuthUtils.getForDefaultSpringFormLogin("ROLE_MGR", "soumayahajjem", "test", "/app/login")
AuthUtils.getForDefaultSpringFormLogin("ROLE_ADMIN", "admin", "test"),
AuthUtils.getForDefaultSpringFormLogin("ROLE_EMP", "selimhorri", "test"),
AuthUtils.getForDefaultSpringFormLogin("ROLE_MGR", "soumayahajjem", "test")
AuthUtils.getForDefaultSpringFormLogin("ROLE_ADMIN", "admin", "test", "/app/login"),
AuthUtils.getForDefaultSpringFormLogin("ROLE_EMP", "selimhorri", "test", "/app/login"),
AuthUtils.getForDefaultSpringFormLogin("ROLE_MGR", "soumayahajjem", "test", "/app/login")
);
}



@Override
public List<DbSpecification> getDbSpecifications() {
return dbSpecification;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,22 +206,15 @@ public SutInfoDto.OutputFormat getPreferredOutputFormat() {
return SutInfoDto.OutputFormat.JAVA_JUNIT_5;
}


@Override
public List<AuthenticationDto> getInfoForAuthentication() {
//TODO after AuthUtils changes in the EvoMaster, this should be updated
return Arrays.asList(
// AuthUtils.getForDefaultSpringFormLogin("ROLE_ADMIN", "admin", "test", "/app/login"),
// AuthUtils.getForDefaultSpringFormLogin("ROLE_EMP", "selimhorri", "test", "/app/login"),
// AuthUtils.getForDefaultSpringFormLogin("ROLE_MGR", "soumayahajjem", "test", "/app/login")
AuthUtils.getForDefaultSpringFormLogin("ROLE_ADMIN", "admin", "test"),
AuthUtils.getForDefaultSpringFormLogin("ROLE_EMP", "selimhorri", "test"),
AuthUtils.getForDefaultSpringFormLogin("ROLE_MGR", "soumayahajjem", "test")
AuthUtils.getForDefaultSpringFormLogin("ROLE_ADMIN", "admin", "test", "/app/login"),
AuthUtils.getForDefaultSpringFormLogin("ROLE_EMP", "selimhorri", "test", "/app/login"),
AuthUtils.getForDefaultSpringFormLogin("ROLE_MGR", "soumayahajjem", "test", "/app/login")
);
}



@Override
public List<DbSpecification> getDbSpecifications() {
return dbSpecification;
Expand Down