HADOOP-10030. Merging change r1530462 from trunk to branch-2.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1530465 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ea724f0651
commit
292259b0b8
|
@ -119,6 +119,9 @@ Release 2.2.1 - UNRELEASED
|
||||||
|
|
||||||
HADOOP-10028. Malformed ssl-server.xml.example. (Haohui Mai via jing9)
|
HADOOP-10028. Malformed ssl-server.xml.example. (Haohui Mai via jing9)
|
||||||
|
|
||||||
|
HADOOP-10030. FsShell -put/copyFromLocal should support Windows local path.
|
||||||
|
(Chuan Liu via cnauroth)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -204,13 +204,18 @@ class CopyCommands {
|
||||||
// commands operating on local paths have no need for glob expansion
|
// commands operating on local paths have no need for glob expansion
|
||||||
@Override
|
@Override
|
||||||
protected List<PathData> expandArgument(String arg) throws IOException {
|
protected List<PathData> expandArgument(String arg) throws IOException {
|
||||||
|
List<PathData> items = new LinkedList<PathData>();
|
||||||
try {
|
try {
|
||||||
List<PathData> items = new LinkedList<PathData>();
|
|
||||||
items.add(new PathData(new URI(arg), getConf()));
|
items.add(new PathData(new URI(arg), getConf()));
|
||||||
return items;
|
|
||||||
} catch (URISyntaxException e) {
|
} catch (URISyntaxException e) {
|
||||||
throw new IOException("unexpected URISyntaxException", e);
|
if (Path.WINDOWS) {
|
||||||
|
// Unlike URI, PathData knows how to parse Windows drive-letter paths.
|
||||||
|
items.add(new PathData(arg, getConf()));
|
||||||
|
} else {
|
||||||
|
throw new IOException("unexpected URISyntaxException", e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
return items;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -19,7 +19,9 @@
|
||||||
package org.apache.hadoop.fs;
|
package org.apache.hadoop.fs;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.*;
|
||||||
|
import static org.junit.Assume.assumeTrue;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
|
@ -106,7 +108,7 @@ public class TestFsShellCopy {
|
||||||
Path targetDir = new Path(testRoot, "target");
|
Path targetDir = new Path(testRoot, "target");
|
||||||
Path filePath = new Path(testRoot, new Path("srcFile"));
|
Path filePath = new Path(testRoot, new Path("srcFile"));
|
||||||
lfs.create(filePath).close();
|
lfs.create(filePath).close();
|
||||||
checkPut(filePath, targetDir);
|
checkPut(filePath, targetDir, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@ -119,10 +121,42 @@ public class TestFsShellCopy {
|
||||||
Path dirPath = new Path(testRoot, new Path("srcDir"));
|
Path dirPath = new Path(testRoot, new Path("srcDir"));
|
||||||
lfs.mkdirs(dirPath);
|
lfs.mkdirs(dirPath);
|
||||||
lfs.create(new Path(dirPath, "srcFile")).close();
|
lfs.create(new Path(dirPath, "srcFile")).close();
|
||||||
checkPut(dirPath, targetDir);
|
checkPut(dirPath, targetDir, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testCopyFileFromWindowsLocalPath() throws Exception {
|
||||||
|
assumeTrue(Path.WINDOWS);
|
||||||
|
String windowsTestRootPath = (new File(testRootDir.toUri().getPath()
|
||||||
|
.toString())).getAbsolutePath();
|
||||||
|
Path testRoot = new Path(windowsTestRootPath, "testPutFile");
|
||||||
|
lfs.delete(testRoot, true);
|
||||||
|
lfs.mkdirs(testRoot);
|
||||||
|
|
||||||
|
Path targetDir = new Path(testRoot, "target");
|
||||||
|
Path filePath = new Path(testRoot, new Path("srcFile"));
|
||||||
|
lfs.create(filePath).close();
|
||||||
|
checkPut(filePath, targetDir, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testCopyDirFromWindowsLocalPath() throws Exception {
|
||||||
|
assumeTrue(Path.WINDOWS);
|
||||||
|
String windowsTestRootPath = (new File(testRootDir.toUri().getPath()
|
||||||
|
.toString())).getAbsolutePath();
|
||||||
|
Path testRoot = new Path(windowsTestRootPath, "testPutDir");
|
||||||
|
lfs.delete(testRoot, true);
|
||||||
|
lfs.mkdirs(testRoot);
|
||||||
|
|
||||||
|
Path targetDir = new Path(testRoot, "target");
|
||||||
|
Path dirPath = new Path(testRoot, new Path("srcDir"));
|
||||||
|
lfs.mkdirs(dirPath);
|
||||||
|
lfs.create(new Path(dirPath, "srcFile")).close();
|
||||||
|
checkPut(dirPath, targetDir, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private void checkPut(Path srcPath, Path targetDir)
|
private void checkPut(Path srcPath, Path targetDir, boolean useWindowsPath)
|
||||||
throws Exception {
|
throws Exception {
|
||||||
lfs.delete(targetDir, true);
|
lfs.delete(targetDir, true);
|
||||||
lfs.mkdirs(targetDir);
|
lfs.mkdirs(targetDir);
|
||||||
|
@ -134,37 +168,37 @@ public class TestFsShellCopy {
|
||||||
|
|
||||||
// copy to new file, then again
|
// copy to new file, then again
|
||||||
prepPut(dstPath, false, false);
|
prepPut(dstPath, false, false);
|
||||||
checkPut(0, srcPath, dstPath);
|
checkPut(0, srcPath, dstPath, useWindowsPath);
|
||||||
if (lfs.isFile(srcPath)) {
|
if (lfs.isFile(srcPath)) {
|
||||||
checkPut(1, srcPath, dstPath);
|
checkPut(1, srcPath, dstPath, useWindowsPath);
|
||||||
} else { // directory works because it copies into the dir
|
} else { // directory works because it copies into the dir
|
||||||
// clear contents so the check won't think there are extra paths
|
// clear contents so the check won't think there are extra paths
|
||||||
prepPut(dstPath, true, true);
|
prepPut(dstPath, true, true);
|
||||||
checkPut(0, srcPath, dstPath);
|
checkPut(0, srcPath, dstPath, useWindowsPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
// copy to non-existent subdir
|
// copy to non-existent subdir
|
||||||
prepPut(childPath, false, false);
|
prepPut(childPath, false, false);
|
||||||
checkPut(1, srcPath, dstPath);
|
checkPut(1, srcPath, dstPath, useWindowsPath);
|
||||||
|
|
||||||
// copy into dir, then with another name
|
// copy into dir, then with another name
|
||||||
prepPut(dstPath, true, true);
|
prepPut(dstPath, true, true);
|
||||||
checkPut(0, srcPath, dstPath);
|
checkPut(0, srcPath, dstPath, useWindowsPath);
|
||||||
prepPut(childPath, true, true);
|
prepPut(childPath, true, true);
|
||||||
checkPut(0, srcPath, childPath);
|
checkPut(0, srcPath, childPath, useWindowsPath);
|
||||||
|
|
||||||
// try to put to pwd with existing dir
|
// try to put to pwd with existing dir
|
||||||
prepPut(targetDir, true, true);
|
prepPut(targetDir, true, true);
|
||||||
checkPut(0, srcPath, null);
|
checkPut(0, srcPath, null, useWindowsPath);
|
||||||
prepPut(targetDir, true, true);
|
prepPut(targetDir, true, true);
|
||||||
checkPut(0, srcPath, new Path("."));
|
checkPut(0, srcPath, new Path("."), useWindowsPath);
|
||||||
|
|
||||||
// try to put to pwd with non-existent cwd
|
// try to put to pwd with non-existent cwd
|
||||||
prepPut(dstPath, false, true);
|
prepPut(dstPath, false, true);
|
||||||
lfs.setWorkingDirectory(dstPath);
|
lfs.setWorkingDirectory(dstPath);
|
||||||
checkPut(1, srcPath, null);
|
checkPut(1, srcPath, null, useWindowsPath);
|
||||||
prepPut(dstPath, false, true);
|
prepPut(dstPath, false, true);
|
||||||
checkPut(1, srcPath, new Path("."));
|
checkPut(1, srcPath, new Path("."), useWindowsPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void prepPut(Path dst, boolean create,
|
private void prepPut(Path dst, boolean create,
|
||||||
|
@ -183,12 +217,17 @@ public class TestFsShellCopy {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkPut(int exitCode, Path src, Path dest) throws Exception {
|
private void checkPut(int exitCode, Path src, Path dest,
|
||||||
|
boolean useWindowsPath) throws Exception {
|
||||||
String argv[] = null;
|
String argv[] = null;
|
||||||
|
String srcPath = src.toString();
|
||||||
|
if (useWindowsPath) {
|
||||||
|
srcPath = (new File(srcPath)).getAbsolutePath();
|
||||||
|
}
|
||||||
if (dest != null) {
|
if (dest != null) {
|
||||||
argv = new String[]{ "-put", src.toString(), pathAsString(dest) };
|
argv = new String[]{ "-put", srcPath, pathAsString(dest) };
|
||||||
} else {
|
} else {
|
||||||
argv = new String[]{ "-put", src.toString() };
|
argv = new String[]{ "-put", srcPath };
|
||||||
dest = new Path(Path.CUR_DIR);
|
dest = new Path(Path.CUR_DIR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue