aboutsummaryrefslogtreecommitdiff
path: root/test/test.scala
blob: d684744d77100912ddf60d674e4b5c3ed06f7408 (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import cbt.paths._
import scala.collection.immutable.Seq

object Main{
  // micro framework  
  var successes = 0
  var failures = 0
  def assert(condition: Boolean, msg: String = null) = {
    scala.util.Try{
      Predef.assert(condition, msg)
    }.map{ _ =>
      print(".")
      successes += 1
    }.recover{
      case e: AssertionError =>
        println("FAILED")
        e.printStackTrace
        failures += 1
    }.get
  }

  def runCbt(path: String, args: Seq[String]) = {
    import java.io._
    val allArgs = ((cbtHome + "/cbt") +: args)
    val pb = new ProcessBuilder( allArgs :_* )
    pb.directory(new File(cbtHome + "/test/" + path))
    val p = pb.start    
    val berr = new BufferedReader(new InputStreamReader(p.getErrorStream));
    val bout = new BufferedReader(new InputStreamReader(p.getInputStream));
    p.waitFor
    import collection.JavaConversions._
    val err = Stream.continually(berr.readLine()).takeWhile(_ != null).mkString("\n")
    val out = Stream.continually(bout.readLine()).takeWhile(_ != null).mkString("\n")
    Result(out, err, p.exitValue == 0)
  }
  case class Result(out: String, err: String, exit0: Boolean)
  def assertSuccess(res: Result) = {
    assert(res.exit0,res.toString)
  }

  // tests
  def usage(path: String) = {
    val usageString = "Methods provided by CBT"
    val res = runCbt(path, Seq())
    assert(res.out == "", res.out)
    assert(res.err contains usageString, res.err)
  }
  def compile(path: String) = {
    val res = runCbt(path, Seq("compile"))
    assertSuccess(res)
    // assert(res.err == "", res.err) // FIXME: enable this
  }
  def main(args: Array[String]): Unit = {
    import cbt._

    println("Running tests ")
    
    usage("nothing")
    compile("nothing")

    {
      val logger = new Logger(Set[String]())
      val noContext = Context(cbtHome + "/test/" + "nothing",Seq(),logger)
      val b = new Build(noContext){
        override def dependencies = Seq(
          MavenDependency("net.incongru.watchservice","barbary-watchservice","1.0")(logger),
          MavenDependency("net.incongru.watchservice","barbary-watchservice","1.0")(logger)
        )
      }
      val cp = b.classpath
      assert(cp.strings.distinct == cp.strings, "duplicates in classpath: "+cp)
    }

    println(" DONE!")
    println(successes+" succeeded, "+ failures+" failed" )
  }
}