Search in sources :

Example 46 with AfterClass

use of org.testng.annotations.AfterClass in project OpenAM by OpenRock.

the class IDPPTest method cleanup.

@AfterClass
public void cleanup() throws Exception {
    if (!migrated) {
        return;
    }
    PolicyManager policyMgr = new PolicyManager(adminToken, orgName);
    policyMgr.removePolicy("IDPPTestPolicy1");
    Set<AMIdentity> identities = new HashSet<AMIdentity>();
    identities.add(user1);
    identities.add(group1);
    IdRepoUtils.deleteIdentities(orgName, identities);
}
Also used : PolicyManager(com.sun.identity.policy.PolicyManager) AMIdentity(com.sun.identity.idm.AMIdentity) HashSet(java.util.HashSet) AfterClass(org.testng.annotations.AfterClass)

Example 47 with AfterClass

use of org.testng.annotations.AfterClass in project OpenAM by OpenRock.

the class CanBeDeletedAppTest method cleanup.

@AfterClass
public void cleanup() throws Exception {
    if (!migrated) {
        return;
    }
    OrganizationConfigManager ocm = new OrganizationConfigManager(adminToken, "/");
    String subRealm = SUB_REALM.substring(1);
    ocm.deleteSubOrganization(subRealm, true);
}
Also used : OrganizationConfigManager(com.sun.identity.sm.OrganizationConfigManager) AfterClass(org.testng.annotations.AfterClass)

Example 48 with AfterClass

use of org.testng.annotations.AfterClass in project OpenAM by OpenRock.

the class OrgAliasReferralTestOldAPI method cleanup.

@AfterClass
public void cleanup() throws Exception {
    if (orgAliasEnabled) {
        OrganizationConfigManager ocm = new OrganizationConfigManager(adminToken, "/");
        ocm.deleteSubOrganization(SUB_REALM1.substring(1), true);
    }
}
Also used : OrganizationConfigManager(com.sun.identity.sm.OrganizationConfigManager) AfterClass(org.testng.annotations.AfterClass)

Example 49 with AfterClass

use of org.testng.annotations.AfterClass in project OpenAM by OpenRock.

the class RealmRemovedTest method cleanup.

@AfterClass
public void cleanup() throws Exception {
    if (!migrated) {
        return;
    }
    OrganizationConfigManager ocm = new OrganizationConfigManager(adminToken, "/");
    String subRealm = SUB_REALM2.substring(1);
    ocm.deleteSubOrganization(subRealm, true);
}
Also used : OrganizationConfigManager(com.sun.identity.sm.OrganizationConfigManager) AfterClass(org.testng.annotations.AfterClass)

Example 50 with AfterClass

use of org.testng.annotations.AfterClass in project OpenAM by OpenRock.

the class RestPermissionTest method cleanup.

@AfterClass
public void cleanup() throws Exception {
    PrivilegeManager pm = PrivilegeManager.getInstance("/", adminSubject);
    pm.remove(PRIVILEGE_NAME);
    IdRepoUtils.deleteIdentity(REALM, group);
    IdRepoUtils.deleteIdentity(REALM, user);
}
Also used : PrivilegeManager(com.sun.identity.entitlement.PrivilegeManager) AfterClass(org.testng.annotations.AfterClass)

Aggregations

AfterClass (org.testng.annotations.AfterClass)78 File (java.io.File)19 OrganizationConfigManager (com.sun.identity.sm.OrganizationConfigManager)9 HashSet (java.util.HashSet)9 AMIdentity (com.sun.identity.idm.AMIdentity)8 SSOToken (com.iplanet.sso.SSOToken)6 PrivilegeManager (com.sun.identity.entitlement.PrivilegeManager)6 MockParticipantManager (org.apache.helix.integration.manager.MockParticipantManager)6 AMIdentityRepository (com.sun.identity.idm.AMIdentityRepository)5 Date (java.util.Date)5 FutureCallback (com.linkedin.common.callback.FutureCallback)4 None (com.linkedin.common.util.None)4 Client (com.linkedin.r2.transport.common.Client)4 MockServer (com.sequenceiq.it.cloudbreak.v2.mock.MockServer)4 Path (org.apache.hadoop.fs.Path)4 PolicyPrivilegeManager (com.sun.identity.entitlement.opensso.PolicyPrivilegeManager)3 Configuration (org.apache.hadoop.conf.Configuration)3 FileSystem (org.apache.hadoop.fs.FileSystem)3 SSOException (com.iplanet.sso.SSOException)2 TransportClientFactory (com.linkedin.r2.transport.common.TransportClientFactory)2