-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Fixes #10540 — Vertical bar character | not escaped in cURL (CMD) request snippet body #10596
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
Open
Divyanshu-Mishra9620
wants to merge
15
commits into
swagger-api:master
Choose a base branch
from
Divyanshu-Mishra9620:fix-#10540-Vertical-bar-character-pipe-not-escaped-curl-cmd-snippet
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+30
−16
Open
Changes from 13 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
1cc3f61
Fix #10540: Escape vertical bar | in cURL (CMD) request snippet body …
Divyanshu-Mishra9620 5c4a6ff
Merge branch 'master' into fix-#10540-Vertical-bar-character-pipe-not…
Divyanshu-Mishra9620 cd5a5f4
Fix: Escape vertical bar (|) in cURL (CMD) request snippet body and a…
Divyanshu-Mishra9620 7817108
Merge branch 'fix-#10540-Vertical-bar-character-pipe-not-escaped-curl…
Divyanshu-Mishra9620 de1eb15
Merge branch 'master' into fix-#10540-Vertical-bar-character-pipe-not…
Divyanshu-Mishra9620 52824ee
Update dev-helpers/dev-helper-initializer.js
Divyanshu-Mishra9620 957a524
Export escapeCMD function from fn.js
Divyanshu-Mishra9620 7a3f6a3
Remove test for vertical bar escaping in bash
Divyanshu-Mishra9620 a007477
Enable request snippets in Swagger UI configuration
Divyanshu-Mishra9620 3be6f2f
Fix vertical bar escaping in CMD and apply code style compliance
Divyanshu-Mishra9620 26ac9c9
Resolve merge conflicts and maintain style compliance
Divyanshu-Mishra9620 8061728
Remove dist files and unrelated changes per maintainer feedback
Divyanshu-Mishra9620 fabb391
Remove dist LICENSE.txt files that shouldn't be in repository
Divyanshu-Mishra9620 189ed8d
fix: escape vertical bar (|) in CMD request snippets (#10540) and rev…
Divyanshu-Mishra9620 4c7faf5
Merge branch 'master' into fix-#10540-Vertical-bar-character-pipe-not…
Divyanshu-Mishra9620 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
|
|
||
| import { escapeCMD } from "../../../../../src/core/plugins/request-snippets/fn" | ||
|
|
||
| describe("escapeCMD", () => { | ||
| it("escapes vertical bar | with caret ^ for CMD", () => { | ||
| const input = "foo|bar" | ||
| const output = escapeCMD(input) | ||
| expect(output).toContain("^|") | ||
| }) | ||
|
|
||
| it("escapes other CMD special characters", () => { | ||
| expect(escapeCMD("foo^bar")).toContain("^^") | ||
| expect(escapeCMD("foo\"bar")).toContain("\"\"") | ||
| }) | ||
| }) |
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.
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.
what was the reason of removing this code ? is this related to the vertical bar character problem ?