Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OPENNLP-1663: Add test for FileToByteArraySampleStream #706

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,52 +15,38 @@
* limitations under the License.
*/

package opennlp.tools.convert;
package opennlp.tools.formats.convert;

import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
import java.util.Arrays;
import java.util.List;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.BeforeEach;

import opennlp.tools.AbstractTempDirTest;
import opennlp.tools.formats.DirectorySampleStream;
import opennlp.tools.formats.convert.FileToStringSampleStream;

public class FileToStringSampleStreamTest extends AbstractTempDirTest {
public abstract class AbstractConvertTest extends AbstractTempDirTest {

@Test
public void readFileTest() throws IOException {
protected DirectorySampleStream sampleStream;
protected List<String> sentences;

@BeforeEach
public void setUp() throws IOException {
final String sentence1 = "This is a sentence.";
final String sentence2 = "This is another sentence.";

List<String> sentences = Arrays.asList(sentence1, sentence2);

DirectorySampleStream directorySampleStream =
new DirectorySampleStream(tempDir.toFile(), null, false);
sentences = Arrays.asList(sentence1, sentence2);
sampleStream = new DirectorySampleStream(tempDir.toFile(), null, false);

Path tempFile1 = tempDir.resolve("tempFile1");
Files.writeString(tempFile1, sentence1, StandardCharsets.UTF_8, StandardOpenOption.CREATE);

Path tempFile2 = tempDir.resolve("tempFile2");
Files.writeString(tempFile2, sentence2, StandardCharsets.UTF_8, StandardOpenOption.CREATE);

try (FileToStringSampleStream stream =
new FileToStringSampleStream(directorySampleStream, Charset.defaultCharset())) {

String read = stream.read();
Assertions.assertTrue(sentences.contains(read));

read = stream.read();
Assertions.assertTrue(sentences.contains(read));
}
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* 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 opennlp.tools.formats.convert;

import java.io.IOException;
import java.nio.charset.StandardCharsets;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

public class FileToByteArraySampleStreamTest extends AbstractConvertTest {

@Test
public void readFileTest() throws IOException {
try (FileToByteArraySampleStream stream = new FileToByteArraySampleStream(sampleStream)) {
byte[] read = stream.read();
Assertions.assertTrue(sentences.contains(new String(read, StandardCharsets.UTF_8)));

read = stream.read();
Assertions.assertTrue(sentences.contains(new String(read, StandardCharsets.UTF_8)));
}
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
* 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 opennlp.tools.formats.convert;

import java.io.IOException;
import java.nio.charset.StandardCharsets;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

public class FileToStringSampleStreamTest extends AbstractConvertTest {

@Test
public void readFileTest() throws IOException {
try (FileToStringSampleStream stream =
new FileToStringSampleStream(sampleStream, StandardCharsets.UTF_8)) {
String read = stream.read();
Assertions.assertTrue(sentences.contains(read));

read = stream.read();
Assertions.assertTrue(sentences.contains(read));
}
}

}
Loading