use of org.wso2.carbon.identity.oauth.scope.endpoint.dto.ScopeDTO in project identity-inbound-auth-oauth by wso2-extensions.
the class ScopesApiServiceImplTest method testRegisterScope.
@Test(dataProvider = "BuildRegisterScope")
public void testRegisterScope(Response.Status expectation, Throwable throwable) throws Exception {
ScopeDTO scopeDTO = new ScopeDTO();
scopeDTO.setDescription("some description");
scopeDTO.setBindings(Collections.<String>emptyList());
if (Response.Status.OK.equals(expectation)) {
when(oAuth2ScopeService.registerScope(any(Scope.class))).thenReturn(any(Scope.class));
assertEquals(scopesApiService.registerScope(scopeDTO).getStatus(), Response.Status.CREATED.getStatusCode(), "Error occurred while registering scopes");
} else if (Response.Status.BAD_REQUEST.equals(expectation)) {
when(oAuth2ScopeService.registerScope(any(Scope.class))).thenThrow(throwable);
callRealMethod();
try {
scopesApiService.registerScope(scopeDTO);
} catch (ScopeEndpointException e) {
assertEquals(e.getResponse().getStatus(), Response.Status.BAD_REQUEST.getStatusCode(), "Cannot find HTTP Response, Bad Request in Case of " + "IdentityOAuth2ScopeClientException");
assertEquals(((ErrorDTO) (e.getResponse().getEntity())).getMessage(), Response.Status.BAD_REQUEST.getReasonPhrase(), "Cannot find appropriate error message " + "for HTTP Response, Bad Request");
} finally {
reset(oAuth2ScopeService);
}
} else if (Response.Status.CONFLICT.equals(expectation)) {
((IdentityOAuth2ScopeException) throwable).setErrorCode(Oauth2ScopeConstants.ErrorMessages.ERROR_CODE_CONFLICT_REQUEST_EXISTING_SCOPE.getCode());
when(oAuth2ScopeService.registerScope(any(Scope.class))).thenThrow(throwable);
callRealMethod();
try {
scopesApiService.registerScope(scopeDTO);
} catch (ScopeEndpointException e) {
assertEquals(e.getResponse().getStatus(), Response.Status.CONFLICT.getStatusCode(), "Cannot find HTTP Response, Conflict in Case of " + "IdentityOAuth2ScopeClientException");
assertEquals(((ErrorDTO) (e.getResponse().getEntity())).getMessage(), Response.Status.CONFLICT.getReasonPhrase(), "Cannot find appropriate error message " + "for HTTP Response, Conflict");
} finally {
reset(oAuth2ScopeService);
}
} else if (Response.Status.INTERNAL_SERVER_ERROR.equals(expectation)) {
when(oAuth2ScopeService.registerScope(any(Scope.class))).thenThrow(IdentityOAuth2ScopeException.class);
callRealMethod();
try {
scopesApiService.registerScope(scopeDTO);
} catch (ScopeEndpointException e) {
assertEquals(e.getResponse().getStatus(), Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), "Cannot find HTTP Response, Internal Server Error in case of " + "IdentityOAuth2ScopeException");
assertNull(e.getResponse().getEntity(), "Do not include error message in case of " + "Server Exception");
} finally {
reset(oAuth2ScopeService);
}
}
}
use of org.wso2.carbon.identity.oauth.scope.endpoint.dto.ScopeDTO in project identity-inbound-auth-oauth by wso2-extensions.
the class ScopeUtilsTest method testGetScopeDTO.
@Test(description = "Testing getScopeDTO")
public void testGetScopeDTO() throws Exception {
ArrayList bindings = new ArrayList();
bindings.add("binding1");
Scope scope = new Scope(CLIENT_NAME, CLIENT_NAME, SCOPE_DESCRIPTION, bindings);
ScopeDTO scopeDTO1 = ScopeUtils.getScopeDTO(scope);
assertEquals(scopeDTO1.getBindings(), bindings, "Actual binding is not match for expected binding");
assertTrue(scopeDTO1.getBindings().get(0).contains("binding1"));
assertEquals(scopeDTO1.getDisplayName(), CLIENT_NAME, "Actual display name is not match for expected display name");
assertEquals(scopeDTO1.getDescription(), SCOPE_DESCRIPTION, "Actual description is not match for expected description");
assertEquals(scopeDTO1.getName(), CLIENT_NAME, "Actual name is not match for expected name");
}
use of org.wso2.carbon.identity.oauth.scope.endpoint.dto.ScopeDTO in project identity-inbound-auth-oauth by wso2-extensions.
the class ScopesApiServiceImpl method updateScope.
/**
* Update a scope
*
* @param scope details of the scope to be updated.
* @param name name of the scope to be updated.
* @return
*/
@Override
public Response updateScope(ScopeToUpdateDTO scope, String name) {
ScopeDTO updatedScope = null;
try {
validateUpdateRequest(name);
updatedScope = ScopeUtils.getScopeDTO(ScopeUtils.getOAuth2ScopeService().updateScope(ScopeUtils.getUpdatedScope(scope, name)));
} catch (IdentityOAuth2ScopeClientException e) {
if (LOG.isDebugEnabled()) {
LOG.debug("Client Error while updating scope \n" + scope.toString(), e);
}
if (Oauth2ScopeConstants.ErrorMessages.ERROR_CODE_NOT_FOUND_SCOPE.getCode().equals(e.getErrorCode())) {
ScopeUtils.handleErrorResponse(Response.Status.NOT_FOUND, Response.Status.NOT_FOUND.getReasonPhrase(), e, false, LOG);
} else if (Oauth2ScopeConstants.ErrorMessages.ERROR_CODE_NOT_AUTHORIZED_UPDATE_INTERNAL_SCOPE.getCode().equals(e.getErrorCode())) {
ScopeUtils.handleErrorResponse(Response.Status.FORBIDDEN, Response.Status.FORBIDDEN.getReasonPhrase(), e, false, LOG);
} else {
ScopeUtils.handleErrorResponse(Response.Status.BAD_REQUEST, Response.Status.BAD_REQUEST.getReasonPhrase(), e, false, LOG);
}
} catch (IdentityOAuth2ScopeException e) {
ScopeUtils.handleErrorResponse(Response.Status.INTERNAL_SERVER_ERROR, Response.Status.INTERNAL_SERVER_ERROR.getReasonPhrase(), e, true, LOG);
} catch (Throwable throwable) {
ScopeUtils.handleErrorResponse(Response.Status.INTERNAL_SERVER_ERROR, Response.Status.INTERNAL_SERVER_ERROR.getReasonPhrase(), throwable, true, LOG);
}
return Response.status(Response.Status.OK).entity(updatedScope).build();
}
use of org.wso2.carbon.identity.oauth.scope.endpoint.dto.ScopeDTO in project identity-inbound-auth-oauth by wso2-extensions.
the class ScopeUtils method getScope.
public static Scope getScope(ScopeDTO scopeDTO) {
Scope scope = new Scope(scopeDTO.getName(), scopeDTO.getDisplayName(), getScopeBindings(scopeDTO.getScopeBindings()), scopeDTO.getDescription());
scope.addScopeBindings(DEFAULT_SCOPE_BINDING, scopeDTO.getBindings());
return scope;
}
use of org.wso2.carbon.identity.oauth.scope.endpoint.dto.ScopeDTO in project identity-inbound-auth-oauth by wso2-extensions.
the class ScopeUtils method getScopeDTO.
public static ScopeDTO getScopeDTO(Scope scope) {
ScopeDTO scopeDTO = new ScopeDTO();
scopeDTO.setName(scope.getName());
scopeDTO.setDisplayName(scope.getDisplayName());
scopeDTO.setDescription(scope.getDescription());
scopeDTO.setBindings(scope.getBindings());
scopeDTO.setScopeBindings(getScopeBindingDTOs(scope.getScopeBindings()));
return scopeDTO;
}
Aggregations