Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1 | = gerrit test-submit rule |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 2 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3 | == NAME |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 4 | gerrit test-submit rule - Test prolog submit rules with a chosen changeset. |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 5 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 6 | == SYNOPSIS |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 7 | -- |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 8 | 'ssh' -p <port> <host> 'gerrit test-submit rule' |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 9 | [-s] |
| 10 | [--no-filters] |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 11 | CHANGE |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 12 | -- |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 13 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 14 | == DESCRIPTION |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 15 | Provides a way to test prolog link:prolog-cookbook.html[submit rules]. |
| 16 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 17 | == OPTIONS |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 18 | -s:: |
| 19 | Reads a rules.pl file from stdin instead of rules.pl in refs/meta/config. |
| 20 | |
| 21 | --no-filters:: |
| 22 | Don't run the submit_filter/2 from the parent projects of the specified change. |
| 23 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 24 | == ACCESS |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 25 | Can be used by anyone that has permission to read the specified changeset. |
| 26 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 27 | == EXAMPLES |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 28 | |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 29 | Test submit_rule from stdin and return the results as JSON. |
| 30 | ==== |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 31 | cat rules.pl | ssh -p 29418 review.example.com gerrit test-submit rule -s I78f2c6673db24e4e92ed32f604c960dc952437d9 |
| 32 | [ |
| 33 | { |
| 34 | "status": "NOT_READY", |
| 35 | "reject": { |
| 36 | "Any-Label-Name": {} |
| 37 | } |
| 38 | } |
| 39 | ] |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 40 | ==== |
| 41 | |
| 42 | Test the active submit_rule from the refs/meta/config branch, ignoring filters in the project parents. |
| 43 | ==== |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 44 | $ ssh -p 29418 review.example.com gerrit test-submit rule I78f2c6673db24e4e92ed32f604c960dc952437d9 --no-filters |
| 45 | [ |
| 46 | { |
| 47 | "status": "NOT_READY", |
| 48 | "need": { |
| 49 | "Code-Review": {} |
| 50 | "Verified": {} |
| 51 | } |
| 52 | } |
| 53 | ] |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 54 | ==== |
| 55 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 56 | == SCRIPTING |
Johan Björk | 20ae069 | 2012-08-02 15:57:13 +0200 | [diff] [blame] | 57 | Can be used either interactively for testing new prolog submit rules, or from a script to check the submit status of a change. |
| 58 | |
| 59 | GERRIT |
| 60 | ------ |
| 61 | Part of link:index.html[Gerrit Code Review] |
Yuxuan 'fishy' Wang | 99cb68d | 2013-10-31 17:26:00 -0700 | [diff] [blame] | 62 | |
| 63 | SEARCHBOX |
| 64 | --------- |