From 6b957d04557b6c72dd77676e246f4541442f182d Mon Sep 17 00:00:00 2001 From: Gilles Dubochet Date: Tue, 21 Sep 2010 12:42:12 +0000 Subject: [scaladoc] Adds some simple tests for Scaladoc ... [scaladoc] Adds some simple tests for Scaladoc (using Scalacheck). Contributed by Kato Kazuyosh. No review. --- test/scaladoc/model/CommentFactoryTest.scala | 68 ++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 test/scaladoc/model/CommentFactoryTest.scala (limited to 'test') diff --git a/test/scaladoc/model/CommentFactoryTest.scala b/test/scaladoc/model/CommentFactoryTest.scala new file mode 100644 index 0000000000..20b52b91f7 --- /dev/null +++ b/test/scaladoc/model/CommentFactoryTest.scala @@ -0,0 +1,68 @@ +import org.scalacheck._ + +import scala.tools.nsc.Global +import scala.tools.nsc.doc +import scala.tools.nsc.doc.model.comment._ + +class Factory(val g: Global, val s: doc.Settings) + extends doc.model.ModelFactory(g, s) { + thisFactory: Factory with CommentFactory with doc.model.TreeFactory => + + def strip(c: Comment): Option[Inline] = { + c.body match { + case Body(List(Paragraph(Chain(List(Summary(inner)))))) => Some(inner) + case _ => None + } + } + + def parseComment(s: String): Option[Inline] = + strip(parse(s, "", scala.tools.nsc.util.NoPosition)) +} + +object Test extends Properties("CommentFactory") { + val factory = { + val settings = new doc.Settings((str: String) => {}) + val reporter = new scala.tools.nsc.reporters.ConsoleReporter(settings) + val g = new Global(settings, reporter) + (new Factory(g, settings) with CommentFactory with doc.model.TreeFactory) + } + + def parse(src: String, dst: Inline) = { + factory.parseComment(src) match { + case Some(inline) => + inline == dst + case _ => + false + } + } + + property("parse") = parse( + "/** One two three */", + Text("One two three") + ) + property("parse") = parse( + "/** One `two` three */", + Chain(List(Text("One "), Monospace("two"), Text(" three"))) + ) + + property("parse") = parse( + """ +/** One two + * three */""", + Text("One two\nthree") + ) + property("parse") = parse( + """ +/** One `two` + * three */""", + Chain(List(Text("One "), Monospace("two"), Text("\nthree"))) + ) + + property("parse") = parse( + """ +/** One `two` + * three */""", + Chain(List(Text("One "), Monospace("two"), Text("\n three"))) + ) + +} -- cgit v1.2.3