Giter Site home page Giter Site logo

Comments (7)

joel-costigliola avatar joel-costigliola commented on July 20, 2024 1

We decided to close it since it was a bit of a corner case considering that there are ways to obtain an InputStream from a Reader and we have InputStream assertions.

from assertj.

nach-o-man avatar nach-o-man commented on July 20, 2024

If it is still desired I could try implementing it.

from assertj.

joel-costigliola avatar joel-costigliola commented on July 20, 2024

@nach-o-man thanks for your interest, I'll discuss with the team to see if it is still relevant (quite an old issue 😅 )

from assertj.

nach-o-man avatar nach-o-man commented on July 20, 2024

Indeed it is. Will browse to check if there is anythin I could grab. :)

from assertj.

davidsusu avatar davidsusu commented on July 20, 2024

ReaderAssert would be very useful. IMO Reader and InputStream are quite different. From a testing perspective Reader (with a small content) is more like to String.

InputStreamAssert could have asReader(Charset). (Also, InputStreamAssert should have an asString(Charset) method, just like ByteArrayAssert.)

there are ways to obtain an InputStream from a Reader

What do you mean by this? In some cases, it's not so easy. The standard library has no tool for generally achieving such a conversion (of course, apache-commons has ReaderInputStream, like some other third-party helper libs). Either way, ReaderAssert would be the proper fluent way to test Readers.

from assertj.

scordio avatar scordio commented on July 20, 2024

@davidsusu would you have some concrete examples to help re-evaluate the topic?

from assertj.

davidsusu avatar davidsusu commented on July 20, 2024

@scordio As a very basic example, this test:

assertThat(IOUtils.toString(clob.getCharacterStream())).isEqualTo("abcdefghi");

could be:

assertThat(clob.getCharacterStream()).hasContent("abcdefghi");

The latter is cleaner and shorter while requires no extra library or helper method.

Other lifelike examples:

assertThat(myReader).contains("some substring");
assertThat(myInputStream).asReader(StandardCharsets.UTF_8).contains("some substring");
assertThat(myReader).containsOnlyDigits();
assertThat(myReader).hasSize(42_424_242);
assertThat(myReader).hasSizeGreaterThan(343);
assertThat(myReader).hasSameContentAs(referenceReader);
assertThat(myReader).hasSameContentAsIgnoringWhitespace(referenceReader);
assertThat(myReader).hasSameSizeAs(referenceReader);
assertThat(myReader).decodedAsBase64().hasSameContentAs(referenceInputStream);
assertThat(myReader).decodedAsBase64().hasSameContentAs(referenceInputStream);
assertThat(myReader).decodedAsBase64(StandardCharsets.UTF_8).hasSameContentAs(referenceReader);
assertThat(myReader).asCharacterIterable().doesNotContain('x', 'y');

In these cases we handle the Reader nearly as simple as a String, but without the overhead of loading the entire content into the memory.

from assertj.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.