forked from mongodb/mongo-go-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GODRIVER-2506 expose rich field information in the updateDescription (m…
- Loading branch information
1 parent
195240c
commit c23dd83
Showing
2 changed files
with
355 additions
and
0 deletions.
There are no files selected for viewing
252 changes: 252 additions & 0 deletions
252
data/change-streams/change-streams-disambiguatedPaths.json
This file contains 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,252 @@ | ||
{ | ||
"description": "disambiguatedPaths", | ||
"schemaVersion": "1.3", | ||
"createEntities": [ | ||
{ | ||
"client": { | ||
"id": "client0", | ||
"useMultipleMongoses": false | ||
} | ||
}, | ||
{ | ||
"database": { | ||
"id": "database0", | ||
"client": "client0", | ||
"databaseName": "database0" | ||
} | ||
}, | ||
{ | ||
"collection": { | ||
"id": "collection0", | ||
"database": "database0", | ||
"collectionName": "collection0" | ||
} | ||
} | ||
], | ||
"runOnRequirements": [ | ||
{ | ||
"minServerVersion": "6.1.0", | ||
"topologies": [ | ||
"replicaset", | ||
"sharded-replicaset", | ||
"load-balanced", | ||
"sharded" | ||
] | ||
} | ||
], | ||
"initialData": [ | ||
{ | ||
"collectionName": "collection0", | ||
"databaseName": "database0", | ||
"documents": [] | ||
} | ||
], | ||
"tests": [ | ||
{ | ||
"description": "disambiguatedPaths is not present when showExpandedEvents is false/unset", | ||
"operations": [ | ||
{ | ||
"name": "insertOne", | ||
"object": "collection0", | ||
"arguments": { | ||
"document": { | ||
"_id": 1, | ||
"a": { | ||
"1": 1 | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "createChangeStream", | ||
"object": "collection0", | ||
"arguments": { | ||
"pipeline": [] | ||
}, | ||
"saveResultAsEntity": "changeStream0" | ||
}, | ||
{ | ||
"name": "updateOne", | ||
"object": "collection0", | ||
"arguments": { | ||
"filter": { | ||
"_id": 1 | ||
}, | ||
"update": { | ||
"$set": { | ||
"a.1": 2 | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "iterateUntilDocumentOrError", | ||
"object": "changeStream0", | ||
"expectResult": { | ||
"operationType": "update", | ||
"ns": { | ||
"db": "database0", | ||
"coll": "collection0" | ||
}, | ||
"updateDescription": { | ||
"updatedFields": { | ||
"$$exists": true | ||
}, | ||
"removedFields": { | ||
"$$exists": true | ||
}, | ||
"truncatedArrays": { | ||
"$$exists": true | ||
}, | ||
"disambiguatedPaths": { | ||
"$$exists": false | ||
} | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"description": "disambiguatedPaths is present on updateDescription when an ambiguous path is present", | ||
"operations": [ | ||
{ | ||
"name": "insertOne", | ||
"object": "collection0", | ||
"arguments": { | ||
"document": { | ||
"_id": 1, | ||
"a": { | ||
"1": 1 | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "createChangeStream", | ||
"object": "collection0", | ||
"arguments": { | ||
"pipeline": [], | ||
"showExpandedEvents": true | ||
}, | ||
"saveResultAsEntity": "changeStream0" | ||
}, | ||
{ | ||
"name": "updateOne", | ||
"object": "collection0", | ||
"arguments": { | ||
"filter": { | ||
"_id": 1 | ||
}, | ||
"update": { | ||
"$set": { | ||
"a.1": 2 | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "iterateUntilDocumentOrError", | ||
"object": "changeStream0", | ||
"expectResult": { | ||
"operationType": "update", | ||
"ns": { | ||
"db": "database0", | ||
"coll": "collection0" | ||
}, | ||
"updateDescription": { | ||
"updatedFields": { | ||
"$$exists": true | ||
}, | ||
"removedFields": { | ||
"$$exists": true | ||
}, | ||
"truncatedArrays": { | ||
"$$exists": true | ||
}, | ||
"disambiguatedPaths": { | ||
"a.1": [ | ||
"a", | ||
"1" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"description": "disambiguatedPaths returns array indices as integers", | ||
"operations": [ | ||
{ | ||
"name": "insertOne", | ||
"object": "collection0", | ||
"arguments": { | ||
"document": { | ||
"_id": 1, | ||
"a": [ | ||
{ | ||
"1": 1 | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "createChangeStream", | ||
"object": "collection0", | ||
"arguments": { | ||
"pipeline": [], | ||
"showExpandedEvents": true | ||
}, | ||
"saveResultAsEntity": "changeStream0" | ||
}, | ||
{ | ||
"name": "updateOne", | ||
"object": "collection0", | ||
"arguments": { | ||
"filter": { | ||
"_id": 1 | ||
}, | ||
"update": { | ||
"$set": { | ||
"a.0.1": 2 | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "iterateUntilDocumentOrError", | ||
"object": "changeStream0", | ||
"expectResult": { | ||
"operationType": "update", | ||
"ns": { | ||
"db": "database0", | ||
"coll": "collection0" | ||
}, | ||
"updateDescription": { | ||
"updatedFields": { | ||
"$$exists": true | ||
}, | ||
"removedFields": { | ||
"$$exists": true | ||
}, | ||
"truncatedArrays": { | ||
"$$exists": true | ||
}, | ||
"disambiguatedPaths": { | ||
"a.0.1": [ | ||
"a", | ||
{ | ||
"$$type": "int" | ||
}, | ||
"1" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} | ||
|
103 changes: 103 additions & 0 deletions
103
data/change-streams/change-streams-disambiguatedPaths.yml
This file contains 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,103 @@ | ||
description: "disambiguatedPaths" | ||
schemaVersion: "1.3" | ||
createEntities: | ||
- client: | ||
id: &client0 client0 | ||
useMultipleMongoses: false | ||
- database: | ||
id: &database0 database0 | ||
client: *client0 | ||
databaseName: *database0 | ||
- collection: | ||
id: &collection0 collection0 | ||
database: *database0 | ||
collectionName: *collection0 | ||
|
||
runOnRequirements: | ||
- minServerVersion: "6.1.0" | ||
topologies: [ replicaset, sharded-replicaset, load-balanced, sharded ] | ||
|
||
initialData: | ||
- collectionName: *collection0 | ||
databaseName: *database0 | ||
documents: [] | ||
|
||
tests: | ||
- description: "disambiguatedPaths is not present when showExpandedEvents is false/unset" | ||
operations: | ||
- name: insertOne | ||
object: *collection0 | ||
arguments: | ||
document: { _id: 1, 'a': { '1': 1 } } | ||
- name: createChangeStream | ||
object: *collection0 | ||
arguments: { pipeline: [] } | ||
saveResultAsEntity: &changeStream0 changeStream0 | ||
- name: updateOne | ||
object: *collection0 | ||
arguments: | ||
filter: { _id: 1 } | ||
update: { $set: { 'a.1': 2 } } | ||
- name: iterateUntilDocumentOrError | ||
object: *changeStream0 | ||
expectResult: | ||
operationType: "update" | ||
ns: { db: *database0, coll: *collection0 } | ||
updateDescription: | ||
updatedFields: { $$exists: true } | ||
removedFields: { $$exists: true } | ||
truncatedArrays: { $$exists: true } | ||
disambiguatedPaths: { $$exists: false } | ||
|
||
- description: "disambiguatedPaths is present on updateDescription when an ambiguous path is present" | ||
operations: | ||
- name: insertOne | ||
object: *collection0 | ||
arguments: | ||
document: { _id: 1, 'a': { '1': 1 } } | ||
- name: createChangeStream | ||
object: *collection0 | ||
arguments: { pipeline: [], showExpandedEvents: true } | ||
saveResultAsEntity: &changeStream0 changeStream0 | ||
- name: updateOne | ||
object: *collection0 | ||
arguments: | ||
filter: { _id: 1 } | ||
update: { $set: { 'a.1': 2 } } | ||
- name: iterateUntilDocumentOrError | ||
object: *changeStream0 | ||
expectResult: | ||
operationType: "update" | ||
ns: { db: *database0, coll: *collection0 } | ||
updateDescription: | ||
updatedFields: { $$exists: true } | ||
removedFields: { $$exists: true } | ||
truncatedArrays: { $$exists: true } | ||
disambiguatedPaths: { 'a.1': ['a', '1'] } | ||
|
||
- description: "disambiguatedPaths returns array indices as integers" | ||
operations: | ||
- name: insertOne | ||
object: *collection0 | ||
arguments: | ||
document: { _id: 1, 'a': [{'1': 1 }] } | ||
- name: createChangeStream | ||
object: *collection0 | ||
arguments: { pipeline: [], showExpandedEvents: true } | ||
saveResultAsEntity: &changeStream0 changeStream0 | ||
- name: updateOne | ||
object: *collection0 | ||
arguments: | ||
filter: { _id: 1 } | ||
update: { $set: { 'a.0.1': 2 } } | ||
- name: iterateUntilDocumentOrError | ||
object: *changeStream0 | ||
expectResult: | ||
operationType: "update" | ||
ns: { db: *database0, coll: *collection0 } | ||
updateDescription: | ||
updatedFields: { $$exists: true } | ||
removedFields: { $$exists: true } | ||
truncatedArrays: { $$exists: true } | ||
disambiguatedPaths: { 'a.0.1': ['a', { $$type: 'int' }, '1'] } | ||
|