-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1010 from Cali0707/sync-tck-tests
Sync CESQL tck tests
- Loading branch information
Showing
5 changed files
with
242 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# CloudEvents Expression Language TCK | ||
|
||
Each file of this TCK contains a set of test cases, testing one or more specific features of the language. | ||
|
||
The root file structure is composed by: | ||
|
||
* `name`: Name of the test suite contained in the file | ||
* `tests`: List of tests | ||
|
||
Each test definition includes: | ||
|
||
* `name`: Name of the test case | ||
* `expression`: Expression to test. | ||
* `result`: Expected result (OPTIONAL). Can be a boolean, an integer or a string. | ||
* `error`: Expected error (OPTIONAL). If absent, no error is expected. | ||
* `event`: Input event (OPTIONAL). If present, this is a valid event serialized in JSON format. If absent, when testing | ||
the expression, any valid event can be passed. | ||
* `eventOverrides`: Overrides to the input event (OPTIONAL). This might be used when `event` is missing, in order to | ||
define only some specific values, while the other (REQUIRED) attributes can be any value. | ||
|
||
The `error` values could be any of the following: | ||
|
||
* `parse`: Error while parsing the expression | ||
* `math`: Math error while evaluating a math operator | ||
* `cast`: Casting error | ||
* `missingAttribute`: Addressed a missing attribute | ||
* `missingFunction`: Addressed a missing function | ||
* `functionEvaluation`: Error while evaluating a function |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
name: SubscriptionsAPI Recreations | ||
tests: | ||
- name: Prefix filter (1) | ||
expression: "source LIKE 'https://%'" | ||
result: true | ||
eventOverrides: | ||
source: "https://example.com" | ||
- name: Prefix filter (2) | ||
expression: "source LIKE 'https://%'" | ||
result: false | ||
eventOverrides: | ||
source: "http://example.com" | ||
- name: Prefix filter on string extension | ||
expression: "myext LIKE 'custom%'" | ||
result: true | ||
eventOverrides: | ||
myext: "customext" | ||
- name: Prefix filter on missing string extension | ||
expression: "myext LIKE 'custom%'" | ||
error: missingAttribute | ||
|
||
- name: Suffix filter (1) | ||
expression: "type like '%.error'" | ||
result: true | ||
eventOverrides: | ||
type: "com.github.error" | ||
- name: Suffix filter (2) | ||
expression: "type like '%.error'" | ||
result: false | ||
eventOverrides: | ||
type: "com.github.success" | ||
- name: Suffix filter on string extension | ||
expression: "myext LIKE '%ext'" | ||
result: true | ||
eventOverrides: | ||
myext: "customext" | ||
- name: Suffix filter on missing string extension | ||
expression: "myext LIKE '%ext'" | ||
error: missingAttribute | ||
|
||
- name: Exact filter (1) | ||
expression: "id = 'myId'" | ||
result: true | ||
eventOverrides: | ||
id: "myId" | ||
- name: Exact filter (2) | ||
expression: "id = 'myId'" | ||
result: false | ||
eventOverrides: | ||
id: "notmyId" | ||
- name: Exact filter on string extension | ||
expression: "myext = 'customext'" | ||
result: true | ||
eventOverrides: | ||
myext: "customext" | ||
- name: Exact filter on missing string extension | ||
expression: "myext = 'customext'" | ||
error: missingAttribute | ||
|
||
- name: Prefix filter AND Suffix filter (1) | ||
expression: "id LIKE 'my%' AND source LIKE '%.ca'" | ||
result: true | ||
eventOverrides: | ||
id: "myId" | ||
source: "http://www.some-website.ca" | ||
- name: Prefix filter AND Suffix filter (2) | ||
expression: "id LIKE 'my%' AND source LIKE '%.ca'" | ||
result: false | ||
eventOverrides: | ||
id: "myId" | ||
source: "http://www.some-website.com" | ||
- name: Prefix filter AND Suffix filter (3) | ||
expression: "myext LIKE 'custom%' AND type LIKE '%.error'" | ||
result: true | ||
eventOverrides: | ||
myext: "customext" | ||
type: "com.github.error" | ||
- name: Prefix AND Suffix filter (4) | ||
expression: "type LIKE 'example.%' AND myext LIKE 'custom%'" | ||
error: missingAttribute | ||
eventOverrides: | ||
type: "example.event.type" | ||
|
||
- name: Prefix OR Suffix filter (1) | ||
expression: "id LIKE 'my%' OR source LIKE '%.ca'" | ||
result: true | ||
eventOverrides: | ||
id: "myId" | ||
source: "http://www.some-website.ca" | ||
- name: Prefix OR Suffix filter (2) | ||
expression: "id LIKE 'my%' OR source LIKE '%.ca'" | ||
result: true | ||
eventOverrides: | ||
id: "myId" | ||
source: "http://www.some-website.com" | ||
- name: Prefix OR Suffix filter (3) | ||
expression: "id LIKE 'my%' OR source LIKE '%.ca'" | ||
result: true | ||
eventOverrides: | ||
id: "notmyId" | ||
source: "http://www.some-website.ca" | ||
- name: Prefix OR Suffix filter (4) | ||
expression: "id LIKE 'my%' OR source LIKE '%.ca'" | ||
result: false | ||
eventOverrides: | ||
id: "notmyId" | ||
source: "http://www.some-website.com" | ||
|
||
- name: Disjunctive Normal Form (1) | ||
expression: "(id = 'myId' AND type LIKE '%.success') OR (id = 'notmyId' AND source LIKE 'http://%' AND type LIKE '%.warning')" | ||
result: true | ||
eventOverrides: | ||
id: "myId" | ||
type: "example.event.success" | ||
- name: Disjunctive Normal Form (2) | ||
expression: "(id = 'myId' AND type LIKE '%.success') OR (id = 'notmyId' AND source LIKE 'http://%' AND type LIKE '%.warning')" | ||
result: true | ||
eventOverrides: | ||
id: "notmyId" | ||
type: "example.event.warning" | ||
source: "http://localhost.localdomain" | ||
- name: Disjunctive Normal Form (3) | ||
expression: "(id = 'myId' AND type LIKE '%.success') OR (id = 'notmyId' AND source LIKE 'http://%' AND type LIKE '%.warning')" | ||
result: false | ||
eventOverrides: | ||
id: "notmyId" | ||
type: "example.event.warning" | ||
source: "https://localhost.localdomain" | ||
|
||
- name: Conjunctive Normal Form (1) | ||
expression: "(id = 'myId' OR type LIKE '%.success') AND (id = 'notmyId' OR source LIKE 'https://%' OR type LIKE '%.warning')" | ||
result: true | ||
eventOverrides: | ||
id: "myId" | ||
type: "example.event.warning" | ||
source: "http://localhost.localdomain" | ||
- name: Conjunctive Normal Form (2) | ||
expression: "(id = 'myId' OR type LIKE '%.success') AND (id = 'notmyId' OR source LIKE 'https://%' OR type LIKE '%.warning')" | ||
result: true | ||
eventOverrides: | ||
id: "notmyId" | ||
type: "example.event.success" | ||
source: "http://localhost.localdomain" | ||
- name: Conjunctive Normal Form (3) | ||
expression: "(id = 'myId' OR type LIKE '%.success') AND (id = 'notmyId' OR source LIKE 'https://%' OR type LIKE '%.warning')" | ||
result: false | ||
eventOverrides: | ||
id: "notmyId" | ||
type: "example.event.warning" | ||
source: "http://localhost.localdomain" | ||
- name: Conjunctive Normal Form (4) | ||
expression: "(id = 'myId' OR type LIKE '%.success') AND (id = 'notmyId' OR source LIKE 'https://%' OR type LIKE '%.warning')" | ||
result: false | ||
eventOverrides: | ||
id: "myId" | ||
type: "example.event.success" | ||
source: "http://localhost.localdomain" | ||
- name: Conjunctive Normal Form (5) | ||
expression: "(id = 'myId' OR type LIKE '%.success') AND (id = 'notmyId' OR source LIKE 'https://%' OR type LIKE '%.warning') AND (myext = 'customext')" | ||
error: missingAttribute | ||
eventOverrides: | ||
id: "myId" | ||
type: "example.event.warning" | ||
source: "http://localhost.localdomain" | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters