1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
import java.io.{ByteArrayOutputStream, PrintStream}
import scala.reflect.io.File
object Test extends App {
val baos = new ByteArrayOutputStream()
val ps = new PrintStream(baos)
// first test with the default classpath
(scala.Console withOut ps) {
scala.tools.scalap.Main.main(Array("-verbose", "java.lang.Object"))
}
val currentLocationCpFragment = File.pathSeparator + "."
// now make sure we saw the '.' in the classpath
val msg1 = baos.toString()
assert(msg1 contains currentLocationCpFragment, s"Did not see '.' in the default class path. Full results were:\n$msg1")
// then test again with a user specified classpath
baos.reset
(scala.Console withOut ps) {
scala.tools.scalap.Main.main(Array("-verbose", "-cp", "whatever", "java.lang.Object"))
}
// now make sure we did not see the '.' in the classpath
val msg2 = baos.toString()
assert(!(msg2 contains currentLocationCpFragment), s"Did saw '.' in the user specified class path. Full results were:\n$msg2")
}
|