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

chore: new relay tests #1649

Merged
merged 27 commits into from
Oct 23, 2023
Merged

chore: new relay tests #1649

merged 27 commits into from
Oct 23, 2023

Conversation

fbarbu15
Copy link
Collaborator

@fbarbu15 fbarbu15 commented Oct 10, 2023

Problem

Solution

New tests for the relay protocol
Split existing relay tests into multiple suites

@fbarbu15 fbarbu15 changed the title Chore/new relay tests chore: new relay tests Oct 10, 2023
@github-actions
Copy link

github-actions bot commented Oct 10, 2023

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
Waku core 83.85 KB (0%) 1.7 s (0%) 4 s (+6.98% 🔺) 5.7 s
Waku Simple Light Node 264.2 KB (0%) 5.3 s (0%) 10.8 s (+157.05% 🔺) 16.1 s
ECIES encryption 79.46 KB (0%) 1.6 s (0%) 5.8 s (+102.41% 🔺) 7.4 s
Symmetric encryption 79.47 KB (0%) 1.6 s (0%) 4.7 s (+27.81% 🔺) 6.3 s
DNS discovery 111.22 KB (0%) 2.3 s (0%) 4.1 s (-21.48% 🔽) 6.3 s
Privacy preserving protocols 131.77 KB (0%) 2.7 s (0%) 3.5 s (-26.44% 🔽) 6.1 s
Light protocols 81.57 KB (0%) 1.7 s (0%) 3.1 s (-1.48% 🔽) 4.8 s
History retrieval protocols 80.54 KB (0%) 1.7 s (0%) 2.8 s (+14.98% 🔺) 4.4 s
Deterministic Message Hashing 5.65 KB (0%) 113 ms (0%) 821 ms (+71.02% 🔺) 934 ms

@fbarbu15 fbarbu15 added the E:End-to-end testing See https://github.com/waku-org/pm/issues/34 for details label Oct 17, 2023
@fbarbu15 fbarbu15 marked this pull request as ready for review October 23, 2023 06:44
@fbarbu15 fbarbu15 requested a review from a team as a code owner October 23, 2023 06:44
expect(bytesToUtf8(receivedMsg.payload!)).to.eq(messageText);
});

describe.skip("Two nodes connected to nwaku", function () {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why skip?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, Great catch. I've missed this .skip because It was an existing test that was skipped for some reason.
However I see that It can be fixed and seems to work fine.
Will unskip it


// Seems that there are duplicates messages for this scenario
// Skipping until finding a resolution
it.skip("Refresh subscription", async function () {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's make an issue for tracking it?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure

@fbarbu15 fbarbu15 requested a review from weboko October 23, 2023 10:28
@fbarbu15 fbarbu15 merged commit 1ec0c20 into master Oct 23, 2023
@fbarbu15 fbarbu15 deleted the chore/new-relay-tests branch October 23, 2023 15:08
@@ -50,7 +50,8 @@ export const TEST_STRING = [
{ description: "JSON", value: '{"user":"admin","password":"123456"}' },
{ description: "shell command", value: "`rm -rf /`" },
{ description: "escaped characters", value: "\\n\\t\\0" },
{ description: "unicode special characters", value: "\u202Ereverse" }
{ description: "unicode special characters", value: "\u202Ereverse" },
{ description: "emoji", value: "🤫 🤥 😶 😶‍🌫️ 😐 😑 😬 🫨 🫠 🙄 😯 😦 😧 😮" }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I understand correctly, these are testing the utf8ToByte utils functions which are here are helpers and not expected to be used by any serious project.

using fast-check to generate arbitrary byte arrays as payload may be a better approach @fbarbu15

Copy link
Collaborator Author

@fbarbu15 fbarbu15 Oct 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed for some cases, those string are converted to bytes when sending the message, and then upon assertion converted back from bytes to string. So in those cases you are right, we are actually checking the utils and using fast-check indeed looks a better approach.

But there are cases when we use those string as contentTopic, and in that case I think it's more relevant to have those kind of hardcoded edge cases. Ex of such message retrieved from nwaku:

  {
    payload: '8J+kqyDwn6SlIPCfmLYg8J+YtuKAjfCfjKvvuI8g8J+YkCDwn5iRIPCfmKwg8J+rqCDwn6ugIPCfmYQg8J+YryDwn5imIPCfmKcg8J+Yrg==',
    contentTopic: '🤫 🤥 😶 😶‍🌫️ 😐 😑 😬 🫨 🫠 🙄 😯 😦 😧 😮',
    version: 0,
    timestamp: 1698130469857000000,
    ephemeral: false
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
E:End-to-end testing See https://github.com/waku-org/pm/issues/34 for details
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants