aboutsummaryrefslogtreecommitdiff
path: root/dottydoc/test/BaseTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'dottydoc/test/BaseTest.scala')
-rw-r--r--dottydoc/test/BaseTest.scala57
1 files changed, 57 insertions, 0 deletions
diff --git a/dottydoc/test/BaseTest.scala b/dottydoc/test/BaseTest.scala
new file mode 100644
index 000000000..2233d03c8
--- /dev/null
+++ b/dottydoc/test/BaseTest.scala
@@ -0,0 +1,57 @@
+package dotty.tools
+package dottydoc
+
+import dotc.core.Contexts
+import Contexts.{ Context, ContextBase, FreshContext }
+import dotc.util.SourceFile
+import dotc.core.Phases.Phase
+import dotc.typer.FrontEnd
+import dottydoc.core.DocASTPhase
+import model.Package
+
+trait DottyTest {
+ dotty.tools.dotc.parsing.Scanners // initialize keywords
+
+ implicit var ctx: FreshContext = {
+ val base = new ContextBase
+ import base.settings._
+ val ctx = base.initialCtx.fresh
+ ctx.setSetting(ctx.settings.language, List("Scala2"))
+ ctx.setSetting(ctx.settings.YkeepComments, true)
+ base.initialize()(ctx)
+ ctx
+ }
+
+ private def compilerWithChecker(assertion: Map[String, Package] => Unit) = new DocCompiler {
+ private[this] val assertionPhase: List[List[Phase]] =
+ List(new Phase {
+ def phaseName = "assertionPhase"
+ override def run(implicit ctx: Context): Unit =
+ assertion(ctx.docbase.packages[Package].toMap)
+ }) :: Nil
+
+ override def phases =
+ super.phases ++ assertionPhase
+ }
+
+ def checkSource(source: String)(assertion: Map[String, Package] => Unit): Unit = {
+ val c = compilerWithChecker(assertion)
+ c.rootContext(ctx)
+ val run = c.newRun
+ run.compile(source)
+ }
+
+ def checkFiles(sources: List[String])(assertion: Map[String, Package] => Unit): Unit = {
+ val c = compilerWithChecker(assertion)
+ c.rootContext(ctx)
+ val run = c.newRun
+ run.compile(sources)
+ }
+
+ def checkSources(sourceFiles: List[SourceFile])(assertion: Map[String, Package] => Unit): Unit = {
+ val c = compilerWithChecker(assertion)
+ c.rootContext(ctx)
+ val run = c.newRun
+ run.compileSources(sourceFiles)
+ }
+}