本文整理汇总了Java中org.apache.hadoop.nfs.nfs3.request.FSINFO3Request类的典型用法代码示例。如果您正苦于以下问题:Java FSINFO3Request类的具体用法?Java FSINFO3Request怎么用?Java FSINFO3Request使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FSINFO3Request类属于org.apache.hadoop.nfs.nfs3.request包,在下文中一共展示了FSINFO3Request类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testFsinfo
import org.apache.hadoop.nfs.nfs3.request.FSINFO3Request; //导入依赖的package包/类
@Test(timeout = 60000)
public void testFsinfo() throws Exception {
HdfsFileStatus status = nn.getRpcServer().getFileInfo("/tmp/bar");
long dirId = status.getFileId();
FileHandle handle = new FileHandle(dirId);
XDR xdr_req = new XDR();
FSINFO3Request req = new FSINFO3Request(handle);
req.serialize(xdr_req);
// Attempt by an unpriviledged user should fail.
FSINFO3Response response1 = nfsd.fsinfo(xdr_req.asReadOnlyWrap(),
securityHandlerUnpriviledged,
new InetSocketAddress("localhost", 1234));
assertEquals("Incorrect return code:", Nfs3Status.NFS3ERR_ACCES,
response1.getStatus());
// Attempt by a priviledged user should pass.
FSINFO3Response response2 = nfsd.fsinfo(xdr_req.asReadOnlyWrap(),
securityHandler, new InetSocketAddress("localhost", 1234));
assertEquals("Incorrect return code:", Nfs3Status.NFS3_OK,
response2.getStatus());
}