Page MenuHomePhabricator

Output lint XML results to a file
ClosedPublic

Authored by joshuaspence on Jul 7 2015, 8:22 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Apr 17, 2:15 PM
Unknown Object (File)
Fri, Mar 29, 11:59 PM
Unknown Object (File)
Mon, Mar 25, 1:47 PM
Unknown Object (File)
Feb 1 2024, 3:18 AM
Unknown Object (File)
Dec 23 2023, 11:41 AM
Unknown Object (File)
Dec 19 2023, 8:39 AM
Unknown Object (File)
Dec 18 2023, 6:55 AM
Unknown Object (File)
Dec 14 2023, 2:25 AM
Subscribers

Details

Summary

Ref T8332. I find it really odd that I need to run arc lint --everything --output xml > checkstyle.xml and feel that it would be much more intuitive to just run arc lint --everything --output xml and have the output written to checkstyle.xml.

To provide context, we are running arc lint --everything in a CI job and parsing the results.

Test Plan

Ran arc lint --everything --output xml and saw the output written to file.

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

joshuaspence retitled this revision from to Output lint XML results to a file.
joshuaspence updated this object.
joshuaspence edited the test plan for this revision. (Show Details)
joshuaspence added a reviewer: epriestley.

This would be more of an issue after T4949 and T4950, which will probably necessitate writing the test output and coverage information to separate files.

epriestley edited edge metadata.
  • I think we should have an explicit --outfile or --out flag for this or similar, not magically and un-configurably output to some hard-coded file on disk.
  • I think these flags are less intuitive (run command + no output + you have to know to look for a file on disk is not obvious to me, and not something I'd expect any command to do by default), but the correctness/error-handling issues in T8332 are compelling to me to motivate these flags.
  • I think we should try to avoid writing partial files. For now, this probably means a Filesystem::writeFile() at the end. Some day, maybe that's stream-to-tempfile + move-at-the-end. (For example, what is XMLWriter's behavior if the disk is full?)
  • Per T8332, this makes the most sense to me as a top-level option, with stdout as a default that's overridable everywhere.
This revision now requires changes to proceed.Jul 8 2015, 8:44 AM

Also, what's the behavior if the file already exists? Destroy it without prompting (seems real bad)? Silently not write it (seems real confusing)? I'm guessing it's not "fatal", which I think is the only reasonable behavior.

Also, what's the behavior if the file already exists? Destroy it without prompting (seems real bad)? Silently not write it (seems real confusing)? I'm guessing it's not "fatal", which I think is the only reasonable behavior.

PHPCS will just overwrite the file.

joshuaspence edited edge metadata.

Add an explicit --outfile option.

So I guess using this approach we end up having --outfile and --coverage-outfile for arc unit?

epriestley edited edge metadata.

Yeah, that seems reasonable to me.

This revision is now accepted and ready to land.Jul 8 2015, 9:09 AM

I thought that the conditionals were a bit hacky, but maybe they aren't so bad. I was actually somewhat surprised that the Tempfile didn't get removed by the destructor... I guess because I rename the file which tricked it, although maybe I should explicitly call setPreserveFile(true) just to be safe.

This revision was automatically updated to reflect the committed changes.