aboutsummaryrefslogtreecommitdiff
path: root/compiler/test/debug/Gen
diff options
context:
space:
mode:
authorliu fengyun <liu@fengy.me>2017-02-06 14:51:24 +0100
committerliu fengyun <liu@fengy.me>2017-02-10 19:26:07 +0100
commit6823e15cf08c68ca67f688159536f7a506d1969e (patch)
treed7eee103b65b74cd37a5e2dd0f652610cfd76776 /compiler/test/debug/Gen
parentb5a9c8c4d1f832f2cc024f9cfe855d6e57bd35f9 (diff)
downloaddotty-6823e15cf08c68ca67f688159536f7a506d1969e.tar.gz
dotty-6823e15cf08c68ca67f688159536f7a506d1969e.tar.bz2
dotty-6823e15cf08c68ca67f688159536f7a506d1969e.zip
fix #1484: position of while incorrect in debug
Diffstat (limited to 'compiler/test/debug/Gen')
-rwxr-xr-xcompiler/test/debug/Gen175
1 files changed, 175 insertions, 0 deletions
diff --git a/compiler/test/debug/Gen b/compiler/test/debug/Gen
new file mode 100755
index 000000000..84e0db76e
--- /dev/null
+++ b/compiler/test/debug/Gen
@@ -0,0 +1,175 @@
+#!/bin/sh
+exec scala -savecompiled "$0" "$@"
+!#
+
+import scala.io.Source
+import scala.collection.mutable.Buffer
+import scala.collection.mutable.ListBuffer
+import scala.collection.mutable.StringBuilder
+
+/** Automate testing debuggability of generated code using JDB and expect
+ *
+ * The debugging information is annotated as comments to the code in brackets:
+ *
+ * val x = f(3) // [break] [next: line=5]
+ * val y = 5
+ *
+ * 1. A jdb command must be wrapped in brackets, like `[step]`. All jdb commands can be used.
+ * 2. To check output of jdb for a command, use `[cmd: expect]`.
+ * 3. If `expect` is wrapped in double quotes, regex is supported.
+ * 4. Break commands are collected and set globally.
+ * 5. Other commands will be send to jdb in the order they appear in the source file
+ *
+ * Note: jdb uses line number starts from 1
+ */
+
+object Gen {
+ val MainObject = "Test"
+ val CommandWait = 0.5
+
+ sealed trait Tree
+
+ case class Break(line: Int) extends Tree
+
+ case class Command(val name: String, val expect: Expect = EmptyExpect) extends Tree
+
+ sealed trait Expect
+
+ case object EmptyExpect extends Expect
+
+ case class LitExpect(lit: String) extends Expect
+
+ case class PatExpect(pat: String) extends Expect
+
+ case class Program(breaks: Seq[Break], commands: Seq[Command])
+
+ def error(msg: String): Nothing = {
+ throw new Exception(msg)
+ }
+
+ def parseCommand(command: String, lineNo: Int): Tree = {
+ val index = command.indexOf(':')
+ if (index == -1) {
+ // simple command
+ if (command == "break") Break(lineNo)
+ else Command(command)
+ } else {
+ val Seq(cmd, rhs) = command.split(":", 2).toSeq.map(_.trim)
+ if (rhs.startsWith("\"")) {
+ // regex match
+ val content = "\"(.+)\"".r
+ rhs match {
+ case content(expect) => Command(cmd, PatExpect(expect))
+ case _ => error(s"""incorrect specification: `$rhs` for `$cmd` at line $lineNo. Ending " expected.""")
+ }
+ } else {
+ // literal match
+ Command(cmd, LitExpect(rhs))
+ }
+ }
+ }
+
+ def parse(file: String): Program = {
+ val lines = Source.fromFile(file).getLines.toBuffer
+
+ val breaks = new ListBuffer[Break]()
+ val cmds = new ListBuffer[Command]()
+ lines.zipWithIndex.map { case (code, line) =>
+ val comment = if (code.indexOf("//") != -1) code.split("//").last else ""
+ val regex = """(?<=\[).*?(?=\])""".r
+ for (p <- regex findAllIn comment) parseCommand(p.trim, line + 1) match { // jdb index from 0
+ case b: Break => breaks += b
+ case c: Command => cmds += c
+ }
+ }
+
+ Program(breaks, cmds)
+ }
+
+ def generate(program: Program, source: String = "tests/debug/"): String = {
+ val Program(breaks, cmds) = program
+ val breakpoints = (breaks.map {
+ case Break(point) =>
+ s"""|send "stop at $MainObject$$:$point\\r"
+ |sleep $CommandWait
+ |expect "breakpoint $MainObject$$:$point"
+ |expect -re $$
+ """.stripMargin
+ }).mkString("\n\n")
+
+ val commands = (cmds.map {
+ case Command(cmd, EmptyExpect) =>
+ s"""|# send_user "send command `$cmd`\\n"
+ |send "$cmd\\r"
+ |sleep $CommandWait
+ |expect -re $$
+ """.stripMargin
+ case Command(cmd, LitExpect(lit)) =>
+ s"""|# send_user "send command `$cmd`\\n"
+ |send "$cmd\\r"
+ |sleep $CommandWait
+ |expect {
+ | "*$lit*" { send_user "success - $cmd : $lit \\n" }
+ | timeout {
+ | send_user "timeout while waiting for response: $cmd : $lit\\n"
+ | exit 1
+ | }
+ |}
+ |expect -re $$
+ |""".stripMargin
+ case Command(cmd, PatExpect(pat)) =>
+ s"""|# send_user "send command `$cmd`\\n"
+ |send "$cmd\\r"
+ |sleep $CommandWait
+ |expect {
+ | -re {$pat} { send_user "success - $cmd : $pat \\n" }
+ | timeout {
+ | send_user "timeout while waiting for response: $cmd : $pat\\n"
+ | exit 1
+ | }
+ |}
+ |expect -re $$
+ |""".stripMargin
+ }).mkString("\n\n")
+
+s"""|#!/usr/bin/expect
+ |
+ |# log_user 1
+ |# exp_internal 1
+ |# set timeout 5
+ |
+ |send_user "spawning job...\\n"
+ |
+ |spawn jdb -attach 5005 -sourcepath $source
+ |
+ |send_user "interacting...\\n"
+ |
+ |expect {
+ | "*VM Started*" { send_user "success - connected to server \\n" }
+ | timeout {
+ | send_user "timeout while waiting for: *VM Started*\\n"
+ | exit 1
+ | }
+ |}
+ |
+ |send_user "setting breakpoints...\\n"
+ |
+ |# breakpoints
+ |$breakpoints
+ |
+ |# run
+ |send_user "run program...\\n"
+ |send "run\\r"
+ |expect "Breakpoint hit"
+ |
+ |# interactions
+ |$commands""".stripMargin
+ }
+}
+
+val prog = Gen.parse(args(0))
+// println("--------------------------------")
+// println("prog:" + prog)
+// println("\n\n\n scrip:")
+// println("--------------------------------")
+println(Gen.generate(prog))