|
@@ -0,0 +1,195 @@
|
|
|
+/**
|
|
|
+ * Licensed to the Apache Software Foundation (ASF) under one
|
|
|
+ * or more contributor license agreements. See the NOTICE file
|
|
|
+ * distributed with this work for additional information
|
|
|
+ * regarding copyright ownership. The ASF licenses this file
|
|
|
+ * to you under the Apache License, Version 2.0 (the
|
|
|
+ * "License"); you may not use this file except in compliance
|
|
|
+ * with the License. You may obtain a copy of the License at
|
|
|
+ *
|
|
|
+ * http://www.apache.org/licenses/LICENSE-2.0
|
|
|
+ *
|
|
|
+ * Unless required by applicable law or agreed to in writing, software
|
|
|
+ * distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
+ * See the License for the specific language governing permissions and
|
|
|
+ * limitations under the License.
|
|
|
+ */
|
|
|
+
|
|
|
+package org.apache.hadoop.hdfs.nfs;
|
|
|
+
|
|
|
+import static org.junit.Assert.assertTrue;
|
|
|
+
|
|
|
+import java.io.IOException;
|
|
|
+import java.net.InetAddress;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import org.apache.hadoop.conf.Configuration;
|
|
|
+import org.apache.hadoop.fs.Path;
|
|
|
+import org.apache.hadoop.hdfs.DFSTestUtil;
|
|
|
+import org.apache.hadoop.hdfs.DistributedFileSystem;
|
|
|
+import org.apache.hadoop.hdfs.MiniDFSCluster;
|
|
|
+import org.apache.hadoop.hdfs.nfs.nfs3.Nfs3;
|
|
|
+import org.apache.hadoop.hdfs.nfs.nfs3.RpcProgramNfs3;
|
|
|
+import org.apache.hadoop.hdfs.protocol.HdfsFileStatus;
|
|
|
+import org.apache.hadoop.hdfs.server.namenode.NameNode;
|
|
|
+import org.apache.hadoop.nfs.nfs3.FileHandle;
|
|
|
+import org.apache.hadoop.nfs.nfs3.response.READDIR3Response;
|
|
|
+import org.apache.hadoop.nfs.nfs3.response.READDIR3Response.Entry3;
|
|
|
+import org.apache.hadoop.nfs.nfs3.response.READDIRPLUS3Response;
|
|
|
+import org.apache.hadoop.nfs.nfs3.response.READDIRPLUS3Response.EntryPlus3;
|
|
|
+import org.apache.hadoop.oncrpc.XDR;
|
|
|
+import org.apache.hadoop.oncrpc.security.SecurityHandler;
|
|
|
+import org.junit.AfterClass;
|
|
|
+import org.junit.Before;
|
|
|
+import org.junit.BeforeClass;
|
|
|
+import org.junit.Test;
|
|
|
+import org.mockito.Mockito;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Test READDIR and READDIRPLUS request with zero, nonzero cookies
|
|
|
+ */
|
|
|
+public class TestReaddir {
|
|
|
+
|
|
|
+ static Configuration config = new Configuration();
|
|
|
+ static MiniDFSCluster cluster = null;
|
|
|
+ static DistributedFileSystem hdfs;
|
|
|
+ static NameNode nn;
|
|
|
+ static RpcProgramNfs3 nfsd;
|
|
|
+ static String testdir = "/tmp";
|
|
|
+ static SecurityHandler securityHandler;
|
|
|
+
|
|
|
+ @BeforeClass
|
|
|
+ public static void setup() throws Exception {
|
|
|
+ cluster = new MiniDFSCluster.Builder(config).numDataNodes(1).build();
|
|
|
+ cluster.waitActive();
|
|
|
+ hdfs = cluster.getFileSystem();
|
|
|
+ nn = cluster.getNameNode();
|
|
|
+
|
|
|
+ // Start nfs
|
|
|
+ List<String> exports = new ArrayList<String>();
|
|
|
+ exports.add("/");
|
|
|
+ Nfs3 nfs3 = new Nfs3(exports, config);
|
|
|
+ nfs3.start(false);
|
|
|
+
|
|
|
+ nfsd = (RpcProgramNfs3) nfs3.getRpcProgram();
|
|
|
+
|
|
|
+ securityHandler = Mockito.mock(SecurityHandler.class);
|
|
|
+ Mockito.when(securityHandler.getUser()).thenReturn(
|
|
|
+ System.getProperty("user.name"));
|
|
|
+ }
|
|
|
+
|
|
|
+ @AfterClass
|
|
|
+ public static void shutdown() throws Exception {
|
|
|
+ if (cluster != null) {
|
|
|
+ cluster.shutdown();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Before
|
|
|
+ public void createFiles() throws IllegalArgumentException, IOException {
|
|
|
+ hdfs.delete(new Path(testdir), true);
|
|
|
+ hdfs.mkdirs(new Path(testdir));
|
|
|
+ DFSTestUtil.createFile(hdfs, new Path(testdir + "/f1"), 0, (short) 1, 0);
|
|
|
+ DFSTestUtil.createFile(hdfs, new Path(testdir + "/f2"), 0, (short) 1, 0);
|
|
|
+ DFSTestUtil.createFile(hdfs, new Path(testdir + "/f3"), 0, (short) 1, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void testReaddirBasic() throws IOException {
|
|
|
+ // Get inodeId of /tmp
|
|
|
+ HdfsFileStatus status = nn.getRpcServer().getFileInfo(testdir);
|
|
|
+ long dirId = status.getFileId();
|
|
|
+
|
|
|
+ // Create related part of the XDR request
|
|
|
+ XDR xdr_req = new XDR();
|
|
|
+ FileHandle handle = new FileHandle(dirId);
|
|
|
+ handle.serialize(xdr_req);
|
|
|
+ xdr_req.writeLongAsHyper(0); // cookie
|
|
|
+ xdr_req.writeLongAsHyper(0); // verifier
|
|
|
+ xdr_req.writeInt(100); // count
|
|
|
+
|
|
|
+ READDIR3Response response = nfsd.readdir(xdr_req.asReadOnlyWrap(),
|
|
|
+ securityHandler, InetAddress.getLocalHost());
|
|
|
+ List<Entry3> dirents = response.getDirList().getEntries();
|
|
|
+ assertTrue(dirents.size() == 5); // inculding dot, dotdot
|
|
|
+
|
|
|
+ // Test start listing from f2
|
|
|
+ status = nn.getRpcServer().getFileInfo(testdir + "/f2");
|
|
|
+ long f2Id = status.getFileId();
|
|
|
+
|
|
|
+ // Create related part of the XDR request
|
|
|
+ xdr_req = new XDR();
|
|
|
+ handle = new FileHandle(dirId);
|
|
|
+ handle.serialize(xdr_req);
|
|
|
+ xdr_req.writeLongAsHyper(f2Id); // cookie
|
|
|
+ xdr_req.writeLongAsHyper(0); // verifier
|
|
|
+ xdr_req.writeInt(100); // count
|
|
|
+
|
|
|
+ response = nfsd.readdir(xdr_req.asReadOnlyWrap(), securityHandler,
|
|
|
+ InetAddress.getLocalHost());
|
|
|
+ dirents = response.getDirList().getEntries();
|
|
|
+ assertTrue(dirents.size() == 1);
|
|
|
+ Entry3 entry = dirents.get(0);
|
|
|
+ assertTrue(entry.getName().equals("f3"));
|
|
|
+
|
|
|
+ // When the cookie is deleted, list starts over no including dot, dotdot
|
|
|
+ hdfs.delete(new Path(testdir + "/f2"), false);
|
|
|
+
|
|
|
+ response = nfsd.readdir(xdr_req.asReadOnlyWrap(), securityHandler,
|
|
|
+ InetAddress.getLocalHost());
|
|
|
+ dirents = response.getDirList().getEntries();
|
|
|
+ assertTrue(dirents.size() == 2); // No dot, dotdot
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ // Test readdirplus
|
|
|
+ public void testReaddirPlus() throws IOException {
|
|
|
+ // Get inodeId of /tmp
|
|
|
+ HdfsFileStatus status = nn.getRpcServer().getFileInfo(testdir);
|
|
|
+ long dirId = status.getFileId();
|
|
|
+
|
|
|
+ // Create related part of the XDR request
|
|
|
+ XDR xdr_req = new XDR();
|
|
|
+ FileHandle handle = new FileHandle(dirId);
|
|
|
+ handle.serialize(xdr_req);
|
|
|
+ xdr_req.writeLongAsHyper(0); // cookie
|
|
|
+ xdr_req.writeLongAsHyper(0); // verifier
|
|
|
+ xdr_req.writeInt(100); // dirCount
|
|
|
+ xdr_req.writeInt(1000); // maxCount
|
|
|
+
|
|
|
+ READDIRPLUS3Response responsePlus = nfsd.readdirplus(
|
|
|
+ xdr_req.asReadOnlyWrap(), securityHandler, InetAddress.getLocalHost());
|
|
|
+ List<EntryPlus3> direntPlus = responsePlus.getDirListPlus().getEntries();
|
|
|
+ assertTrue(direntPlus.size() == 5); // including dot, dotdot
|
|
|
+
|
|
|
+ // Test start listing from f2
|
|
|
+ status = nn.getRpcServer().getFileInfo(testdir + "/f2");
|
|
|
+ long f2Id = status.getFileId();
|
|
|
+
|
|
|
+ // Create related part of the XDR request
|
|
|
+ xdr_req = new XDR();
|
|
|
+ handle = new FileHandle(dirId);
|
|
|
+ handle.serialize(xdr_req);
|
|
|
+ xdr_req.writeLongAsHyper(f2Id); // cookie
|
|
|
+ xdr_req.writeLongAsHyper(0); // verifier
|
|
|
+ xdr_req.writeInt(100); // dirCount
|
|
|
+ xdr_req.writeInt(1000); // maxCount
|
|
|
+
|
|
|
+ responsePlus = nfsd.readdirplus(xdr_req.asReadOnlyWrap(), securityHandler,
|
|
|
+ InetAddress.getLocalHost());
|
|
|
+ direntPlus = responsePlus.getDirListPlus().getEntries();
|
|
|
+ assertTrue(direntPlus.size() == 1);
|
|
|
+ EntryPlus3 entryPlus = direntPlus.get(0);
|
|
|
+ assertTrue(entryPlus.getName().equals("f3"));
|
|
|
+
|
|
|
+ // When the cookie is deleted, list starts over no including dot, dotdot
|
|
|
+ hdfs.delete(new Path(testdir + "/f2"), false);
|
|
|
+
|
|
|
+ responsePlus = nfsd.readdirplus(xdr_req.asReadOnlyWrap(), securityHandler,
|
|
|
+ InetAddress.getLocalHost());
|
|
|
+ direntPlus = responsePlus.getDirListPlus().getEntries();
|
|
|
+ assertTrue(direntPlus.size() == 2); // No dot, dotdot
|
|
|
+ }
|
|
|
+}
|