summaryrefslogblamecommitdiff
path: root/scalajslib/test/src/mill/scalajslib/HelloJSWorldTests.scala
blob: 89191ad2f7fb54fe6263910ead4e51c5d81d8689 (plain) (tree)
1
2
3
4
5
6
7
8
9
                       





                                                        
             
                           
                                                                
                                                                   
                                          
              
                                              
 

                                        
 



                                                                     
                                                                 

                                         
 

                                                   
                                                
                                          
                            
 

                                                      



                                                                       
                                                                                      

                                                               
                                                                                                             







                                                                          
                                                                                          

                                                                      
                                                                                                                   



         
                                                                                              

                                      





                                                                       
                                                           






                                                                             
     
   
 
                                                                                

                                                                   
                                                      

                                              
                 
                  


















                                                                          
                                                      

















                                                                                       


                                                                         
                                                                            














                                                                                


                                                           
                                                              

                


                                                           
                                                              


                         
                                                                                                        




                                                                            






                                                                                                                       

























































                                                                                                                               
     


                                               


                                    









                                              
                                     


   
package mill.scalajslib

import java.io.{FileReader, StringWriter}
import java.util.jar.JarFile
import javax.script.{ScriptContext, ScriptEngineManager}

import ammonite.ops._
import mill._
import mill.define.Discover
import mill.scalalib.{DepSyntax, Lib, PublishModule, TestRunner}
import mill.scalalib.publish.{Developer, License, PomSettings, SCM}
import mill.util.{TestEvaluator, TestUtil}
import utest._
import mill.util.TestEvaluator.implicitDisover

import scala.collection.JavaConverters._


object HelloJSWorldTests extends TestSuite {


  trait HelloJSWorldModule extends ScalaJSModule with PublishModule {
    override def millSourcePath = HelloJSWorldTests.workspacePath
    override def mainClass = Some("Main")
  }

  object HelloJSWorld extends TestUtil.BaseModule {
    val matrix = for {
      scala <- Seq("2.11.8", "2.12.3", "2.12.4")
      scalaJS <- Seq("0.6.22", "1.0.0-M2")
    } yield (scala, scalaJS)

    object build extends Cross[BuildModule](matrix:_*)

    object buildUTest extends Cross[BuildModuleUtest](matrix:_*)
    class BuildModuleUtest(scalaVersion0: String, sjsVersion0: String)
      extends BuildModule(scalaVersion0: String, sjsVersion0: String) {
      object test extends super.Tests {
        override def sources = T.input{ Agg(PathRef(millSourcePath / 'src / 'utest)) }
        def testFramework: T[String] = "utest.runner.Framework"
        override def ivyDeps = Agg(
          ivy"com.lihaoyi:utest_sjs${scalaJSBinaryVersion()}_${Lib.scalaBinaryVersion(scalaVersion())}:0.6.3"
        )
      }
    }

    object buildScalaTest extends Cross[BuildModuleScalaTest](matrix:_*)
    class BuildModuleScalaTest(scalaVersion0: String, sjsVersion0: String)
      extends BuildModule(scalaVersion0: String, sjsVersion0: String) {
      object test extends super.Tests {
        override def sources = T.input{ Agg(PathRef(millSourcePath / 'src / 'scalatest)) }
        def testFramework: T[String] = "org.scalatest.tools.Framework"
        override def ivyDeps = Agg(
          ivy"org.scalatest:scalatest_sjs${scalaJSBinaryVersion()}_${Lib.scalaBinaryVersion(scalaVersion())}:3.0.4"
        )
      }
    }

