use of com.sun.identity.entitlement.NumericAttributeCondition in project OpenAM by OpenRock.
the class EntitlementRegistryTest method shouldReturnCorrectConditionName.
@Test
public void shouldReturnCorrectConditionName() {
// Given
String name = "test";
EntitlementCondition testCondition = new NumericAttributeCondition();
testRegistry.registerConditionType(EntitlementCondition.class);
testRegistry.registerConditionType(name, NumericAttributeCondition.class);
// When
String result = testRegistry.getConditionName(testCondition);
// Then
assertThat(result).isEqualTo(name);
}
use of com.sun.identity.entitlement.NumericAttributeCondition in project OpenAM by OpenRock.
the class EntitlementRegistryTest method shouldNotReturnSuperTypeConditionNames.
@Test
public void shouldNotReturnSuperTypeConditionNames() {
// Given
EntitlementCondition testCondition = new NumericAttributeCondition();
// Only super-type registered
testRegistry.registerConditionType(EntitlementCondition.class);
// When
String result = testRegistry.getConditionName(testCondition);
// Then
assertThat(result).isNull();
}
use of com.sun.identity.entitlement.NumericAttributeCondition in project OpenAM by OpenRock.
the class RestTest method setup.
@BeforeClass
public void setup() throws Exception {
try {
PrivilegeManager pm = PrivilegeManager.getInstance(REALM, adminSubject);
Privilege privilege = Privilege.getNewInstance();
privilege.setName(PRIVILEGE_NAME);
Map<String, Boolean> actions = new HashMap<String, Boolean>();
actions.put("GET", true);
Entitlement entitlement = new Entitlement(RESOURCE_NAME + "/*", actions);
privilege.setEntitlement(entitlement);
EntitlementSubject sbj = new AuthenticatedUsers();
privilege.setSubject(sbj);
NumericAttributeCondition cond = new NumericAttributeCondition();
cond.setAttributeName(ATTR_NAME);
cond.setOperator(NumericAttributeCondition.Operator.EQUAL);
cond.setValue(ATTR_VAL);
privilege.setCondition(cond);
pm.add(privilege);
user = IdRepoUtils.createAgent(REALM, AGENT_NAME);
SSOToken ssoToken = AuthUtils.authenticate(REALM, AGENT_NAME, AGENT_NAME);
String userTokenId = ssoToken.getTokenID().toString();
hashedUserTokenId = Hash.hash(userTokenId);
userTokenIdHeader = RestServiceManager.SSOTOKEN_SUBJECT_PREFIX + RestServiceManager.SUBJECT_DELIMITER + userTokenId;
String cookieValue = userTokenId;
if (Boolean.parseBoolean(SystemProperties.get(Constants.AM_COOKIE_ENCODE, "false"))) {
cookieValue = URLEncoder.encode(userTokenId, "UTF-8");
}
cookie = new Cookie(SystemProperties.get(Constants.AM_COOKIE_NAME), cookieValue);
String serverURL = SystemProperties.getServerInstanceName();
decisionClient = Client.create().resource(serverURL + "/ws/1/entitlement/decision");
decisionsClient = Client.create().resource(serverURL + "/ws/1/entitlement/decisions");
entitlementClient = Client.create().resource(serverURL + "/ws/1/entitlement/entitlement");
entitlementsClient = Client.create().resource(serverURL + "/ws/1/entitlement/entitlements");
} catch (Exception e) {
UnittestLog.logError("RestTest.setup() failed:", e);
throw e;
}
}
Aggregations