blob: 4047961eaf09886753c7fb077d8bffe67a94ef5a [file] [log] [blame]
/*
* 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
*
* https://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.avro.mapreduce;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertEquals;
import static org.hamcrest.MatcherAssert.assertThat;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.nio.charset.StandardCharsets;
import org.apache.avro.mapred.FsInput;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
public class TestFsInput {
private static File file;
private static final String FILE_CONTENTS = "abcdefghijklmnopqrstuvwxyz";
private Configuration conf;
private FsInput fsInput;
@Rule
public TemporaryFolder DIR = new TemporaryFolder();
@Before
public void setUp() throws Exception {
conf = new Configuration();
conf.set("fs.default.name", "file:///");
file = new File(DIR.getRoot(), "file.txt");
try (
PrintWriter out = new PrintWriter(new OutputStreamWriter(new FileOutputStream(file), StandardCharsets.UTF_8))) {
out.print(FILE_CONTENTS);
}
fsInput = new FsInput(new Path(file.getPath()), conf);
}
@After
public void tearDown() throws Exception {
if (fsInput != null) {
fsInput.close();
}
}
@Test
public void testConfigurationConstructor() throws Exception {
try (FsInput in = new FsInput(new Path(file.getPath()), conf)) {
int expectedByteCount = 1;
byte[] readBytes = new byte[expectedByteCount];
int actualByteCount = fsInput.read(readBytes, 0, expectedByteCount);
assertThat(actualByteCount, is(equalTo(expectedByteCount)));
}
}
@Test
public void testFileSystemConstructor() throws Exception {
Path path = new Path(file.getPath());
FileSystem fs = path.getFileSystem(conf);
try (FsInput in = new FsInput(path, fs)) {
int expectedByteCount = 1;
byte[] readBytes = new byte[expectedByteCount];
int actualByteCount = fsInput.read(readBytes, 0, expectedByteCount);
assertThat(actualByteCount, is(equalTo(expectedByteCount)));
}
}
@Test
public void testLength() throws IOException {
assertEquals(fsInput.length(), FILE_CONTENTS.length());
}
@Test
public void testRead() throws Exception {
byte[] expectedBytes = FILE_CONTENTS.getBytes(StandardCharsets.UTF_8);
byte[] actualBytes = new byte[expectedBytes.length];
int actualByteCount = fsInput.read(actualBytes, 0, actualBytes.length);
assertThat(actualBytes, is(equalTo(expectedBytes)));
assertThat(actualByteCount, is(equalTo(expectedBytes.length)));
}
@Test
public void testSeek() throws Exception {
int seekPos = FILE_CONTENTS.length() / 2;
byte[] fileContentBytes = FILE_CONTENTS.getBytes(StandardCharsets.UTF_8);
byte expectedByte = fileContentBytes[seekPos];
fsInput.seek(seekPos);
byte[] readBytes = new byte[1];
fsInput.read(readBytes, 0, 1);
byte actualByte = readBytes[0];
assertThat(actualByte, is(equalTo(expectedByte)));
}
@Test
public void testTell() throws Exception {
long expectedTellPos = FILE_CONTENTS.length() / 2;
fsInput.seek(expectedTellPos);
long actualTellPos = fsInput.tell();
assertThat(actualTellPos, is(equalTo(expectedTellPos)));
}
}