    class BuildModule(scalaVersion0: String, sjsVersion0: String) extends HelloJSWorldModule {
      def scalaVersion = scalaVersion0
      def scalaJSVersion = sjsVersion0
      def pomSettings = PomSettings(
        organization = "com.lihaoyi",
        description = "hello js world ready for real world publishing",
        url = "https://github.com/lihaoyi/hello-world-publish",
        licenses = Seq(
          License("Apache License, Version 2.0",
            "http://www.apache.org/licenses/LICENSE-2.0")),
        scm = SCM(
          "https://github.com/lihaoyi/hello-world-publish",
          "scm:git:https://github.com/lihaoyi/hello-world-publish"
        ),
        developers =
          Seq(Developer("lihaoyi", "Li Haoyi", "https://github.com/lihaoyi"))
      )
    }
  }

  val millSourcePath = pwd / 'scalajslib / 'test / 'resources / "hello-js-world"
  val workspacePath = pwd / 'target / 'workspace / "hello-js-world"
  val outputPath = workspacePath / 'out
  val mainObject = workspacePath / 'src / "Main.scala"

  val helloWorldEvaluator = new TestEvaluator(
    HelloJSWorld,
    workspacePath,
  )

  class Console {
    val out = new StringWriter()
    def log(s: String): Unit = out.append(s)
  }

  def runJS(path: Path): String = {
    val engineManager = new ScriptEngineManager
    val engine = engineManager.getEngineByName("nashorn")
    val console = new Console
    engine.getBindings(ScriptContext.ENGINE_SCOPE).put("console", console)
    engine.eval(new FileReader(path.toIO))
    console.out.toString
  }

  def tests: Tests = Tests {
    prepareWorkspace()
    'compile - {
      def testCompileFromScratch(scalaVersion: String,
                          scalaJSVersion: String): Unit = {
        val Right((result, evalCount)) =
          helloWorldEvaluator(HelloJSWorld.build(scalaVersion, scalaJSVersion).compile)

        val outPath = result.classes.path
        val outputFiles = ls.rec(outPath)
        val expectedClassfiles = compileClassfiles(outPath)
        assert(
          outputFiles.toSet == expectedClassfiles,
          evalCount > 0
        )

        // don't recompile if nothing changed
        val Right((_, unchangedEvalCount)) =
          helloWorldEvaluator(HelloJSWorld.build(scalaVersion, scalaJSVersion).compile)
        assert(unchangedEvalCount == 0)
      }

      'fromScratch_2124_0621 - testCompileFromScratch("2.12.4", "0.6.22")
      'fromScratch_2123_0621 - testCompileFromScratch("2.12.3", "0.6.22")
      'fromScratch_2118_0621 - testCompileFromScratch("2.11.8", "0.6.22")
      'fromScratch_2124_100M2 - testCompileFromScratch("2.12.4", "1.0.0-M2")
    }

    def testRun(scalaVersion: String,
                scalaJSVersion: String,
                mode: OptimizeMode): Unit = {
      val task = mode match {
        case FullOpt => HelloJSWorld.build(scalaVersion, scalaJSVersion).fullOpt
        case FastOpt => HelloJSWorld.build(scalaVersion, scalaJSVersion).fastOpt
      }
      val Right((result, evalCount)) = helloWorldEvaluator(task)
      val output = runJS(result.path)
      assert(output == "Hello Scala.js")
    }

