Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test_: message reactions test #6335

Merged
merged 3 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ __pycache__/
.pytest_cache/
.envrc
report/results.xml
tests-functional/coverage
tests-functional/**/coverage
tests-functional/reports
tests-functional/signals
tests-functional/*.log
Expand Down
66 changes: 66 additions & 0 deletions tests-functional/schemas/wakuext_emojiReactionsByChatID
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"$schema": "http://json-schema.org/schema#",
"properties": {
"id": {
"type": "integer"
},
"jsonrpc": {
"type": "string"
},
"result": {
"items": {
"properties": {
"chatId": {
"type": "string"
},
"clock": {
"type": "integer"
},
"compressedKey": {
"type": "string"
},
"emojiHash": {
"items": {
"type": "string"
},
"type": "array"
},
"emojiId": {
"type": "integer"
},
"from": {
"type": "string"
},
"id": {
"type": "string"
},
"localChatId": {
"type": "string"
},
"messageId": {
"type": "string"
}
},
"required": [
"chatId",
"clock",
"compressedKey",
"emojiHash",
"emojiId",
"from",
"id",
"localChatId",
"messageId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"id",
"jsonrpc",
"result"
],
"type": "object"
}
66 changes: 66 additions & 0 deletions tests-functional/schemas/wakuext_emojiReactionsByChatIDMessageID
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"$schema": "http://json-schema.org/schema#",
"properties": {
"id": {
"type": "integer"
},
"jsonrpc": {
"type": "string"
},
"result": {
"items": {
"properties": {
"chatId": {
"type": "string"
},
"clock": {
"type": "integer"
},
"compressedKey": {
"type": "string"
},
"emojiHash": {
"items": {
"type": "string"
},
"type": "array"
},
"emojiId": {
"type": "integer"
},
"from": {
"type": "string"
},
"id": {
"type": "string"
},
"localChatId": {
"type": "string"
},
"messageId": {
"type": "string"
}
},
"required": [
"chatId",
"clock",
"compressedKey",
"emojiHash",
"emojiId",
"from",
"id",
"localChatId",
"messageId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"id",
"jsonrpc",
"result"
],
"type": "object"
}
Loading