-
Notifications
You must be signed in to change notification settings - Fork 84
feat: output full bson objects MONGOSH-1285 #2584
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
Merged
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
40a8727
WIP
addaleax 4b2991c
use DeepInspectServiceProviderWrapper, install our own inspect functi…
lerouxb f85dc9f
you cannot extend the return value of initializeBulkOp
lerouxb 24ef043
apparently inspect passed as the final parameter isn't always a thing
lerouxb cda077c
better name
lerouxb 7d008f7
inspect a shallow copy
lerouxb a27b349
fix comment
lerouxb 8c523bb
leave bson values alone, don't accidentally override existing custom …
lerouxb aa2e830
don't remove things
lerouxb 6307dd3
wrap every type of cursor
lerouxb 70aa3ee
don't accidentally override our custom Date and RegExp inpect functions
lerouxb 8624b68
don't depend on inspect
lerouxb cae4017
more indirection
lerouxb 7d2d0a3
fill out more things on the stub
lerouxb d12548c
how did this work before?
lerouxb 12fc59b
Merge branch 'main' into print-output-full
lerouxb 22e67f8
add the custom inspect symbol as not-enumerable
lerouxb f4f64bc
pull bsonLibrary off _sp rather
lerouxb 709de79
Merge branch 'main' into print-output-full
lerouxb 77f64f2
don't wrap the service provider in java land
lerouxb 72d8679
Update packages/shell-api/src/custom-inspect.ts
lerouxb a93b8fd
some unit tests
lerouxb 0ce95c3
more unit tests
lerouxb 69d3d13
adjust runtime indepdendence tests
lerouxb 209c9f5
Update packages/shell-api/src/custom-inspect.ts
lerouxb c023d46
fixup: remove wrappable flag, skip async iter support for now, use fn…
addaleax e31ba35
fixup: merge cursor implementations, move to separate subdir
addaleax 2bc07c3
fixup: fix runtime independence test again
addaleax 370288f
fixup: add e2e tests
addaleax 28dd205
fixup: oidc test
addaleax 7202eb2
fixup: stub out more cli-repl test sp usage
addaleax 1b72c5b
feat(cli-repl): add flag to control deep inspect behavior
addaleax f783da4
fixup: prettier doesnt run on subdirs?
addaleax 0a9c1bf
fixup: add missing waitForPrompt call
addaleax caaa723
fixup: simplify using waitForCleanOutput
addaleax 02e70c7
Merge remote-tracking branch 'origin/main' into print-output-full
addaleax 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
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
12 changes: 12 additions & 0 deletions
12
packages/java-shell/src/test/resources/collection/insertOne.expected.1.txt
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,12 @@ | ||
| { "acknowledged": true, "insertedId": <ObjectID> } | ||
| true | ||
| [ { "_id": <ObjectID>, "a": 1, "objectId": <ObjectID>, "maxKey": {"$maxKey": 1}, "minKey": {"$minKey": 1}, "binData": {"$binary": {"base64": "MTIzNA==", "subType": "10"}}, "date": {"$date": {"$numberLong": "1355875200000"}}, "isoDate": {"$date": {"$numberLong": "1355875200000"}}, "numberInt": 24, "timestamp": {"$timestamp": {"t": 100, "i": 0}}, "undefined": null, "null": null, "uuid": <UUID> } ] | ||
| { "acknowledged": true, "insertedId": null } | ||
| { "acknowledged": true, "insertedId": {"$date": {"$numberLong": "1355875200000"}} } | ||
| { "acknowledged": true, "insertedId": <UUID> } | ||
| { "acknowledged": true, "insertedId": {"$maxKey": 1} } | ||
| { "acknowledged": true, "insertedId": 24 } | ||
| { "acknowledged": true, "insertedId": true } | ||
| { "acknowledged": true, "insertedId": "string key" } | ||
| { "acknowledged": true, "insertedId": {"$binary": {"base64": "MTIzNA==", "subType": "10"}} } | ||
| { "acknowledged": true, "insertedId": { "document": "key" } } |
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
Oops, something went wrong.
Oops, something went wrong.
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.
❤️