    'fullOpt - {
      'run_2124_0621 - testRun("2.12.4", "0.6.22", FullOpt)
      'run_2123_0621 - testRun("2.12.3", "0.6.22", FullOpt)
      'run_2118_0621 - testRun("2.11.8", "0.6.22", FullOpt)
      'run_2124_100M2 - testRun("2.12.4", "1.0.0-M2", FullOpt)
    }
    'fastOpt - {
      'run_2124_0621 - testRun("2.12.4", "0.6.22", FastOpt)
      'run_2123_0621 - testRun("2.12.3", "0.6.22", FastOpt)
      'run_2118_0621 - testRun("2.11.8", "0.6.22", FastOpt)
      'run_2124_100M2 - testRun("2.12.4", "1.0.0-M2", FastOpt)
    }
    'jar - {
      'containsSJSIRs - {
        val Right((result, evalCount)) = helloWorldEvaluator(HelloJSWorld.build("2.12.4", "0.6.22").jar)
        val jar = result.path
        val entries = new JarFile(jar.toIO).entries().asScala.map(_.getName)
        assert(entries.contains("Main$.sjsir"))
      }
    }
    'publish - {
      def testArtifactId(scalaVersion: String,
                         scalaJSVersion: String,
                         artifactId: String): Unit = {
        val Right((result, evalCount)) = helloWorldEvaluator(HelloJSWorld.build(scalaVersion, scalaJSVersion).artifact)
        assert(result.id == artifactId)
      }
      'artifactId_0621 - testArtifactId("2.12.4", "0.6.22", "hello-js-world_sjs0.6_2.12")
      'artifactId_100M2 - testArtifactId("2.12.4", "1.0.0-M2", "hello-js-world_sjs1.0.0-M2_2.12")
    }
    'test - {
      def runTests(testTask: define.Command[(String, Seq[TestRunner.Result])]): Map[String, Map[String, TestRunner.Result]] = {
        val Right(((_, testResults), evalCount)) = helloWorldEvaluator(testTask)

        assert(evalCount > 0)

        testResults
          .groupBy(_.fullyQualifiedName)
          .mapValues(_.map(e => e.selector -> e).toMap)
      }

      def checkUtest(scalaVersion: String, scalaJSVersion: String) = {
        val resultMap = runTests(HelloJSWorld.buildUTest(scalaVersion, scalaJSVersion).test.test())

        val mainTests = resultMap("MainTests")
        val argParserTests = resultMap("ArgsParserTests")

        assert(
          mainTests.size == 2,
          mainTests("MainTests.vmName.containJs").status == "Success",
          mainTests("MainTests.vmName.containScala").status == "Success",

          argParserTests.size == 2,
          argParserTests("ArgsParserTests.one").status == "Success",
          argParserTests("ArgsParserTests.two").status == "Failure"
        )
      }

      def checkScalaTest(scalaVersion: String, scalaJSVersion: String) = {
        val resultMap = runTests(HelloJSWorld.buildScalaTest(scalaVersion, scalaJSVersion).test.test())

        val mainSpec = resultMap("MainSpec")
        val argParserSpec = resultMap("ArgsParserSpec")

        assert(
          mainSpec.size == 2,
          mainSpec("vmName should contain js").status == "Success",
          mainSpec("vmName should contain Scala").status == "Success",

          argParserSpec.size == 2,
          argParserSpec("parse should one").status == "Success",
          argParserSpec("parse should two").status == "Failure"
        )
      }

      'utest_2118_0621 - checkUtest("2.11.8", "0.6.22")
      'utest_2124_0621 - checkUtest("2.12.4", "0.6.22")
      'utest_2118_100M2 - checkUtest("2.11.8", "1.0.0-M2")
      'utest_2124_100M2 - checkUtest("2.12.4", "1.0.0-M2")

      'scalaTest_2118_0621 - checkScalaTest("2.11.8", "0.6.22")
      'scalaTest_2124_0621 - checkScalaTest("2.12.4", "0.6.22")
//      No scalatest artifact for scala.js 1.0.0-M2 published yet
//      'scalaTest_2118_100M2 - checkScalaTest("2.11.8", "1.0.0-M2")
//      'scalaTest_2124_100M2 - checkScalaTest("2.12.4", "1.0.0-M2")
    }
  }

  def compileClassfiles(parentDir: Path) = Set(
    parentDir / "ArgsParser$.class",
    parentDir / "ArgsParser$.sjsir",
    parentDir / "ArgsParser.class",
    parentDir / "Main.class",
    parentDir / "Main$.class",
    parentDir / "Main$delayedInit$body.class",
    parentDir / "Main$.sjsir",
    parentDir / "Main$delayedInit$body.sjsir"
  )

  def prepareWorkspace(): Unit = {
    rm(workspacePath)
    mkdir(workspacePath / up)
    cp(millSourcePath, workspacePath)
  }

}