-
-
Notifications
You must be signed in to change notification settings - Fork 361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tweak Maven build gen tests #4079
Changes from 2 commits
ab1c45d
5b8eccc
5a0b32f
e21e71e
a339e3c
79672c1
e460670
cbd729d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,17 @@ package mill.main.maven | |
|
||
import mill.T | ||
import mill.api.PathRef | ||
import mill.main.client.OutFiles | ||
import mill.scalalib.scalafmt.ScalafmtModule | ||
import mill.testkit.{TestBaseModule, UnitTester} | ||
import utest.* | ||
import utest.framework.TestPath | ||
|
||
object BuildGenTests extends TestSuite { | ||
|
||
// Change this to true to update test data on disk | ||
def updateSnapshots = false | ||
|
||
def tests: Tests = Tests { | ||
val resources = os.Path(sys.env("MILL_TEST_RESOURCE_DIR")) | ||
val scalafmtConfigFile = PathRef(resources / ".scalafmt.conf") | ||
|
@@ -33,7 +37,7 @@ object BuildGenTests extends TestSuite { | |
eval(module.reformat()) | ||
|
||
// test | ||
checkFiles(files, resources / expectedRel) | ||
checkFiles(files.map(_.path.relativeTo(dest).asSubPath), dest, resources / expectedRel) | ||
} | ||
|
||
// multi level nested modules | ||
|
@@ -125,15 +129,61 @@ object BuildGenTests extends TestSuite { | |
.map(PathRef(_)) | ||
.toSeq | ||
|
||
def checkFiles(actualFiles: Seq[PathRef], expectedRoot: os.Path): Boolean = { | ||
val expectedFiles = buildFiles(expectedRoot) | ||
def checkFiles(actualFiles: Seq[os.SubPath], root: os.Path, expectedRoot: os.Path): Boolean = { | ||
val expectedFiles = buildFiles(expectedRoot).map(_.path.relativeTo(expectedRoot).asSubPath) | ||
|
||
val actualFilesSet = actualFiles.toSet | ||
val expectedFilesSet = expectedFiles.toSet | ||
|
||
val missing = expectedFiles.filterNot(actualFilesSet) | ||
val extra = actualFiles.filterNot(expectedFilesSet) | ||
|
||
actualFiles.nonEmpty && | ||
actualFiles.length == expectedFiles.length && | ||
actualFiles.iterator.zip(expectedFiles.iterator).forall { | ||
case (actual, expected) => | ||
actual.path.endsWith(expected.path.relativeTo(expectedRoot)) && | ||
os.read.lines(actual.path) == os.read.lines(expected.path) | ||
val shared = actualFiles.filter(expectedFilesSet) | ||
|
||
val differentContent = shared.filter { subPath => | ||
val actual = os.read.lines(root / subPath) | ||
val expected = os.read.lines(expectedRoot / subPath) | ||
actual != expected | ||
} | ||
|
||
val valid = missing.isEmpty && extra.isEmpty && differentContent.isEmpty | ||
|
||
if (!valid) | ||
if (updateSnapshots) { | ||
System.err.println( | ||
s"Expected and actual files differ, updating expected files in resources under $expectedRoot" | ||
) | ||
|
||
for (subPath <- missing) { | ||
val path = expectedRoot / subPath | ||
System.err.println(s"Removing $subPath") | ||
os.remove(path) | ||
} | ||
|
||
for (subPath <- extra) { | ||
val source = root / subPath | ||
val dest = expectedRoot / subPath | ||
System.err.println(s"Creating $subPath") | ||
os.copy(source, dest, createFolders = true) | ||
} | ||
|
||
for (subPath <- differentContent) { | ||
val source = root / subPath | ||
val dest = expectedRoot / subPath | ||
System.err.println(s"Updating $subPath") | ||
os.copy.over(source, dest, createFolders = true) | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just tried that, it seems to work. I was using manual comparison and piecewise updates for two reasons: run sub-processes can be flaky sometimes, especially on Windows, and removing and copying all files updates last-modified times, which can sometimes lead to unintended side effects (with file watchers for example). But that might overcautious… There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems it's a problem on the CI, where we get things like
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How about using os.walk/os.perms.set to normalize the permissions before running git diff? should be a one liner more or less There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Right |
||
} else { | ||
// Non *.mill files, that are not in test data, that we don't want | ||
// to see in the diff | ||
val toCleanUp = os.walk(root, skip = _.startsWith(root / OutFiles.defaultOut)) | ||
.filter(os.isFile) | ||
.filter(!_.lastOpt.exists(_.endsWith(".mill"))) | ||
toCleanUp.foreach(os.remove) | ||
os.proc("git", "diff", "--no-index", expectedRoot, root) | ||
.call(stdin = os.Inherit, stdout = os.Inherit) | ||
} | ||
|
||
updateSnapshots || valid | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we use
git diff --no-index
to perform this comparison? That comes with a nice diff viewer for free for people to understand what the difference between the two folders is, and means a lot less comparison code for us to maintainThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trying that. That output is mainly meant for CI IMO. Locally, one can set
updateSnapshots
to true, and rungit diff
manually to check the diff.