summaryrefslogtreecommitdiff
path: root/scalalib/test/src
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-04-01 23:01:42 -0700
committerLi Haoyi <haoyi.sg@gmail.com>2018-04-01 23:02:16 -0700
commitf5097f96503dc60f773f68f97beea9e61822d7ee (patch)
tree4edb612fc319fbdac24040924fbafa762234b194 /scalalib/test/src
parentbbd162d3518b4e294a9ad0d6c1d6f23e680f4712 (diff)
downloadmill-f5097f96503dc60f773f68f97beea9e61822d7ee.tar.gz
mill-f5097f96503dc60f773f68f97beea9e61822d7ee.tar.bz2
mill-f5097f96503dc60f773f68f97beea9e61822d7ee.zip
revert #254 to fix bootstrapping https://github.com/lihaoyi/mill/issues/268
Diffstat (limited to 'scalalib/test/src')
-rw-r--r--scalalib/test/src/mill/scalalib/ResolveDepsTests.scala18
-rw-r--r--scalalib/test/src/mill/scalalib/publish/IvyTests.scala60
-rw-r--r--scalalib/test/src/mill/scalalib/publish/PomTests.scala12
3 files changed, 3 insertions, 87 deletions
diff --git a/scalalib/test/src/mill/scalalib/ResolveDepsTests.scala b/scalalib/test/src/mill/scalalib/ResolveDepsTests.scala
index 861fa312..97fcbd50 100644
--- a/scalalib/test/src/mill/scalalib/ResolveDepsTests.scala
+++ b/scalalib/test/src/mill/scalalib/ResolveDepsTests.scala
@@ -34,24 +34,6 @@ object ResolveDepsTests extends TestSuite {
assert(paths.exists(_.path.toString.contains("byte-buddy")))
}
- 'excludeTransitiveDeps - {
- val deps = Agg(ivy"com.lihaoyi::pprint:0.5.3".exclude("com.lihaoyi" -> "fansi_2.12"))
- val Success(paths) = evalDeps(deps)
- assert(!paths.exists(_.path.toString.contains("fansi_2.12")))
- }
-
- 'excludeTransitiveDepsByOrg - {
- val deps = Agg(ivy"com.lihaoyi::pprint:0.5.3".excludeOrg("com.lihaoyi"))
- val Success(paths) = evalDeps(deps)
- assert(!paths.exists(path => path.path.toString.contains("com/lihaoyi") && !path.path.toString.contains("pprint_2.12")))
- }
-
- 'excludeTransitiveDepsByName - {
- val deps = Agg(ivy"com.lihaoyi::pprint:0.5.3".excludeName("fansi_2.12"))
- val Success(paths) = evalDeps(deps)
- assert(!paths.exists(_.path.toString.contains("fansi_2.12")))
- }
-
'errOnInvalidOrgDeps - {
val deps = Agg(ivy"xxx.yyy.invalid::pprint:0.5.3")
val Failure(errMsg, _) = evalDeps(deps)
diff --git a/scalalib/test/src/mill/scalalib/publish/IvyTests.scala b/scalalib/test/src/mill/scalalib/publish/IvyTests.scala
deleted file mode 100644
index 0f275dd9..00000000
--- a/scalalib/test/src/mill/scalalib/publish/IvyTests.scala
+++ /dev/null
@@ -1,60 +0,0 @@
-package mill.scalalib.publish
-
-import utest._
-import mill._
-
-import scala.xml.{Node, NodeSeq, XML}
-
-object IvyTests extends TestSuite {
-
- def tests: Tests = Tests {
- val artifactId = "mill-scalalib_2.12"
- val artifact =
- Artifact("com.lihaoyi", "mill-scalalib_2.12", "0.0.1")
- val deps = Agg(
- Dependency(Artifact("com.lihaoyi", "mill-main_2.12", "0.1.4"),
- Scope.Compile),
- Dependency(Artifact("org.scala-sbt", "test-interface", "1.0"),
- Scope.Compile),
- Dependency(Artifact("com.lihaoyi", "pprint_2.12", "0.5.3"),
- Scope.Compile, exclusions = List("com.lihaoyi" -> "fansi_2.12", "*" -> "sourcecode_2.12"))
- )
-
- 'fullIvy - {
- val fullIvy = XML.loadString(Ivy(artifact, deps))
-
- 'topLevel - {
- val info = singleNode(fullIvy \ "info")
- assert(
- singleAttr(info, "organisation") == artifact.group
- , singleAttr(info, "module") == artifact.id
- , singleAttr(info, "revision") == artifact.version
- )
- }
-
- 'dependencies - {
- val dependencies = fullIvy \ "dependencies" \ "dependency"
- val ivyDeps = deps.indexed
-
- assert(dependencies.size == ivyDeps.size)
-
- dependencies.zipWithIndex.foreach { case (dep, index) =>
- assert(
- singleAttr(dep, "org") == ivyDeps(index).artifact.group
- , singleAttr(dep, "name") == ivyDeps(index).artifact.id
- , singleAttr(dep, "rev") == ivyDeps(index).artifact.version
- , (dep \ "exclude").zipWithIndex forall { case (exclude, j) =>
- singleAttr(exclude, "org") == ivyDeps(index).exclusions(j)._1 &&
- singleAttr(exclude, "name") == ivyDeps(index).exclusions(j)._2
- }
- )
- }
- }
- }
- }
-
- def singleNode(seq: NodeSeq): Node =
- seq.headOption.getOrElse(throw new RuntimeException("empty seq"))
- def singleAttr(node: Node, attr: String): String =
- node.attribute(attr).flatMap(_.headOption.map(_.text)).getOrElse(throw new RuntimeException(s"empty attr $attr"))
-}
diff --git a/scalalib/test/src/mill/scalalib/publish/PomTests.scala b/scalalib/test/src/mill/scalalib/publish/PomTests.scala
index c15ff172..31e87446 100644
--- a/scalalib/test/src/mill/scalalib/publish/PomTests.scala
+++ b/scalalib/test/src/mill/scalalib/publish/PomTests.scala
@@ -15,9 +15,7 @@ object PomTests extends TestSuite {
Dependency(Artifact("com.lihaoyi", "mill-main_2.12", "0.1.4"),
Scope.Compile),
Dependency(Artifact("org.scala-sbt", "test-interface", "1.0"),
- Scope.Compile),
- Dependency(Artifact("com.lihaoyi", "pprint_2.12", "0.5.3"),
- Scope.Compile, exclusions = List("com.lihaoyi" -> "fansi_2.12", "*" -> "sourcecode_2.12"))
+ Scope.Compile)
)
val settings = PomSettings(
description = "mill-scalalib",
@@ -106,7 +104,7 @@ object PomTests extends TestSuite {
'dependencies - {
val dependencies = fullPom \ "dependencies" \ "dependency"
- assert(dependencies.size == 3)
+ assert(dependencies.size == 2)
val pomDeps = deps.indexed
@@ -116,11 +114,7 @@ object PomTests extends TestSuite {
singleText(dep \ "groupId") == pomDeps(index).artifact.group,
singleText(dep \ "artifactId") == pomDeps(index).artifact.id,
singleText(dep \ "version") == pomDeps(index).artifact.version,
- optText(dep \ "scope").isEmpty,
- (dep \ "exclusions").zipWithIndex.forall { case (node, j) =>
- singleText(node \ "exclude" \ "groupId") == pomDeps(index).exclusions(j)._1 &&
- singleText(node \ "exclude" \ "artifactId") == pomDeps(index).exclusions(j)._2
- }
+ optText(dep \ "scope").isEmpty
)
}
}