assertRoute(result, "testRoleCreate.checkUser", Status.OK, "\"name\":\"registered\"", true);
//tries to recreate the same role, now with description
requestCreation = new FakeRequest(POST, sFakeRole);
requestCreation = requestCreation.withHeader(TestConfig.KEY_APPCODE, TestConfig.VALUE_APPCODE);
requestCreation = requestCreation.withHeader(TestConfig.KEY_AUTH, TestConfig.AUTH_ADMIN_ENC);
mapper = new ObjectMapper();
actualObj = mapper.readTree("{\"description\":\"this is a test\"}");
requestCreation = requestCreation.withJsonBody(actualObj);
requestCreation = requestCreation.withHeader("Content-Type", "application/json");