Is there something in Scalatest that will allow me to test the output to the standard out via a println statement?

So far I've mainly been using FunSuite with ShouldMatchers.

e.g. how do we check the printed output of

object Hi {
  def hello() {
    println("hello world")
  }
}
link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

The usual way to test print statements on the console is to structure your program a bit differently so that you can intercept those statements. You can for example introduce an Output trait:

  trait Output {
    def print(s: String) = Console.println(s)
  }

  class Hi extends Output {
    def hello() = print("hello world")
  }

And in your tests you can define another trait MockOutput actually intercepting the calls:

  trait MockOutput extends Output {
    var messages: Seq[String] = Seq()

    override def print(s: String) = messages = messages :+ s
  }


  val hi = new Hi with MockOutput
  hi.hello()
  hi.messages should contain("hello world")
link|improve this answer
You need to add override to MockOutput – Amir Raminfar Aug 28 '11 at 18:20
I like this solution a lot, @Eric is there a way to do this without having to extend Output. I feel extending a trait, where that trait is not needed in the first place, is a hack. It would make sense if the trait was already needed and we created a test impl. – Amir Raminfar Aug 28 '11 at 18:29
1  
The only other way to avoid extending a trait is to do what Kevin or Matthieu are advising to. That being said, I have the philosophy that building your software so that it is testable is a good design decision. When you pursue that thought you go all the way to introducing traits for all your IO / external systems interactions. – Eric Aug 28 '11 at 23:18
feedback

If you just want to redirect console output for a limited duration, use the withOut and withErr methods defined on Console:

val stream = new java.io.ByteArrayOutputStream()
Console.withOut(stream) {
  //all printlns in this block will be redirected
  println("Fly me to the moon, let me play among the stars")
}
link|improve this answer
Good point, I forgot about that one. – Eric Aug 28 '11 at 23:18
feedback

You can replace where println writes to by using Console.setOut(PrintStream)

val stream = new java.io.ByteArrayOutputStream()
Console.setOut(stream)
println("Hello world")
Console.err.println(stream.toByteArray)
Console.err.println(stream.toString)

You can obviously use any type of stream you want. You can do the same sort of thing for stderr and stdin with

Console.setErr(PrintStream)
Console.setIn(PrintStream)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.