-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
E2E: Add individual server owned datastream tests
Signed-off-by: Arnaldo Cesco <arnaldo.cesco@secomind.com>
- Loading branch information
Showing
2 changed files
with
201 additions
and
3 deletions.
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
79 changes: 79 additions & 0 deletions
79
e2e_tests/test/interfaces/org.astarte-platform.server.individual.datastream.Everything.json
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,79 @@ | ||
{ | ||
"interface_name": "org.astarte-platform.server.individual.datastream.Everything", | ||
"version_major": 0, | ||
"version_minor": 1, | ||
"type": "datastream", | ||
"ownership": "server", | ||
"mappings": [ | ||
{ | ||
"endpoint": "/%{sensor_id}/binaryblob", | ||
"type": "binaryblob", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/binaryblobarray", | ||
"type": "binaryblobarray", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/boolean", | ||
"type": "boolean", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/booleanarray", | ||
"type": "booleanarray", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/datetime", | ||
"type": "datetime", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/datetimearray", | ||
"type": "datetimearray", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/double", | ||
"type": "double", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/doublearray", | ||
"type": "doublearray", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/integer", | ||
"type": "integer", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/integerarray", | ||
"type": "integerarray", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/longinteger", | ||
"type": "longinteger", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/longintegerarray", | ||
"type": "longintegerarray", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/string", | ||
"type": "string", | ||
"explicit_timestamp": true | ||
}, | ||
{ | ||
"endpoint": "/%{sensor_id}/stringarray", | ||
"type": "stringarray", | ||
"explicit_timestamp": true | ||
} | ||
] | ||
} |