Skip to content
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

Port engine/legacy integration tests to V2 #8363

Merged
merged 11 commits into from
Sep 30, 2019

Conversation

Eric-Arellano
Copy link
Contributor

@Eric-Arellano Eric-Arellano commented Sep 29, 2019

Similar to #8361, it was not obvious how to port all these tests because several of these ITs glob against all of testprojects, which is not possible with a chroot.

When combined with #8361, brings the number of remoted ITs (#8113) to 80%.

@@ -1,26 +1,6 @@
# Copyright 2014 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).

scala_library(
name = 'jvm-run-example-lib',
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is moved to a subdirectory. Keeping it at the root has major problems that we then need to have the IT pull in dependencies for other targets in this BUILD which have nothing to do with the IT.

'--no-v1',
'--v2',
'list',
'::',
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We no longer glob against everything. This is not feasible because we cannot sanely depend on every single file in the repo.

'src/::',]

result = runner(command)
result = runner(['list', self.list_target])
checker.assert_started()
return result
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not clear how this test really is checking that we don't cache. A sanity check on this change (i.e. not running against all of src/:: would be helpful).

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know this is merged, but just in case.
There was a problematic interaction between pantsd and the v2 graph a while ago.
The @console_rules would cache their result in the v2 graph, so two consecutive runs of a console_rule under pantsd would only run once, and the output wouldn't show on the second run.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got it. So this test should still work for checking that, right?

Also note that this does not have @ensure_daemon. Is that intentional?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got it. So this test should still work for checking that, right?

Yeap, it's a regression test, to make sure it never happens again.

Also note that this does not have @ensure_daemon. Is that intentional?

Yeah, the context manager is set to pantsd_successful_run, which will only trigger under pantsd. The nature of the bug that this regression test is testing means that pantsd is the only place it will manifest.

@@ -22,7 +22,7 @@ def setUp(self):
scan_set = set()

def should_ignore(file):
return file.endswith('.pyc')
return file.endswith('.pyc') or file.endswith('__init__.py')
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

V2 injects __init__.py that isn't normally there.

Copy link
Contributor

@benjyw benjyw left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Neat!!

@Eric-Arellano Eric-Arellano merged commit feeec28 into pantsbuild:master Sep 30, 2019
@Eric-Arellano Eric-Arellano deleted the port-engine-legacy branch September 30, 2019 01:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants