E2E test: SASL mechanism validation — unsupported mechanism rejection#313
Closed
E2E test: SASL mechanism validation — unsupported mechanism rejection#313
Conversation
Add tests to verify server correctly rejects unsupported SASL mechanisms: - testUnsupportedSaslMechanismThrows: tests with SCRAM-SHA-256 - testEmptySaslMechanismThrows: tests with empty string Both tests verify the exception message contains SASL_MECHANISM_NOT_SUPPORTED.
3 tasks
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #148
Problem
No E2E test verifies that the server correctly rejects an unsupported SASL mechanism. The
ConnectionHandshakeTestonly testsPLAINauthentication. If a client sends a mechanism name the server doesn't support (e.g."SCRAM-SHA-256","EXTERNAL", or an empty string""), the server should respond withSASL_MECHANISM_NOT_SUPPORTED(0x07).Expected test
Why it matters
ResponseCodeEnum::SASL_MECHANISM_NOT_SUPPORTEDpath is exercisedAcceptance criteria