当前位置: 首页>>代码示例>>Java>>正文


Java KerberosTestUtils.doAsClient方法代码示例

本文整理汇总了Java中org.apache.hadoop.test.KerberosTestUtils.doAsClient方法的典型用法代码示例。如果您正苦于以下问题:Java KerberosTestUtils.doAsClient方法的具体用法?Java KerberosTestUtils.doAsClient怎么用?Java KerberosTestUtils.doAsClient使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.test.KerberosTestUtils的用法示例。


在下文中一共展示了KerberosTestUtils.doAsClient方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testValidHttpFSAccess

import org.apache.hadoop.test.KerberosTestUtils; //导入方法依赖的package包/类
@Test
@TestDir
@TestJetty
@TestHdfs
public void testValidHttpFSAccess() throws Exception {
  createHttpFSServer();

  KerberosTestUtils.doAsClient(new Callable<Void>() {
    @Override
    public Void call() throws Exception {
      URL url = new URL(TestJettyHelper.getJettyURL(),
                        "/webhdfs/v1/?op=GETHOMEDIRECTORY");
      AuthenticatedURL aUrl = new AuthenticatedURL();
      AuthenticatedURL.Token aToken = new AuthenticatedURL.Token();
      HttpURLConnection conn = aUrl.openConnection(url, aToken);
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);
      return null;
    }
  });
}
 
开发者ID:naver,项目名称:hadoop,代码行数:21,代码来源:TestHttpFSWithKerberos.java

示例2: testValidHttpFSAccess

import org.apache.hadoop.test.KerberosTestUtils; //导入方法依赖的package包/类
@Test
@TestDir
@TestJetty
@TestHdfs
@Ignore
public void testValidHttpFSAccess() throws Exception {
  createHttpFSServer();

  KerberosTestUtils.doAsClient(new Callable<Void>() {
    @Override
    public Void call() throws Exception {
      URL url = new URL(TestJettyHelper.getJettyURL(),
          "/webhdfs/v1/?op=GETHOMEDIRECTORY");
      AuthenticatedURL aUrl = new AuthenticatedURL();
      AuthenticatedURL.Token aToken = new AuthenticatedURL.Token();
      HttpURLConnection conn = aUrl.openConnection(url, aToken);
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);
      return null;
    }
  });
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:22,代码来源:TestHttpFSWithKerberos.java

示例3: testDelegationTokenHttpFSAccess

