use of org.llorllale.cactoos.matchers.HasContent in project cactoos by yegor256.
the class TeeInputFromReaderTest method copiesFromReaderToFile.
@Test
public void copiesFromReaderToFile() throws Exception {
final String input = "Hello, товарищ file #1 äÄ üÜ öÖ and ß";
final File output = this.folder.newFile();
new LengthOf(new TeeInput(new ReaderOf(input), output)).value();
new Assertion<>("Must copy from reader to file.", new InputOf(output), new HasContent(input)).affirm();
}
use of org.llorllale.cactoos.matchers.HasContent in project cactoos by yegor256.
the class TeeInputFromReaderTest method copiesFromReaderWithCharsetToPath.
@Test
public void copiesFromReaderWithCharsetToPath() throws Exception {
final String input = "Hello, товарищ path #3 äÄ üÜ öÖ and ß";
final File output = this.folder.newFile();
new LengthOf(new TeeInput(new ReaderOf(input), output.toPath(), StandardCharsets.UTF_8)).value();
new Assertion<>("Must copy from reader with charset to path.", new InputOf(output), new HasContent(input)).affirm();
}
use of org.llorllale.cactoos.matchers.HasContent in project cactoos by yegor256.
the class TeeInputFromReaderTest method copiesFromReaderWithSizeToOutput.
@Test
public void copiesFromReaderWithSizeToOutput() throws Exception {
final String input = "Hello, товарищ output #2 äÄ üÜ öÖ and ß";
final File output = this.folder.newFile();
new LengthOf(new TeeInput(new ReaderOf(input), new OutputTo(output), input.length())).value();
new Assertion<>("Must copy from reader with size to output.", new InputOf(output), new HasContent(input)).affirm();
}
use of org.llorllale.cactoos.matchers.HasContent in project cactoos by yegor256.
the class TeeInputFromReaderTest method copiesFromReaderWithSizeToFile.
@Test
public void copiesFromReaderWithSizeToFile() throws Exception {
final String input = "Hello, товарищ file #2 äÄ üÜ öÖ and ß";
final File output = this.folder.newFile();
new LengthOf(new TeeInput(new ReaderOf(input), output, input.length())).value();
new Assertion<>("Must copy from reader with size to file.", new InputOf(output), new HasContent(input)).affirm();
}
use of org.llorllale.cactoos.matchers.HasContent in project cactoos by yegor256.
the class TeeInputFromReaderTest method copiesFromReaderWithCharsetToFile.
@Test
public void copiesFromReaderWithCharsetToFile() throws Exception {
final String input = "Hello, товарищ file #3 äÄ üÜ öÖ and ß";
final File output = this.folder.newFile();
new LengthOf(new TeeInput(new ReaderOf(input), output, StandardCharsets.UTF_8)).value();
new Assertion<>("Must copy from reader with charset to file.", new InputOf(output), new HasContent(input)).affirm();
}
Aggregations