Java Code Examples for org.apache.hadoop.registry.server.integration.RMRegistryOperationsService#dumpPath()
The following examples show how to use
org.apache.hadoop.registry.server.integration.RMRegistryOperationsService#dumpPath() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TestSecureRMRegistryOperations.java From hadoop with Apache License 2.0 | 5 votes |
/** * test that ZK can write as itself * @throws Throwable */ @Test public void testZookeeperCanWriteUnderSystem() throws Throwable { RMRegistryOperationsService rmRegistryOperations = startRMRegistryOperations(); RegistryOperations operations = rmRegistryOperations; operations.mknode(PATH_SYSTEM_SERVICES + "hdfs", false); ZKPathDumper pathDumper = rmRegistryOperations.dumpPath(true); LOG.info(pathDumper.toString()); }
Example 2
Source File: TestSecureRMRegistryOperations.java From big-c with Apache License 2.0 | 5 votes |
/** * test that ZK can write as itself * @throws Throwable */ @Test public void testZookeeperCanWriteUnderSystem() throws Throwable { RMRegistryOperationsService rmRegistryOperations = startRMRegistryOperations(); RegistryOperations operations = rmRegistryOperations; operations.mknode(PATH_SYSTEM_SERVICES + "hdfs", false); ZKPathDumper pathDumper = rmRegistryOperations.dumpPath(true); LOG.info(pathDumper.toString()); }
Example 3
Source File: TestSecureRMRegistryOperations.java From hadoop with Apache License 2.0 | 4 votes |
@Test public void testDigestAccess() throws Throwable { RMRegistryOperationsService registryAdmin = startRMRegistryOperations(); String id = "username"; String pass = "password"; registryAdmin.addWriteAccessor(id, pass); List<ACL> clientAcls = registryAdmin.getClientAcls(); LOG.info("Client ACLS=\n{}", RegistrySecurity.aclsToString(clientAcls)); String base = "/digested"; registryAdmin.mknode(base, false); List<ACL> baseACLs = registryAdmin.zkGetACLS(base); String aclset = RegistrySecurity.aclsToString(baseACLs); LOG.info("Base ACLs=\n{}", aclset); ACL found = null; for (ACL acl : baseACLs) { if (ZookeeperConfigOptions.SCHEME_DIGEST.equals(acl.getId().getScheme())) { found = acl; break; } } assertNotNull("Did not find digest entry in ACLs " + aclset, found); zkClientConf.set(KEY_REGISTRY_USER_ACCOUNTS, "sasl:[email protected], sasl:other"); RegistryOperations operations = RegistryOperationsFactory.createAuthenticatedInstance(zkClientConf, id, pass); addToTeardown(operations); operations.start(); RegistryOperationsClient operationsClient = (RegistryOperationsClient) operations; List<ACL> digestClientACLs = operationsClient.getClientAcls(); LOG.info("digest client ACLs=\n{}", RegistrySecurity.aclsToString(digestClientACLs)); operations.stat(base); operations.mknode(base + "/subdir", false); ZKPathDumper pathDumper = registryAdmin.dumpPath(true); LOG.info(pathDumper.toString()); }
Example 4
Source File: TestSecureRMRegistryOperations.java From big-c with Apache License 2.0 | 4 votes |
@Test public void testDigestAccess() throws Throwable { RMRegistryOperationsService registryAdmin = startRMRegistryOperations(); String id = "username"; String pass = "password"; registryAdmin.addWriteAccessor(id, pass); List<ACL> clientAcls = registryAdmin.getClientAcls(); LOG.info("Client ACLS=\n{}", RegistrySecurity.aclsToString(clientAcls)); String base = "/digested"; registryAdmin.mknode(base, false); List<ACL> baseACLs = registryAdmin.zkGetACLS(base); String aclset = RegistrySecurity.aclsToString(baseACLs); LOG.info("Base ACLs=\n{}", aclset); ACL found = null; for (ACL acl : baseACLs) { if (ZookeeperConfigOptions.SCHEME_DIGEST.equals(acl.getId().getScheme())) { found = acl; break; } } assertNotNull("Did not find digest entry in ACLs " + aclset, found); zkClientConf.set(KEY_REGISTRY_USER_ACCOUNTS, "sasl:[email protected], sasl:other"); RegistryOperations operations = RegistryOperationsFactory.createAuthenticatedInstance(zkClientConf, id, pass); addToTeardown(operations); operations.start(); RegistryOperationsClient operationsClient = (RegistryOperationsClient) operations; List<ACL> digestClientACLs = operationsClient.getClientAcls(); LOG.info("digest client ACLs=\n{}", RegistrySecurity.aclsToString(digestClientACLs)); operations.stat(base); operations.mknode(base + "/subdir", false); ZKPathDumper pathDumper = registryAdmin.dumpPath(true); LOG.info(pathDumper.toString()); }