HADOOP-17870. Http Filesystem to qualify relative paths. (#3338)
Contributed by Yellowflash
This commit is contained in:
parent
164608b546
commit
4ea60b5733
@ -60,7 +60,8 @@ public URI getUri() {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FSDataInputStream open(Path path, int bufferSize) throws IOException {
|
public FSDataInputStream open(Path path, int bufferSize) throws IOException {
|
||||||
URLConnection conn = path.toUri().toURL().openConnection();
|
URI pathUri = makeQualified(path).toUri();
|
||||||
|
URLConnection conn = pathUri.toURL().openConnection();
|
||||||
InputStream in = conn.getInputStream();
|
InputStream in = conn.getInputStream();
|
||||||
return new FSDataInputStream(new HttpDataInputStream(in));
|
return new FSDataInputStream(new HttpDataInputStream(in));
|
||||||
}
|
}
|
||||||
@ -111,7 +112,7 @@ public boolean mkdirs(Path path, FsPermission fsPermission)
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FileStatus getFileStatus(Path path) throws IOException {
|
public FileStatus getFileStatus(Path path) throws IOException {
|
||||||
return new FileStatus(-1, false, 1, DEFAULT_BLOCK_SIZE, 0, path);
|
return new FileStatus(-1, false, 1, DEFAULT_BLOCK_SIZE, 0, makeQualified(path));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
import org.apache.hadoop.fs.Path;
|
import org.apache.hadoop.fs.Path;
|
||||||
import org.apache.hadoop.io.IOUtils;
|
import org.apache.hadoop.io.IOUtils;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
@ -33,6 +34,7 @@
|
|||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.util.stream.IntStream;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
|
|
||||||
@ -40,28 +42,48 @@
|
|||||||
* Testing HttpFileSystem.
|
* Testing HttpFileSystem.
|
||||||
*/
|
*/
|
||||||
public class TestHttpFileSystem {
|
public class TestHttpFileSystem {
|
||||||
|
private final Configuration conf = new Configuration(false);
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
public void setUp() {
|
||||||
|
conf.set("fs.http.impl", HttpFileSystem.class.getCanonicalName());
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testHttpFileSystem() throws IOException, URISyntaxException,
|
public void testHttpFileSystem() throws IOException, URISyntaxException,
|
||||||
InterruptedException {
|
InterruptedException {
|
||||||
Configuration conf = new Configuration(false);
|
|
||||||
conf.set("fs.http.impl", HttpFileSystem.class.getCanonicalName());
|
|
||||||
final String data = "foo";
|
final String data = "foo";
|
||||||
|
|
||||||
try (MockWebServer server = new MockWebServer()) {
|
try (MockWebServer server = new MockWebServer()) {
|
||||||
server.enqueue(new MockResponse().setBody(data));
|
IntStream.rangeClosed(1, 3).forEach(i -> server.enqueue(new MockResponse().setBody(data)));
|
||||||
server.start();
|
server.start();
|
||||||
URI uri = URI.create(String.format("http://%s:%d", server.getHostName(),
|
URI uri = URI.create(String.format("http://%s:%d", server.getHostName(),
|
||||||
server.getPort()));
|
server.getPort()));
|
||||||
FileSystem fs = FileSystem.get(uri, conf);
|
FileSystem fs = FileSystem.get(uri, conf);
|
||||||
try (InputStream is = fs.open(
|
assertSameData(fs, new Path(new URL(uri.toURL(), "/foo").toURI()), data);
|
||||||
new Path(new URL(uri.toURL(), "/foo").toURI()),
|
assertSameData(fs, new Path("/foo"), data);
|
||||||
4096)) {
|
assertSameData(fs, new Path("foo"), data);
|
||||||
byte[] buf = new byte[data.length()];
|
|
||||||
IOUtils.readFully(is, buf, 0, buf.length);
|
|
||||||
assertEquals(data, new String(buf, StandardCharsets.UTF_8));
|
|
||||||
}
|
|
||||||
RecordedRequest req = server.takeRequest();
|
RecordedRequest req = server.takeRequest();
|
||||||
assertEquals("/foo", req.getPath());
|
assertEquals("/foo", req.getPath());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testHttpFileStatus() throws IOException, URISyntaxException, InterruptedException {
|
||||||
|
URI uri = new URI("http://www.example.com");
|
||||||
|
FileSystem fs = FileSystem.get(uri, conf);
|
||||||
|
URI expectedUri = uri.resolve("/foo");
|
||||||
|
assertEquals(fs.getFileStatus(new Path(new Path(uri), "/foo")).getPath().toUri(), expectedUri);
|
||||||
|
assertEquals(fs.getFileStatus(new Path("/foo")).getPath().toUri(), expectedUri);
|
||||||
|
assertEquals(fs.getFileStatus(new Path("foo")).getPath().toUri(), expectedUri);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void assertSameData(FileSystem fs, Path path, String data) throws IOException {
|
||||||
|
try (InputStream is = fs.open(
|
||||||
|
path,
|
||||||
|
4096)) {
|
||||||
|
byte[] buf = new byte[data.length()];
|
||||||
|
IOUtils.readFully(is, buf, 0, buf.length);
|
||||||
|
assertEquals(data, new String(buf, StandardCharsets.UTF_8));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user