Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / tools / telemetry / third_party / webpagereplay / documentation / Rules.md
blob35176357d588cf858c0e7609c9604f39d359bf90
1 WebPageReplay Rule Language
2 ===========================
4 WebPageReplay rules allows developers to customize record/replay handling.
6 Motiviation
7 -----------
9 Web sites often require custom replay logic, e.g.:
11   1. The recording uploads various metrics/logs to:
13         http://example.com/gen_204?emsg=foo
15      but, during replay, it uploads different parameters:
17         http://example.com/gen_204?emsg=bar
19      so (as-is) our replay fails.  We want "*/gen_204" to always respond
20      "HTTP 204 No Change".
22   2. The recording fetches data from one server:
24         http://mirrorA.example.com/stuff
26      but replay selects a different server:
28         http://mirrorB.example.com/stuff
30      which breaks replay.  We want "mirror*.example.com/stuff" to be equivalent.
32   3. The recorded URL + response contains a UID, e.g.:
34         http://example.com?q=foo  -->  "you sent foo."
36      but the replay asks for:
38         http://example.com?q=bar  -->  replay error!
40      We want it to reply "you sent bar."
42 We could hack all the above rules into the code, but that can''t be (cleanly) extended or open sourced.
44 Instead, we want a simple config file of "predicate --> action" rules.
47 Format
48 ------
50 The JSON-formatted rule file is specified on the command line:
52     replay.py ... --rules_path my_rules ...
54 The rules file must contain an array of single-item objects, e.g.:
56     [{"comment": "ignore me"},
57      {"LogUrl": {"url": "example\\.com/logme.*"}},
58      {"LogUrl": {"url": "example\\.com/someotherpath"}}
59     ]
61 All "comment" items are ignored and support arbitrary values, e.g., a string
62 or commented-out rule(s).
64 All other items must specify a string TYPE key and object ARGS value, e.g.:
66      {"LogUrl": {"url": "example\\.com/test", "stop": false}}
68 The default TYPE package is "rules" and the default rule_parser
69 "allowed_imports" is similarly restricted to only allow "rules" classes.
71 The TYPE implementation class must match the Rule API defined in
72 "rules/rule.py":
74   class Rule(object):
75     def IsType(self, rule_type_name): ...
76     def ApplyRule(self, return_value, request, response): ...
78 The ARGS must match the rule-specific constructor, e.g.:
80     class LogUrl(rule.Rule):
81       def __init__(self, url, stop=False):
82         self._url_re = re.compile(url)
83         self._stop = stop
84       ...
86 All rules of the same rule_type_name are chained together and applied in the
87 same order as they appear in the input JSON file.
90 Rules
91 -------
93 ### rules.LogUrl:
95 If the url pattern matches then log the request URL.