Page MenuHomePhabricator

Add a `bin/herald test ...` for doing test runs via the CLI
ClosedPublic

Authored by epriestley on Nov 14 2018, 11:29 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Jun 26, 12:21 PM
Unknown Object (File)
Mon, Jun 22, 2:24 AM
Unknown Object (File)
Apr 14 2026, 10:35 AM
Unknown Object (File)
Apr 2 2026, 5:30 PM
Unknown Object (File)
Mar 28 2026, 4:06 PM
Unknown Object (File)
Mar 27 2026, 6:53 PM
Unknown Object (File)
Feb 11 2026, 2:09 AM
Unknown Object (File)
Jan 19 2026, 8:00 AM
Subscribers
None

Details

Summary

Ref T13216. See D19666. It's currently tricky to profile Herald test runs since you have to submit a form and repeating them is a bit of a mess. Provide a simple CLI wrapper so we can use --xprofile. This is also maybe nice-to-have if we're ever debugging anything here.

Test Plan

Ran bin/herald test --object ... --type ... and got a sensible looking transcript in the UI.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Harbormaster returned this revision to the author for changes because remote builds failed.Nov 14 2018, 11:29 PM
Harbormaster failed remote builds in B21148: Diff 47299!

Stacked on qsprintf(),.

amckinley added inline comments.
src/applications/herald/management/HeraldTestManagementWorkflow.php
41

Maybe we want to take a PHID as an argument in addition to an object name?

115

It might make sense to test a disabled Herald rule, since the rule might be disabled for bugginess but someone wants to test it from here before reenabling it.

This revision is now accepted and ready to land.Nov 15 2018, 10:20 PM
epriestley added inline comments.
src/applications/herald/management/HeraldTestManagementWorkflow.php
41

withNames() is roughly withMonogramsOrPHIDs(...) and will load objects by PHID if PHIDs are passed in.

115

We could theoretically offer single-rule test runs but it would be slightly tricky because of the "Another Herald Rule: ..." condition, which can mean that individual rules don't truly run in isolation.

Reasonable-ish workarounds today are to remove the actions or add an impossible condition at the end of the rule you want to test.

This revision was automatically updated to reflect the committed changes.