-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
add test for malformed websocket #1271
Conversation
Important Auto Review SkippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the To trigger a single review, invoke the WalkthroughIn this update, a new method Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1271 +/- ##
================================================
+ Coverage 54.1446% 54.1663% +0.0216%
================================================
Files 157 158 +1
Lines 24634 24650 +16
Branches 1439 1437 -2
================================================
+ Hits 13338 13352 +14
- Misses 11240 11241 +1
- Partials 56 57 +1 ☔ View full report in Codecov by Sentry. |
I think I should be able to finish this up tomorrow
compiler says header and payload fields for Frame are private and don't know how to send the constructed dataframe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 4
Configuration used: CodeRabbit UI
Files ignored due to path filters (2)
Cargo.lock
is excluded by:!**/*.lock
crates/harness-tests/Cargo.toml
is excluded by:!**/*.toml
Files selected for processing (2)
- crates/harness-tests/src/routing.rs (2 hunks)
- crates/harness/src/test_runner.rs (2 hunks)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you even run this? The test doesn't even pass.
Co-authored-by: Carson McManus <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files ignored due to path filters (2)
Cargo.lock
is excluded by:!**/*.lock
crates/harness-tests/Cargo.toml
is excluded by:!**/*.toml
Files selected for processing (1)
- crates/harness/src/test_runner.rs (2 hunks)
Files skipped from review as they are similar to previous changes (1)
- crates/harness/src/test_runner.rs
I'm not reviewing this again until the CI passes. |
test still runs forever
…/opentogethertube into malformed-websocket-tests
Took a quick look at the failure. this is why it's failing
The connection is being rejected by the balancer because there's no monoliths. The balancer no longer blindly accepts all websocket connections. |
Thank you for looking into this. I tried running the test again with active monolith instance and it still failed. Do I need to have this client connect to a monolith in code? |
create a monolith like in all the other harness tests |
CI failures are unrelated. merging |
Passing run #1077 ↗︎Details:
Review all test suite changes for PR #1271 ↗︎ |
closes #1206