Exemplo n.º 1
0
 def test_exists(self):
     fs = HDFSClient("/usr/local/hadoop-2.7.7/",
                     None,
                     time_out=6 * 1000,
                     sleep_inter=100)
     self.assertFalse(fs.is_exist(os.path.abspath("./xxxx")))
     self.assertFalse(fs.is_dir(os.path.abspath("./xxxx")))
     self.assertTrue(fs.is_dir(os.path.abspath("./xxx/..")))
     dirs, files = fs.ls_dir(os.path.abspath("./test_hdfs1.py"))
     self.assertTrue(dirs == [])
     self.assertTrue(len(files) == 1)
     dirs, files = fs.ls_dir(os.path.abspath("./xxx/.."))
Exemplo n.º 2
0
 def _test_list_dir(self, fs):
     fs = HDFSClient("/usr/local/hadoop-2.7.7/",
                     None,
                     time_out=15 * 1000,
                     sleep_inter=100)
     fs.ls_dir("test_not_exists")