-
-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
integration.invalidation[codesig-subfolder]
suite to exercise c…
…odesig invalidation in the presence of subfolder `package.mill`s (#3747) It seems we are compiling more of the `*.mill` files than necessary when the body of a task changes, though I'm not sure why. Investigating and fixing that can be done in a follow up
- Loading branch information
Showing
3 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
integration/invalidation/codesig-subfolder/resources/build.mill
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package build | ||
import $packages._ | ||
import mill._ | ||
|
||
|
||
def foo = Task { println("running foo"); build.subfolder.helperFoo } |
7 changes: 7 additions & 0 deletions
7
integration/invalidation/codesig-subfolder/resources/subfolder/package.mill
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package build.subfolder | ||
import mill._ | ||
|
||
val valueFoo = 0 | ||
val valueFooUsedInBar = 0 | ||
def helperFoo = { println("running helperFoo"); 1 + valueFoo } | ||
def subFolderTask = Task { println("running subFolderTask") } |
97 changes: 97 additions & 0 deletions
97
integration/invalidation/codesig-subfolder/src/CodeSigSubfolderTests.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
package mill.integration | ||
|
||
import mill.testkit.UtestIntegrationTestSuite | ||
|
||
import utest._ | ||
|
||
// Basically a copy of CodeSigHelloTests, but split across two files | ||
// (build.mill and subfolder/package.mill) and with some extra assertions | ||
// to exercise invalidation behavior specific to multi-file-builds | ||
object CodeSigSubfolderTests extends UtestIntegrationTestSuite { | ||
val tests: Tests = Tests { | ||
test("simple") - integrationTest { tester => | ||
import tester._ | ||
|
||
val initial = eval("foo") | ||
|
||
assert(initial.out.linesIterator.toSeq == Seq("running foo", "running helperFoo")) | ||
assert(initial.err.contains("compiling 2 Scala sources")) | ||
|
||
val cached = eval("foo") | ||
assert(cached.out == "") | ||
assert(!cached.err.contains("compiling")) | ||
|
||
val subFolderRes = eval("subfolder.subFolderTask") | ||
assert(subFolderRes.out.linesIterator.toSeq == Seq("running subFolderTask")) | ||
assert(!subFolderRes.err.contains("compiling")) | ||
|
||
modifyFile(workspacePath / "build.mill", _.replace("running foo", "running foo2")) | ||
val mangledFoo = eval("foo") | ||
assert(mangledFoo.out.linesIterator.toSeq == Seq("running foo2", "running helperFoo")) | ||
assert(mangledFoo.err.contains("compiling 1 Scala source")) | ||
|
||
val cached2 = eval("foo") | ||
assert(cached2.out == "") | ||
assert(!cached2.err.contains("compiling")) | ||
|
||
// Changing stuff in the top-level build.mill does not invalidate tasks in subfolder/package.mill | ||
val subFolderResCached = eval("subfolder.subFolderTask") | ||
assert(subFolderResCached.out == "") | ||
assert(!subFolderResCached.err.contains("compiling")) | ||
|
||
modifyFile( | ||
workspacePath / "subfolder/package.mill", | ||
_.replace("running subFolderTask", "running subFolderTask2") | ||
) | ||
// Changing stuff in subfolder/package.mill does not invalidate unrelated tasks in build.mill | ||
val cached3 = eval("foo") | ||
assert(cached3.out == "") | ||
// TODO: why is this compiling both sources when we only changed | ||
// one file and did not change any public type signatures? | ||
assert(cached3.err.contains("compiling 2 Scala sources")) | ||
|
||
modifyFile( | ||
workspacePath / "subfolder/package.mill", | ||
_.replace("running helperFoo", "running helperFoo2") | ||
) | ||
val mangledHelperFoo = eval("foo") | ||
assert(mangledHelperFoo.out.linesIterator.toSeq == Seq("running foo2", "running helperFoo2")) | ||
// TODO: why is this compiling both sources when we only changed | ||
// one file and did not change any public type signatures? | ||
assert(mangledHelperFoo.err.contains("compiling 2 Scala sources")) | ||
|
||
// Make sure changing `val`s, which only affects the Module constructor and | ||
// not the Task method itself, causes invalidation | ||
modifyFile( | ||
workspacePath / "subfolder/package.mill", | ||
_.replace("val valueFoo = 0", "val valueFoo = 10") | ||
) | ||
val mangledValFoo = eval("foo") | ||
assert(mangledValFoo.out.linesIterator.toSeq == Seq("running foo2", "running helperFoo2")) | ||
// TODO: why is this compiling both sources when we only changed | ||
// one file and did not change any public type signatures? | ||
assert(mangledValFoo.err.contains("compiling 2 Scala sources")) | ||
|
||
// Even modifying `val`s that do not affect the task invalidates it, because | ||
// we only know that the constructor changed and don't do enough analysis to | ||
// know that this particular val is not used | ||
modifyFile( | ||
workspacePath / "subfolder/package.mill", | ||
_.replace("val valueFooUsedInBar = 0", "val valueFooUsedInBar = 10") | ||
) | ||
val mangledValFooUsedInBar = eval("foo") | ||
assert(mangledValFooUsedInBar.out.linesIterator.toSeq == Seq( | ||
"running foo2", | ||
"running helperFoo2" | ||
)) | ||
|
||
// TODO: why is this compiling both sources when we only changed | ||
// one file and did not change any public type signatures? | ||
assert(mangledValFooUsedInBar.err.contains("compiling 2 Scala sources")) | ||
|
||
val cached4 = eval("foo") | ||
assert(cached4.out == "") | ||
assert(!cached4.err.contains("compiling")) | ||
} | ||
} | ||
} |