import org.apache.hadoop.test.KerberosTestUtils; //导入方法依赖的package包/类
@Test
@TestDir
@TestJetty
@TestHdfs
public void testDelegationTokenHttpFSAccess() throws Exception {
  createHttpFSServer();

  KerberosTestUtils.doAsClient(new Callable<Void>() {
    @Override
    public Void call() throws Exception {
      //get delegation token doing SPNEGO authentication
      URL url = new URL(TestJettyHelper.getJettyURL(),
                        "/webhdfs/v1/?op=GETDELEGATIONTOKEN");
      AuthenticatedURL aUrl = new AuthenticatedURL();
      AuthenticatedURL.Token aToken = new AuthenticatedURL.Token();
      HttpURLConnection conn = aUrl.openConnection(url, aToken);
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);
      JSONObject json = (JSONObject) new JSONParser()
        .parse(new InputStreamReader(conn.getInputStream()));
      json =
        (JSONObject) json
          .get(DelegationTokenAuthenticator.DELEGATION_TOKEN_JSON);
      String tokenStr = (String) json
        .get(DelegationTokenAuthenticator.DELEGATION_TOKEN_URL_STRING_JSON);

      //access httpfs using the delegation token
      url = new URL(TestJettyHelper.getJettyURL(),
                    "/webhdfs/v1/?op=GETHOMEDIRECTORY&delegation=" +
                    tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);

      //try to renew the delegation token without SPNEGO credentials
      url = new URL(TestJettyHelper.getJettyURL(),
                    "/webhdfs/v1/?op=RENEWDELEGATIONTOKEN&token=" + tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      conn.setRequestMethod("PUT");
      Assert.assertEquals(conn.getResponseCode(),
                          HttpURLConnection.HTTP_UNAUTHORIZED);

      //renew the delegation token with SPNEGO credentials
      url = new URL(TestJettyHelper.getJettyURL(),
                    "/webhdfs/v1/?op=RENEWDELEGATIONTOKEN&token=" + tokenStr);
      conn = aUrl.openConnection(url, aToken);
      conn.setRequestMethod("PUT");
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);

      //cancel delegation token, no need for SPNEGO credentials
      url = new URL(TestJettyHelper.getJettyURL(),
                    "/webhdfs/v1/?op=CANCELDELEGATIONTOKEN&token=" +
                    tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      conn.setRequestMethod("PUT");
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);

      //try to access httpfs with the canceled delegation token
      url = new URL(TestJettyHelper.getJettyURL(),
                    "/webhdfs/v1/?op=GETHOMEDIRECTORY&delegation=" +
                    tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      Assert.assertEquals(conn.getResponseCode(),
                          HttpURLConnection.HTTP_UNAUTHORIZED);
      return null;
    }
  });
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:67,代码来源:TestHttpFSWithKerberos.java

示例4: testDelegationTokenHttpFSAccess

import org.apache.hadoop.test.KerberosTestUtils; //导入方法依赖的package包/类
@Test
@TestDir
@TestJetty
@TestHdfs
public void testDelegationTokenHttpFSAccess() throws Exception {
  createHttpFSServer();

  KerberosTestUtils.doAsClient(new Callable<Void>() {
    @Override
    public Void call() throws Exception {
      //get delegation token doing SPNEGO authentication
      URL url = new URL(TestJettyHelper.getJettyURL(),
                        "/webhdfs/v1/?op=GETDELEGATIONTOKEN");
      AuthenticatedURL aUrl = new AuthenticatedURL();
      AuthenticatedURL.Token aToken = new AuthenticatedURL.Token();
      HttpURLConnection conn = aUrl.openConnection(url, aToken);
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);
      JSONObject json = (JSONObject) new JSONParser()
        .parse(new InputStreamReader(conn.getInputStream()));
      json =
        (JSONObject) json
          .get(HttpFSKerberosAuthenticator.DELEGATION_TOKEN_JSON);
      String tokenStr = (String) json
        .get(HttpFSKerberosAuthenticator.DELEGATION_TOKEN_URL_STRING_JSON);

      //access httpfs using the delegation token
      url = new URL(TestJettyHelper.getJettyURL(),
                    "/webhdfs/v1/?op=GETHOMEDIRECTORY&delegation=" +
                    tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);

      //try to renew the delegation token without SPNEGO credentials
      url = new URL(TestJettyHelper.getJettyURL(),
                    "/webhdfs/v1/?op=RENEWDELEGATIONTOKEN&token=" + tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      conn.setRequestMethod("PUT");
      Assert.assertEquals(conn.getResponseCode(),
                          HttpURLConnection.HTTP_UNAUTHORIZED);

      //renew the delegation token with SPNEGO credentials
      url = new URL(TestJettyHelper.getJettyURL(),
                    "/webhdfs/v1/?op=RENEWDELEGATIONTOKEN&token=" + tokenStr);
      conn = aUrl.openConnection(url, aToken);
      conn.setRequestMethod("PUT");
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);

      //cancel delegation token, no need for SPNEGO credentials
      url = new URL(TestJettyHelper.getJettyURL(),
                    "/webhdfs/v1/?op=CANCELDELEGATIONTOKEN&token=" +
                    tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      conn.setRequestMethod("PUT");
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);

      //try to access httpfs with the canceled delegation token
      url = new URL(TestJettyHelper.getJettyURL(),
                    "/webhdfs/v1/?op=GETHOMEDIRECTORY&delegation=" +
                    tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      Assert.assertEquals(conn.getResponseCode(),
                          HttpURLConnection.HTTP_UNAUTHORIZED);
      return null;
    }
  });
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:67,代码来源:TestHttpFSWithKerberos.java

示例5: testDelegationTokenHttpFSAccess

import org.apache.hadoop.test.KerberosTestUtils; //导入方法依赖的package包/类
@Test
@TestDir
@TestJetty
@TestHdfs
@Ignore
public void testDelegationTokenHttpFSAccess() throws Exception {
  createHttpFSServer();

  KerberosTestUtils.doAsClient(new Callable<Void>() {
    @Override
    public Void call() throws Exception {
      //get delegation token doing SPNEGO authentication
      URL url = new URL(TestJettyHelper.getJettyURL(),
          "/webhdfs/v1/?op=GETDELEGATIONTOKEN");
      AuthenticatedURL aUrl = new AuthenticatedURL();
      AuthenticatedURL.Token aToken = new AuthenticatedURL.Token();
      HttpURLConnection conn = aUrl.openConnection(url, aToken);
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);
      JSONObject json = (JSONObject) new JSONParser()
          .parse(new InputStreamReader(conn.getInputStream()));
      json = (JSONObject) json
          .get(HttpFSKerberosAuthenticator.DELEGATION_TOKEN_JSON);
      String tokenStr = (String) json
          .get(HttpFSKerberosAuthenticator.DELEGATION_TOKEN_URL_STRING_JSON);

      //access httpfs using the delegation token
      url = new URL(TestJettyHelper.getJettyURL(),
          "/webhdfs/v1/?op=GETHOMEDIRECTORY&delegation=" + tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);

      //try to renew the delegation token without SPNEGO credentials
      url = new URL(TestJettyHelper.getJettyURL(),
          "/webhdfs/v1/?op=RENEWDELEGATIONTOKEN&token=" + tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      conn.setRequestMethod("PUT");
      Assert.assertEquals(conn.getResponseCode(),
          HttpURLConnection.HTTP_UNAUTHORIZED);

      //renew the delegation token with SPNEGO credentials
      url = new URL(TestJettyHelper.getJettyURL(),
          "/webhdfs/v1/?op=RENEWDELEGATIONTOKEN&token=" + tokenStr);
      conn = aUrl.openConnection(url, aToken);
      conn.setRequestMethod("PUT");
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);

      //cancel delegation token, no need for SPNEGO credentials
      url = new URL(TestJettyHelper.getJettyURL(),
          "/webhdfs/v1/?op=CANCELDELEGATIONTOKEN&token=" + tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      conn.setRequestMethod("PUT");
      Assert.assertEquals(conn.getResponseCode(), HttpURLConnection.HTTP_OK);

      //try to access httpfs with the canceled delegation token
      url = new URL(TestJettyHelper.getJettyURL(),
          "/webhdfs/v1/?op=GETHOMEDIRECTORY&delegation=" + tokenStr);
      conn = (HttpURLConnection) url.openConnection();
      Assert.assertEquals(conn.getResponseCode(),
          HttpURLConnection.HTTP_UNAUTHORIZED);
      return null;
    }
  });
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:64,代码来源:TestHttpFSWithKerberos.java


注:本文中的org.apache.hadoop.test.KerberosTestUtils.doAsClient方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。