/src/main/scala/org/scalatest/tools/SbtCommandParser.scala

http://scalatest.googlecode.com/ · Scala · 111 lines · 29 code · 11 blank · 71 comment · 0 complexity · 9260254156de4e8d287476c9dcf02106 MD5 · raw file

  1. package org.scalatest.tools
  2. import scala.util.parsing.combinator.syntactical.StandardTokenParsers
  3. import scala.util.parsing.combinator.lexical.StdLexical
  4. class SbtCommandParser extends StandardTokenParsers {
  5. lexical.delimiters ++= List("(", ")", "--", ",", "=", "\"")
  6. lexical.reserved ++= List("st", "include", "exclude", "membersonly", "wildcard", "suite", "junit", "testng", "dashboard", "file", "filename",
  7. "config", "directory", "stdout", "stderr", "graphic", "junitxml", "dashboard", "html", "reporterclass", "dashboard", "concurrent")
  8. def parseCommand(command: String) {
  9. val tokens = new lexical.Scanner(command)
  10. val result = phrase(cmd)(tokens)
  11. result match {
  12. case Success(tree, _) => println("success: " + tree)
  13. case e: NoSuccess => {
  14. Console.err.println(e)
  15. }
  16. }
  17. }
  18. def parseResult(command: String) = {
  19. val tokens = new lexical.Scanner(command)
  20. phrase(cmd)(tokens)
  21. }
  22. def cmd: Parser[Any] = "st" ~ opt(dashArgs)
  23. def dashArgs: Parser[Any] = "--" // ~ opt(args)
  24. /*
  25. def stArgs: Parser[Any] = rep(stArgsOpt)
  26. def stArgsOpt: Parser[Any] = include |
  27. exclude |
  28. concurrent |
  29. membersonly |
  30. wildcard |
  31. suite |
  32. junit |
  33. testng |
  34. stdout |
  35. stderr |
  36. graphic |
  37. file |
  38. junitxml |
  39. dashboard |
  40. html |
  41. reporterclass
  42. def include: Parser[Any] = "include" ~ list
  43. def exclude: Parser[Any] = "exclude" ~ list
  44. def concurrent: Parser[Any] = "concurrent"
  45. def membersonly: Parser[Any] = "membersonly" ~ list
  46. def wildcard: Parser[Any] = "wildcard" ~ list
  47. def list: Parser[Any] = "(" ~> repsep(stringLit, ",") <~ ")"
  48. def stdout: Parser[Any] = "stdout" ~ opt("(" ~ config ~ ")")
  49. def stderr: Parser[Any] = "stderr" ~ opt("(" ~ config ~ ")")
  50. def graphic: Parser[Any] = "graphic" ~ opt("(" ~ limitedConfig ~ ")")
  51. def file: Parser[Any] = "file" ~ "(" ~ "filename" ~ "=" ~ stringLit ~ opt("," ~ config) ~ ")"
  52. def junitxml: Parser[Any] = "junitxml" ~ "(" ~ "directory" ~ "=" ~ stringLit ~ ")"
  53. def dashboard: Parser[Any] = "dashboard" ~ "(" ~ "directory" ~ "=" ~ stringLit ~ opt("," ~ archive) ~ ")"
  54. def html: Parser[Any] = "html" ~ "(" ~ "filename" ~ "=" ~ stringLit ~ opt("," ~ config) ~ ")"
  55. def reporterclass: Parser[Any] = "reporterclass" ~ "(" ~ "classname=" ~ stringLit ~ opt("," ~ limitedConfig) ~ ")"
  56. def archive: Parser[Any] = "archive" ~ "=" ~ "\"" ~ numericLit ~ "\""
  57. def config: Parser[Any] = "config" ~ "=" ~ "\"" ~ rep(configOpt) ~ "\""
  58. def configOpt: Parser[Any] = "dropteststarting" |
  59. "droptestsucceeded" |
  60. "droptestignored" |
  61. "droptestpending" |
  62. "dropsuitestarting" |
  63. "dropsuitecompleted" |
  64. "dropinfoprovided" |
  65. "nocolor" |
  66. "shortstacks" |
  67. "fullstacks" |
  68. "durations"
  69. def limitedConfig: Parser[Any] = "config=\"" ~ rep(limitedConfigOpt) ~ "\""
  70. def limitedConfigOpt: Parser[Any] = "dropteststarting" |
  71. "droptestsucceeded" |
  72. "droptestignored" |
  73. "droptestpending" |
  74. "dropsuitestarting" |
  75. "dropsuitecompleted" |
  76. "dropinfoprovided"
  77. */
  78. }
  79. object SbtCommandParser {
  80. def main(args: Array[String]) {
  81. (new SbtCommandParser).parseCommand("""st""")
  82. /*
  83. (new SbtCommandParser).parseCommand("""st include("a", "b", "c")""")
  84. (new SbtCommandParser).parseCommand("""st exclude("a", "b", "c")""")
  85. (new SbtCommandParser).parseCommand("""st exclude("a", "b", "c") concurrent""")
  86. (new SbtCommandParser).parseCommand("""st membersonly("a", "b", "c") stdout""")
  87. (new SbtCommandParser).parseCommand("""st wildcard("a", "b", "c") stdout(config = "dropteststarting droptestpending")""")
  88. */
  89. }
  90. }