use of org.wso2.charon.core.client.SCIMClient in project product-is by wso2.
the class MasterSCIMInitiator method getResource.
protected Resource getResource(SCIMClient scimClient, String skim_url, String skimId) {
SCIMResponseHandler responseHandler = new SCIMResponseHandler();
responseHandler.setSCIMClient(scimClient);
// set the handler in wink client config
ClientConfig clientConfig = new ClientConfig();
clientConfig.handlers(new ClientHandler[] { responseHandler });
// create a wink rest client with the above config
RestClient restClient = new RestClient(clientConfig);
// create resource endpoint to access User resource
return restClient.resource(skim_url + "Users/" + skimId);
}
use of org.wso2.charon.core.client.SCIMClient in project product-is by wso2.
the class SCIMServiceProviderGroupTestCase method getGroup.
@Test(alwaysRun = true, description = "Get SCIM Group", dependsOnMethods = { "createGroupTest" })
@SetEnvironment(executionEnvironments = { ExecutionEnvironment.ALL })
public void getGroup() throws Exception {
SCIMResponseHandler responseHandler = new SCIMResponseHandler();
responseHandler.setSCIMClient(scimClient);
// set the handler in wink client config
ClientConfig clientConfig = new ClientConfig();
clientConfig.handlers(new ClientHandler[] { responseHandler });
// create a wink rest client with the above config
RestClient restClient = new RestClient(clientConfig);
BasicAuthInfo encodedBasicAuthInfo = SCIMUtils.getBasicAuthInfo(userInfo);
// create resource endpoint to access a known user resource.
Resource groupResource = restClient.resource(scim_url + "Groups/" + scimGroupId);
String response = groupResource.header(SCIMConstants.AUTHORIZATION_HEADER, encodedBasicAuthInfo.getAuthorizationHeader()).contentType(SCIMConstants.APPLICATION_JSON).accept(SCIMConstants.APPLICATION_JSON).get(String.class);
log.info(response.toString());
Object obj = JSONValue.parse(response);
Assert.assertTrue(((JSONObject) obj).get("id").toString().contains(scimGroupId));
}
use of org.wso2.charon.core.client.SCIMClient in project product-is by wso2.
the class SCIMServiceProviderGroupTestCase method filterGroup.
@Test(alwaysRun = true, description = "filter SCIM Groups", dependsOnMethods = { "listGroup" })
@SetEnvironment(executionEnvironments = { ExecutionEnvironment.ALL })
public void filterGroup() throws Exception {
SCIMResponseHandler responseHandler = new SCIMResponseHandler();
responseHandler.setSCIMClient(scimClient);
// set the handler in wink client config
ClientConfig clientConfig = new ClientConfig();
clientConfig.handlers(new ClientHandler[] { responseHandler });
// create a wink rest client with the above config
RestClient restClient = new RestClient(clientConfig);
BasicAuthInfo encodedBasicAuthInfo = SCIMUtils.getBasicAuthInfo(userInfo);
// create resource endpoint to access a known user resource.
Resource groupResource = restClient.resource(scim_url + "Groups?filter=displayNameEqeng");
String response = groupResource.header(SCIMConstants.AUTHORIZATION_HEADER, encodedBasicAuthInfo.getAuthorizationHeader()).contentType(SCIMConstants.APPLICATION_JSON).accept(SCIMConstants.APPLICATION_JSON).get(String.class);
log.info(response.toString());
Assert.assertTrue(response.contains("\"displayName\":\"PRIMARY/eng\""));
}
use of org.wso2.charon.core.client.SCIMClient in project product-is by wso2.
the class SCIMServiceProviderGroupTestCase method updateGroup.
@Test(alwaysRun = true, description = "Add SCIM user", dependsOnMethods = { "filterGroup" })
@SetEnvironment(executionEnvironments = { ExecutionEnvironment.ALL })
public void updateGroup() throws Exception {
SCIMResponseHandler responseHandler = new SCIMResponseHandler();
responseHandler.setSCIMClient(scimClient);
// set the handler in wink client config
ClientConfig clientConfig = new ClientConfig();
clientConfig.handlers(new ClientHandler[] { responseHandler });
// create a wink rest client with the above config
RestClient restClient = new RestClient(clientConfig);
BasicAuthInfo encodedBasicAuthInfo = SCIMUtils.getBasicAuthInfo(userInfo);
// create resource endpoint to access a known user resource.
Resource groupResource = restClient.resource(scim_url + "Groups/" + scimGroupId);
String response = groupResource.header(SCIMConstants.AUTHORIZATION_HEADER, encodedBasicAuthInfo.getAuthorizationHeader()).contentType(SCIMConstants.APPLICATION_JSON).accept(SCIMConstants.APPLICATION_JSON).get(String.class);
log.info("Retrieved group: " + response);
// decode retrieved group
Group decodedGroup = (Group) scimClient.decodeSCIMResponse(response.replace("PRIMARY/", ""), SCIMConstants.JSON, 2);
decodedGroup.setDisplayName("testeng2");
String updatedGroupString = scimClient.encodeSCIMObject(decodedGroup, SCIMConstants.JSON);
Resource updateGroupResource = restClient.resource(scim_url + "Groups/" + scimGroupId);
String responseUpdated = updateGroupResource.header(SCIMConstants.AUTHORIZATION_HEADER, encodedBasicAuthInfo.getAuthorizationHeader()).contentType(SCIMConstants.APPLICATION_JSON).accept(SCIMConstants.APPLICATION_JSON).put(String.class, updatedGroupString);
log.info("Updated group: " + responseUpdated);
Assert.assertTrue(responseUpdated.contains("testeng2"));
}
use of org.wso2.charon.core.client.SCIMClient in project product-is by wso2.
the class SCIMServiceProviderUserTestCase method UpdateUser.
@Test(alwaysRun = true, description = "Update SCIM user", dependsOnMethods = { "filterUser" })
@SetEnvironment(executionEnvironments = { ExecutionEnvironment.ALL })
public void UpdateUser() throws Exception {
String updatedMiddleName = "testChange11";
String updatedEmail = "test123@wso2.com";
// create a apache wink ClientHandler to intercept and identify response messages
SCIMResponseHandler responseHandler = new SCIMResponseHandler();
responseHandler.setSCIMClient(scimClient);
// set the handler in wink client config
ClientConfig clientConfig = new ClientConfig();
clientConfig.handlers(new ClientHandler[] { responseHandler });
// create a wink rest client with the above config
RestClient restClient = new RestClient(clientConfig);
BasicAuthInfo encodedBasicAuthInfo = SCIMUtils.getBasicAuthInfo(provider_userInfo);
// create resource endpoint to access a known user resource.
Resource userResource = restClient.resource(scim_url + "Users/" + scimUserId);
org.wso2.charon.core.objects.User decodedUser = SCIMUtils.getSCIMUser(scimClient, USERNAME, "test", new String[] { "scimuser1@gmail.com", "scimuser1@wso2.com" }, "SCIMUser1", PASSWORD, "sinhala", "0772202595");
decodedUser.setDisplayName(updatedMiddleName);
decodedUser.setWorkEmail(updatedEmail, true);
// encode updated user
String updatedUserString = scimClient.encodeSCIMObject(decodedUser, SCIMConstants.JSON);
// update user
Resource updateUserResource = restClient.resource(scim_url + "Users/" + scimUserId);
String responseUpdated = updateUserResource.header(SCIMConstants.AUTHORIZATION_HEADER, encodedBasicAuthInfo.getAuthorizationHeader()).contentType(SCIMConstants.APPLICATION_JSON).accept(SCIMConstants.APPLICATION_JSON).put(String.class, updatedUserString);
log.info("Updated user: " + responseUpdated);
String response = userResource.header(SCIMConstants.AUTHORIZATION_HEADER, encodedBasicAuthInfo.getAuthorizationHeader()).contentType(SCIMConstants.APPLICATION_JSON).accept(SCIMConstants.APPLICATION_JSON).get(String.class);
log.info("Retrieved user: " + response);
Assert.assertTrue(response.contains(updatedEmail));
Assert.assertTrue(response.contains(updatedMiddleName));
}
Aggregations