blob: b0c14dbadf625d492ddaeb318fd81aad9c948538 [file] [log] [blame]
Jon Wayne Parrott0a471d32016-05-19 10:54:38 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="firebaserules_v1.html">Firebase Rules API</a> . <a href="firebaserules_v1.projects.html">projects</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="firebaserules_v1.projects.releases.html">releases()</a></code>
79</p>
80<p class="firstline">Returns the releases Resource.</p>
81
82<p class="toc_element">
83 <code><a href="firebaserules_v1.projects.rulesets.html">rulesets()</a></code>
84</p>
85<p class="firstline">Returns the rulesets Resource.</p>
86
87<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070088 <code><a href="#close">close()</a></code></p>
89<p class="firstline">Close httplib2 connections.</p>
90<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070091 <code><a href="#test">test(name, body=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070092<p class="firstline">Test `Source` for syntactic and semantic correctness. Issues present, if any, will be returned to the caller with a description, severity, and source location. The test method may be executed with `Source` or a `Ruleset` name. Passing `Source` is useful for unit testing new rules. Passing a `Ruleset` name is useful for regression testing an existing rule. The following is an example of `Source` that permits users to upload images to a bucket bearing their user id and matching the correct metadata: _*Example*_ // Users are allowed to subscribe and unsubscribe to the blog. service firebase.storage { match /users/{userId}/images/{imageName} { allow write: if userId == request.auth.uid && (imageName.matches('*.png$') || imageName.matches('*.jpg$')) && resource.mimeType.matches('^image/') } }</p>
Jon Wayne Parrott0a471d32016-05-19 10:54:38 -070093<h3>Method Details</h3>
94<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070095 <code class="details" id="close">close()</code>
96 <pre>Close httplib2 connections.</pre>
97</div>
98
99<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700100 <code class="details" id="test">test(name, body=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700101 <pre>Test `Source` for syntactic and semantic correctness. Issues present, if any, will be returned to the caller with a description, severity, and source location. The test method may be executed with `Source` or a `Ruleset` name. Passing `Source` is useful for unit testing new rules. Passing a `Ruleset` name is useful for regression testing an existing rule. The following is an example of `Source` that permits users to upload images to a bucket bearing their user id and matching the correct metadata: _*Example*_ // Users are allowed to subscribe and unsubscribe to the blog. service firebase.storage { match /users/{userId}/images/{imageName} { allow write: if userId == request.auth.uid &amp;&amp; (imageName.matches(&#x27;*.png$&#x27;) || imageName.matches(&#x27;*.jpg$&#x27;)) &amp;&amp; resource.mimeType.matches(&#x27;^image/&#x27;) } }
Jon Wayne Parrott0a471d32016-05-19 10:54:38 -0700102
103Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700104 name: string, Tests may either provide `source` or a `Ruleset` resource name. For tests against `source`, the resource name must refer to the project: Format: `projects/{project_id}` For tests against a `Ruleset`, this must be the `Ruleset` resource name: Format: `projects/{project_id}/rulesets/{ruleset_id}` (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700105 body: object, The request body.
Jon Wayne Parrott0a471d32016-05-19 10:54:38 -0700106 The object takes the form of:
107
108{ # The request for FirebaseRulesService.TestRuleset.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700109 &quot;testSuite&quot;: { # `TestSuite` is a collection of `TestCase` instances that validate the logical correctness of a `Ruleset`. The `TestSuite` may be referenced in-line within a `TestRuleset` invocation or as part of a `Release` object as a pre-release check. # Inline `TestSuite` to run.
110 &quot;testCases&quot;: [ # Collection of test cases associated with the `TestSuite`.
111 { # `TestCase` messages provide the request context and an expectation as to whether the given context will be allowed or denied. Test cases may specify the `request`, `resource`, and `function_mocks` to mock a function call to a service-provided function. The `request` object represents context present at request-time. The `resource` is the value of the target resource as it appears in persistent storage before the request is executed.
112 &quot;expectation&quot;: &quot;A String&quot;, # Test expectation.
113 &quot;expressionReportLevel&quot;: &quot;A String&quot;, # Specifies what should be included in the response.
114 &quot;resource&quot;: &quot;&quot;, # Optional resource value as it appears in persistent storage before the request is fulfilled. The resource type depends on the `request.path` value.
115 &quot;pathEncoding&quot;: &quot;A String&quot;, # Specifies whether paths (such as request.path) are encoded and how.
116 &quot;functionMocks&quot;: [ # Optional function mocks for service-defined functions. If not set, any service defined function is expected to return an error, which may or may not influence the test outcome.
117 { # Mock function definition. Mocks must refer to a function declared by the target service. The type of the function args and result will be inferred at test time. If either the arg or result values are not compatible with function type declaration, the request will be considered invalid. More than one `FunctionMock` may be provided for a given function name so long as the `Arg` matchers are distinct. There may be only one function for a given overload where all `Arg` values are `Arg.any_value`.
118 &quot;function&quot;: &quot;A String&quot;, # The name of the function. The function name must match one provided by a service declaration.
119 &quot;args&quot;: [ # The list of `Arg` values to match. The order in which the arguments are provided is the order in which they must appear in the function invocation.
120 { # Arg matchers for the mock function.
121 &quot;exactValue&quot;: &quot;&quot;, # Argument exactly matches value provided.
122 &quot;anyValue&quot;: { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`. # Argument matches any value provided.
123 },
124 },
125 ],
126 &quot;result&quot;: { # Possible result values from the function mock invocation. # The mock result of the function call.
127 &quot;value&quot;: &quot;&quot;, # The result is an actual value. The type of the value must match that of the type declared by the service.
128 &quot;undefined&quot;: { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`. # The result is undefined, meaning the result could not be computed.
129 },
130 },
131 },
132 ],
133 &quot;request&quot;: &quot;&quot;, # Request context. The exact format of the request context is service-dependent. See the appropriate service documentation for information about the supported fields and types on the request. Minimally, all services support the following fields and types: Request field | Type ---------------|----------------- auth.uid | `string` auth.token | `map` headers | `map` method | `string` params | `map` path | `string` time | `google.protobuf.Timestamp` If the request value is not well-formed for the service, the request will be rejected as an invalid argument.
Jon Wayne Parrott0a471d32016-05-19 10:54:38 -0700134 },
135 ],
136 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700137 &quot;source&quot;: { # `Source` is one or more `File` messages comprising a logical set of rules. # Optional `Source` to be checked for correctness. This field must not be set when the resource name refers to a `Ruleset`.
138 &quot;files&quot;: [ # `File` set constituting the `Source` bundle.
139 { # `File` containing source content.
140 &quot;fingerprint&quot;: &quot;A String&quot;, # Fingerprint (e.g. github sha) associated with the `File`.
141 &quot;content&quot;: &quot;A String&quot;, # Textual Content.
142 &quot;name&quot;: &quot;A String&quot;, # File name.
Sai Cheemalapati4ba8c232017-06-06 18:46:08 -0400143 },
144 ],
145 },
Jon Wayne Parrott0a471d32016-05-19 10:54:38 -0700146 }
147
148 x__xgafv: string, V1 error format.
149 Allowed values
150 1 - v1 error format
151 2 - v2 error format
152
153Returns:
154 An object of the form:
155
156 { # The response for FirebaseRulesService.TestRuleset.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700157 &quot;testResults&quot;: [ # The set of test results given the test cases in the `TestSuite`. The results will appear in the same order as the test cases appear in the `TestSuite`.
158 { # Test result message containing the state of the test as well as a description and source position for test failures.
159 &quot;errorPosition&quot;: { # Position in the `Source` content including its line, column number, and an index of the `File` in the `Source` message. Used for debug purposes. # Position in the `Source` or `Ruleset` where the principle runtime error occurs. Evaluation of an expression may result in an error. Rules are deny by default, so a `DENY` expectation when an error is generated is valid. When there is a `DENY` with an error, the `SourcePosition` is returned. E.g. `error_position { line: 19 column: 37 }`
160 &quot;fileName&quot;: &quot;A String&quot;, # Name of the `File`.
161 &quot;line&quot;: 42, # Line number of the source fragment. 1-based.
162 &quot;column&quot;: 42, # First column on the source line associated with the source fragment.
163 &quot;currentOffset&quot;: 42, # Start position relative to the beginning of the file.
164 &quot;endOffset&quot;: 42, # End position relative to the beginning of the file.
165 },
166 &quot;visitedExpressions&quot;: [ # The set of visited permission expressions for a given test. This returns the positions and evaluation results of all visited permission expressions which were relevant to the test case, e.g. ``` match /path { allow read if: } ``` For a detailed report of the intermediate evaluation states, see the `expression_reports` field
167 { # Store the position and access outcome for an expression visited in rules.
168 &quot;sourcePosition&quot;: { # Position in the `Source` content including its line, column number, and an index of the `File` in the `Source` message. Used for debug purposes. # Position in the `Source` or `Ruleset` where an expression was visited.
169 &quot;fileName&quot;: &quot;A String&quot;, # Name of the `File`.
170 &quot;line&quot;: 42, # Line number of the source fragment. 1-based.
171 &quot;column&quot;: 42, # First column on the source line associated with the source fragment.
172 &quot;currentOffset&quot;: 42, # Start position relative to the beginning of the file.
173 &quot;endOffset&quot;: 42, # End position relative to the beginning of the file.
174 },
175 &quot;value&quot;: &quot;&quot;, # The evaluated value for the visited expression, e.g. true/false
176 },
177 ],
178 &quot;debugMessages&quot;: [ # Debug messages related to test execution issues encountered during evaluation. Debug messages may be related to too many or too few invocations of function mocks or to runtime errors that occur during evaluation. For example: ```Unable to read variable [name: &quot;resource&quot;]```
179 &quot;A String&quot;,
180 ],
181 &quot;expressionReports&quot;: [ # The mapping from expression in the ruleset AST to the values they were evaluated to. Partially-nested to mirror AST structure. Note that this field is actually tracking expressions and not permission statements in contrast to the &quot;visited_expressions&quot; field above. Literal expressions are omitted.
182 { # Describes where in a file an expression is found and what it was evaluated to over the course of its use.
183 &quot;values&quot;: [ # Values that this expression evaluated to when encountered.
184 { # Tuple for how many times an Expression was evaluated to a particular ExpressionValue.
185 &quot;count&quot;: 42, # The amount of times that expression returned.
186 &quot;value&quot;: &quot;&quot;, # The return value of the expression
187 },
188 ],
189 &quot;children&quot;: [ # Subexpressions
190 # Object with schema name: ExpressionReport
191 ],
192 &quot;sourcePosition&quot;: { # Position in the `Source` content including its line, column number, and an index of the `File` in the `Source` message. Used for debug purposes. # Position of expression in original rules source.
193 &quot;fileName&quot;: &quot;A String&quot;, # Name of the `File`.
194 &quot;line&quot;: 42, # Line number of the source fragment. 1-based.
195 &quot;column&quot;: 42, # First column on the source line associated with the source fragment.
196 &quot;currentOffset&quot;: 42, # Start position relative to the beginning of the file.
197 &quot;endOffset&quot;: 42, # End position relative to the beginning of the file.
198 },
199 },
200 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700201 &quot;state&quot;: &quot;A String&quot;, # State of the test.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700202 &quot;functionCalls&quot;: [ # The set of function calls made to service-defined methods. Function calls are included in the order in which they are encountered during evaluation, are provided for both mocked and unmocked functions, and included on the response regardless of the test `state`.
203 { # Represents a service-defined function call that was invoked during test execution.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700204 &quot;function&quot;: &quot;A String&quot;, # Name of the function invoked.
205 &quot;args&quot;: [ # The arguments that were provided to the function.
206 &quot;&quot;,
207 ],
208 },
209 ],
Sai Cheemalapatie833b792017-03-24 15:06:46 -0700210 },
211 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700212 &quot;issues&quot;: [ # Syntactic and semantic `Source` issues of varying severity. Issues of `ERROR` severity will prevent tests from executing.
Jon Wayne Parrott0a471d32016-05-19 10:54:38 -0700213 { # Issues include warnings, errors, and deprecation notices.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700214 &quot;severity&quot;: &quot;A String&quot;, # The severity of the issue.
215 &quot;sourcePosition&quot;: { # Position in the `Source` content including its line, column number, and an index of the `File` in the `Source` message. Used for debug purposes. # Position of the issue in the `Source`.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700216 &quot;fileName&quot;: &quot;A String&quot;, # Name of the `File`.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700217 &quot;line&quot;: 42, # Line number of the source fragment. 1-based.
218 &quot;column&quot;: 42, # First column on the source line associated with the source fragment.
219 &quot;currentOffset&quot;: 42, # Start position relative to the beginning of the file.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700220 &quot;endOffset&quot;: 42, # End position relative to the beginning of the file.
Jon Wayne Parrott0a471d32016-05-19 10:54:38 -0700221 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700222 &quot;description&quot;: &quot;A String&quot;, # Short error description.
Jon Wayne Parrott0a471d32016-05-19 10:54:38 -0700223 },
224 ],
225 }</pre>
226</div>
227
228</body></html>