Skip to content

Commit

Permalink
Rename oauthClient to oauth in AbstractKeycloakTst
Browse files Browse the repository at this point in the history
  • Loading branch information
ssilvert committed Apr 20, 2016
1 parent b6ed681 commit 9007f8b
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 45 deletions.
Expand Up @@ -95,7 +95,7 @@ public abstract class AbstractKeycloakTest {
protected Keycloak adminClient; protected Keycloak adminClient;


@ArquillianResource @ArquillianResource
protected OAuthClient oauthClient; protected OAuthClient oauth;


protected DeleteMeOAuthClient deleteMeOAuthClient; protected DeleteMeOAuthClient deleteMeOAuthClient;


Expand Down Expand Up @@ -151,8 +151,8 @@ public void beforeAbstractKeycloakTest() throws Exception {


importTestRealms(); importTestRealms();


oauthClient.setAdminClient(adminClient); oauth.setAdminClient(adminClient);
oauthClient.setDriver(driver); oauth.setDriver(driver);
} }


@After @After
Expand Down
Expand Up @@ -102,12 +102,12 @@ public void getClientDescription() {


@Test @Test
public void getClientSessions() throws Exception { public void getClientSessions() throws Exception {
OAuthClient.AccessTokenResponse response = oauthClient.doGrantAccessTokenRequest("password", "test-user@localhost", "password"); OAuthClient.AccessTokenResponse response = oauth.doGrantAccessTokenRequest("password", "test-user@localhost", "password");
assertEquals(200, response.getStatusCode()); assertEquals(200, response.getStatusCode());


OAuthClient.AuthorizationCodeResponse codeResponse = oauthClient.doLogin("test-user@localhost", "password"); OAuthClient.AuthorizationCodeResponse codeResponse = oauth.doLogin("test-user@localhost", "password");


OAuthClient.AccessTokenResponse response2 = oauthClient.doAccessTokenRequest(codeResponse.getCode(), "password"); OAuthClient.AccessTokenResponse response2 = oauth.doAccessTokenRequest(codeResponse.getCode(), "password");
assertEquals(200, response2.getStatusCode()); assertEquals(200, response2.getStatusCode());


ClientResource app = ApiUtil.findClientByClientId(adminClient.realm("test"), "test-app"); ClientResource app = ApiUtil.findClientByClientId(adminClient.realm("test"), "test-app");
Expand Down
Expand Up @@ -88,7 +88,7 @@ private String createAdminToken(String username, String realm) {
try { try {
String password = username.equals("admin") ? "admin" : "password"; String password = username.equals("admin") ? "admin" : "password";
String clientId = realm.equals("master") ? Constants.ADMIN_CLI_CLIENT_ID : "myclient"; String clientId = realm.equals("master") ? Constants.ADMIN_CLI_CLIENT_ID : "myclient";
AccessTokenResponse tokenResponse = oauthClient.doGrantAccessTokenRequest(realm, username, password, null, clientId, null); AccessTokenResponse tokenResponse = oauth.doGrantAccessTokenRequest(realm, username, password, null, clientId, null);
if (tokenResponse.getStatusCode() != 200) { if (tokenResponse.getStatusCode() != 200) {
throw new RuntimeException("Failed to get token: " + tokenResponse.getErrorDescription()); throw new RuntimeException("Failed to get token: " + tokenResponse.getErrorDescription());
} }
Expand Down
Expand Up @@ -108,10 +108,10 @@ public void setUpAssertEvents() throws Exception {


@Test @Test
public void testConfidentialClientCredentialsBasicAuthentication() throws Exception { public void testConfidentialClientCredentialsBasicAuthentication() throws Exception {
oauthClient.doLogin("test-user@localhost", "password"); oauth.doLogin("test-user@localhost", "password");
String code = oauthClient.getCurrentQuery().get(OAuth2Constants.CODE); String code = oauth.getCurrentQuery().get(OAuth2Constants.CODE);
AccessTokenResponse accessTokenResponse = oauthClient.doAccessTokenRequest(code, "password"); AccessTokenResponse accessTokenResponse = oauth.doAccessTokenRequest(code, "password");
String tokenResponse = oauthClient.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken()); String tokenResponse = oauth.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken());
ObjectMapper objectMapper = new ObjectMapper(); ObjectMapper objectMapper = new ObjectMapper();
JsonNode jsonNode = objectMapper.readTree(tokenResponse); JsonNode jsonNode = objectMapper.readTree(tokenResponse);


Expand Down Expand Up @@ -144,10 +144,10 @@ public void testConfidentialClientCredentialsBasicAuthentication() throws Except


@Test @Test
public void testInvalidClientCredentials() throws Exception { public void testInvalidClientCredentials() throws Exception {
oauthClient.doLogin("test-user@localhost", "password"); oauth.doLogin("test-user@localhost", "password");
String code = oauthClient.getCurrentQuery().get(OAuth2Constants.CODE); String code = oauth.getCurrentQuery().get(OAuth2Constants.CODE);
AccessTokenResponse accessTokenResponse = oauthClient.doAccessTokenRequest(code, "password"); AccessTokenResponse accessTokenResponse = oauth.doAccessTokenRequest(code, "password");
String tokenResponse = oauthClient.introspectAccessTokenWithClientCredential("confidential-cli", "bad_credential", accessTokenResponse.getAccessToken()); String tokenResponse = oauth.introspectAccessTokenWithClientCredential("confidential-cli", "bad_credential", accessTokenResponse.getAccessToken());


assertEquals("{\"error_description\":\"Authentication failed.\",\"error\":\"invalid_request\"}", tokenResponse); assertEquals("{\"error_description\":\"Authentication failed.\",\"error\":\"invalid_request\"}", tokenResponse);


Expand All @@ -156,12 +156,12 @@ public void testInvalidClientCredentials() throws Exception {


@Test @Test
public void testIntrospectRefreshToken() throws Exception { public void testIntrospectRefreshToken() throws Exception {
oauthClient.doLogin("test-user@localhost", "password"); oauth.doLogin("test-user@localhost", "password");
String code = oauthClient.getCurrentQuery().get(OAuth2Constants.CODE); String code = oauth.getCurrentQuery().get(OAuth2Constants.CODE);
EventRepresentation loginEvent = events.expectLogin().assertEvent(); EventRepresentation loginEvent = events.expectLogin().assertEvent();
String sessionId = loginEvent.getSessionId(); String sessionId = loginEvent.getSessionId();
AccessTokenResponse accessTokenResponse = oauthClient.doAccessTokenRequest(code, "password"); AccessTokenResponse accessTokenResponse = oauth.doAccessTokenRequest(code, "password");
String tokenResponse = oauthClient.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken()); String tokenResponse = oauth.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken());
ObjectMapper objectMapper = new ObjectMapper(); ObjectMapper objectMapper = new ObjectMapper();
JsonNode jsonNode = objectMapper.readTree(tokenResponse); JsonNode jsonNode = objectMapper.readTree(tokenResponse);


Expand Down Expand Up @@ -192,11 +192,11 @@ public void testIntrospectRefreshToken() throws Exception {


@Test @Test
public void testPublicClientCredentialsNotAllowed() throws Exception { public void testPublicClientCredentialsNotAllowed() throws Exception {
oauthClient.doLogin("test-user@localhost", "password"); oauth.doLogin("test-user@localhost", "password");


String code = oauthClient.getCurrentQuery().get(OAuth2Constants.CODE); String code = oauth.getCurrentQuery().get(OAuth2Constants.CODE);
AccessTokenResponse accessTokenResponse = oauthClient.doAccessTokenRequest(code, "password"); AccessTokenResponse accessTokenResponse = oauth.doAccessTokenRequest(code, "password");
String tokenResponse = oauthClient.introspectAccessTokenWithClientCredential("public-cli", "it_doesnt_matter", accessTokenResponse.getAccessToken()); String tokenResponse = oauth.introspectAccessTokenWithClientCredential("public-cli", "it_doesnt_matter", accessTokenResponse.getAccessToken());


assertEquals("{\"error_description\":\"Client not allowed.\",\"error\":\"invalid_request\"}", tokenResponse); assertEquals("{\"error_description\":\"Client not allowed.\",\"error\":\"invalid_request\"}", tokenResponse);


Expand All @@ -205,9 +205,9 @@ public void testPublicClientCredentialsNotAllowed() throws Exception {


@Test @Test
public void testInactiveAccessToken() throws Exception { public void testInactiveAccessToken() throws Exception {
oauthClient.doLogin("test-user@localhost", "password"); oauth.doLogin("test-user@localhost", "password");
String inactiveAccessToken = "eyJhbGciOiJSUzI1NiJ9.eyJub25jZSI6IjczMGZjNjQ1LTBlMDQtNDE3Yi04MDY0LTkyYWIyY2RjM2QwZSIsImp0aSI6ImU5ZGU1NjU2LWUzMjctNDkxNC1hNjBmLTI1MzJlYjBiNDk4OCIsImV4cCI6MTQ1MjI4MTAwMCwibmJmIjowLCJpYXQiOjE0NTIyODA3MDAsImlzcyI6Imh0dHA6Ly9sb2NhbGhvc3Q6ODA4MC9hdXRoL3JlYWxtcy9leGFtcGxlIiwiYXVkIjoianMtY29uc29sZSIsInN1YiI6IjFkNzQ0MDY5LWYyOTgtNGU3Yy1hNzNiLTU1YzlhZjgzYTY4NyIsInR5cCI6IkJlYXJlciIsImF6cCI6ImpzLWNvbnNvbGUiLCJzZXNzaW9uX3N0YXRlIjoiNzc2YTA0OTktODNjNC00MDhkLWE5YjctYTZiYzQ5YmQ3MThjIiwiY2xpZW50X3Nlc3Npb24iOiJjN2Y5ODczOC05MDhlLTQxOWYtYTdkNC1kODYxYjRhYTI3NjkiLCJhbGxvd2VkLW9yaWdpbnMiOltdLCJyZWFsbV9hY2Nlc3MiOnsicm9sZXMiOlsidXNlciJdfSwicmVzb3VyY2VfYWNjZXNzIjp7ImFjY291bnQiOnsicm9sZXMiOlsibWFuYWdlLWFjY291bnQiLCJ2aWV3LXByb2ZpbGUiXX19LCJuYW1lIjoiU2FtcGxlIFVzZXIiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJ1c2VyIiwiZ2l2ZW5fbmFtZSI6IlNhbXBsZSIsImZhbWlseV9uYW1lIjoiVXNlciIsImVtYWlsIjoic2FtcGxlLXVzZXJAZXhhbXBsZSJ9.YyPV74j9CqOG2Jmq692ZZpqycjNpUgtYVRfQJccS_FU84tGVXoKKsXKYeY2UJ1Y_bPiYG1I1J6JSXC8XqgQijCG7Nh7oK0yN74JbRN58HG75fvg6K9BjR6hgJ8mHT8qPrCux2svFucIMIZ180eoBoRvRstkidOhl_mtjT_i31fU"; String inactiveAccessToken = "eyJhbGciOiJSUzI1NiJ9.eyJub25jZSI6IjczMGZjNjQ1LTBlMDQtNDE3Yi04MDY0LTkyYWIyY2RjM2QwZSIsImp0aSI6ImU5ZGU1NjU2LWUzMjctNDkxNC1hNjBmLTI1MzJlYjBiNDk4OCIsImV4cCI6MTQ1MjI4MTAwMCwibmJmIjowLCJpYXQiOjE0NTIyODA3MDAsImlzcyI6Imh0dHA6Ly9sb2NhbGhvc3Q6ODA4MC9hdXRoL3JlYWxtcy9leGFtcGxlIiwiYXVkIjoianMtY29uc29sZSIsInN1YiI6IjFkNzQ0MDY5LWYyOTgtNGU3Yy1hNzNiLTU1YzlhZjgzYTY4NyIsInR5cCI6IkJlYXJlciIsImF6cCI6ImpzLWNvbnNvbGUiLCJzZXNzaW9uX3N0YXRlIjoiNzc2YTA0OTktODNjNC00MDhkLWE5YjctYTZiYzQ5YmQ3MThjIiwiY2xpZW50X3Nlc3Npb24iOiJjN2Y5ODczOC05MDhlLTQxOWYtYTdkNC1kODYxYjRhYTI3NjkiLCJhbGxvd2VkLW9yaWdpbnMiOltdLCJyZWFsbV9hY2Nlc3MiOnsicm9sZXMiOlsidXNlciJdfSwicmVzb3VyY2VfYWNjZXNzIjp7ImFjY291bnQiOnsicm9sZXMiOlsibWFuYWdlLWFjY291bnQiLCJ2aWV3LXByb2ZpbGUiXX19LCJuYW1lIjoiU2FtcGxlIFVzZXIiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJ1c2VyIiwiZ2l2ZW5fbmFtZSI6IlNhbXBsZSIsImZhbWlseV9uYW1lIjoiVXNlciIsImVtYWlsIjoic2FtcGxlLXVzZXJAZXhhbXBsZSJ9.YyPV74j9CqOG2Jmq692ZZpqycjNpUgtYVRfQJccS_FU84tGVXoKKsXKYeY2UJ1Y_bPiYG1I1J6JSXC8XqgQijCG7Nh7oK0yN74JbRN58HG75fvg6K9BjR6hgJ8mHT8qPrCux2svFucIMIZ180eoBoRvRstkidOhl_mtjT_i31fU";
String tokenResponse = oauthClient.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", inactiveAccessToken); String tokenResponse = oauth.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", inactiveAccessToken);
ObjectMapper objectMapper = new ObjectMapper(); ObjectMapper objectMapper = new ObjectMapper();
JsonNode jsonNode = objectMapper.readTree(tokenResponse); JsonNode jsonNode = objectMapper.readTree(tokenResponse);


Expand All @@ -225,11 +225,11 @@ public void testInactiveAccessToken() throws Exception {


@Test @Test
public void testIntrospectAccessToken() throws Exception { public void testIntrospectAccessToken() throws Exception {
oauthClient.doLogin("test-user@localhost", "password"); oauth.doLogin("test-user@localhost", "password");
String code = oauthClient.getCurrentQuery().get(OAuth2Constants.CODE); String code = oauth.getCurrentQuery().get(OAuth2Constants.CODE);
EventRepresentation loginEvent = events.expectLogin().assertEvent(); EventRepresentation loginEvent = events.expectLogin().assertEvent();
AccessTokenResponse accessTokenResponse = oauthClient.doAccessTokenRequest(code, "password"); AccessTokenResponse accessTokenResponse = oauth.doAccessTokenRequest(code, "password");
String tokenResponse = oauthClient.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken()); String tokenResponse = oauth.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken());
TokenMetadataRepresentation rep = JsonSerialization.readValue(tokenResponse, TokenMetadataRepresentation.class); TokenMetadataRepresentation rep = JsonSerialization.readValue(tokenResponse, TokenMetadataRepresentation.class);


assertTrue(rep.isActive()); assertTrue(rep.isActive());
Expand All @@ -242,12 +242,12 @@ public void testIntrospectAccessToken() throws Exception {


@Test @Test
public void testIntrospectAccessTokenSessionInvalid() throws Exception { public void testIntrospectAccessTokenSessionInvalid() throws Exception {
oauthClient.doLogin("test-user@localhost", "password"); oauth.doLogin("test-user@localhost", "password");
String code = oauthClient.getCurrentQuery().get(OAuth2Constants.CODE); String code = oauth.getCurrentQuery().get(OAuth2Constants.CODE);
AccessTokenResponse accessTokenResponse = oauthClient.doAccessTokenRequest(code, "password"); AccessTokenResponse accessTokenResponse = oauth.doAccessTokenRequest(code, "password");
oauthClient.doLogout(accessTokenResponse.getRefreshToken(), "password"); oauth.doLogout(accessTokenResponse.getRefreshToken(), "password");


String tokenResponse = oauthClient.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken()); String tokenResponse = oauth.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken());
TokenMetadataRepresentation rep = JsonSerialization.readValue(tokenResponse, TokenMetadataRepresentation.class); TokenMetadataRepresentation rep = JsonSerialization.readValue(tokenResponse, TokenMetadataRepresentation.class);


assertFalse(rep.isActive()); assertFalse(rep.isActive());
Expand All @@ -260,18 +260,18 @@ public void testIntrospectAccessTokenSessionInvalid() throws Exception {


@Test @Test
public void testIntrospectAccessTokenUserDisabled() throws Exception { public void testIntrospectAccessTokenUserDisabled() throws Exception {
oauthClient.doLogin("test-user@localhost", "password"); oauth.doLogin("test-user@localhost", "password");
String code = oauthClient.getCurrentQuery().get(OAuth2Constants.CODE); String code = oauth.getCurrentQuery().get(OAuth2Constants.CODE);
AccessTokenResponse accessTokenResponse = oauthClient.doAccessTokenRequest(code, "password"); AccessTokenResponse accessTokenResponse = oauth.doAccessTokenRequest(code, "password");


EventRepresentation loginEvent = events.expectLogin().assertEvent(); EventRepresentation loginEvent = events.expectLogin().assertEvent();


UserRepresentation userRep = new UserRepresentation(); UserRepresentation userRep = new UserRepresentation();
try { try {
userRep.setEnabled(false); userRep.setEnabled(false);
adminClient.realm(oauthClient.getRealm()).users().get(loginEvent.getUserId()).update(userRep); adminClient.realm(oauth.getRealm()).users().get(loginEvent.getUserId()).update(userRep);


String tokenResponse = oauthClient.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken()); String tokenResponse = oauth.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken());
TokenMetadataRepresentation rep = JsonSerialization.readValue(tokenResponse, TokenMetadataRepresentation.class); TokenMetadataRepresentation rep = JsonSerialization.readValue(tokenResponse, TokenMetadataRepresentation.class);


assertFalse(rep.isActive()); assertFalse(rep.isActive());
Expand All @@ -282,20 +282,20 @@ public void testIntrospectAccessTokenUserDisabled() throws Exception {
events.clear(); events.clear();
} finally { } finally {
userRep.setEnabled(true); userRep.setEnabled(true);
adminClient.realm(oauthClient.getRealm()).users().get(loginEvent.getUserId()).update(userRep); adminClient.realm(oauth.getRealm()).users().get(loginEvent.getUserId()).update(userRep);
} }
} }


@Test @Test
public void testIntrospectAccessTokenExpired() throws Exception { public void testIntrospectAccessTokenExpired() throws Exception {
oauthClient.doLogin("test-user@localhost", "password"); oauth.doLogin("test-user@localhost", "password");
String code = oauthClient.getCurrentQuery().get(OAuth2Constants.CODE); String code = oauth.getCurrentQuery().get(OAuth2Constants.CODE);
AccessTokenResponse accessTokenResponse = oauthClient.doAccessTokenRequest(code, "password"); AccessTokenResponse accessTokenResponse = oauth.doAccessTokenRequest(code, "password");


try { try {
Time.setOffset(adminClient.realm(oauthClient.getRealm()).toRepresentation().getAccessTokenLifespan() + 1); Time.setOffset(adminClient.realm(oauth.getRealm()).toRepresentation().getAccessTokenLifespan() + 1);


String tokenResponse = oauthClient.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken()); String tokenResponse = oauth.introspectAccessTokenWithClientCredential("confidential-cli", "secret1", accessTokenResponse.getAccessToken());
TokenMetadataRepresentation rep = JsonSerialization.readValue(tokenResponse, TokenMetadataRepresentation.class); TokenMetadataRepresentation rep = JsonSerialization.readValue(tokenResponse, TokenMetadataRepresentation.class);


assertFalse(rep.isActive()); assertFalse(rep.isActive());
Expand Down

0 comments on commit 9007f8b

Please sign in to comment.