-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CSHARP-4184: Sync'd distinct-commnet tests from CRUD spec and updated…
… unified runner. (#843)
- Loading branch information
1 parent
cc23814
commit 0b606c1
Showing
3 changed files
with
288 additions
and
5 deletions.
There are no files selected for viewing
178 changes: 178 additions & 0 deletions
178
tests/MongoDB.Driver.Tests/Specifications/crud/tests/unified/distinct-comment.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,178 @@ | ||
{ | ||
"description": "distinct-comment", | ||
"schemaVersion": "1.0", | ||
"createEntities": [ | ||
{ | ||
"client": { | ||
"id": "client0", | ||
"observeEvents": [ | ||
"commandStartedEvent" | ||
] | ||
} | ||
}, | ||
{ | ||
"database": { | ||
"id": "database0", | ||
"client": "client0", | ||
"databaseName": "distinct-comment-tests" | ||
} | ||
}, | ||
{ | ||
"collection": { | ||
"id": "collection0", | ||
"database": "database0", | ||
"collectionName": "coll0" | ||
} | ||
} | ||
], | ||
"initialData": [ | ||
{ | ||
"collectionName": "coll0", | ||
"databaseName": "distinct-comment-tests", | ||
"documents": [ | ||
{ | ||
"_id": 1, | ||
"x": 11 | ||
}, | ||
{ | ||
"_id": 2, | ||
"x": 22 | ||
}, | ||
{ | ||
"_id": 3, | ||
"x": 33 | ||
} | ||
] | ||
} | ||
], | ||
"tests": [ | ||
{ | ||
"description": "distinct with document comment", | ||
"runOnRequirements": [ | ||
{ | ||
"minServerVersion": "4.4.14" | ||
} | ||
], | ||
"operations": [ | ||
{ | ||
"name": "distinct", | ||
"object": "collection0", | ||
"arguments": { | ||
"fieldName": "x", | ||
"filter": {}, | ||
"comment": { | ||
"key": "value" | ||
} | ||
}, | ||
"expectResult": [ 11, 22, 33 ] | ||
} | ||
], | ||
"expectEvents": [ | ||
{ | ||
"client": "client0", | ||
"events": [ | ||
{ | ||
"commandStartedEvent": { | ||
"command": { | ||
"distinct": "coll0", | ||
"key": "x", | ||
"query": {}, | ||
"comment": { | ||
"key": "value" | ||
} | ||
}, | ||
"commandName": "distinct", | ||
"databaseName": "distinct-comment-tests" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"description": "distinct with string comment", | ||
"runOnRequirements": [ | ||
{ | ||
"minServerVersion": "4.4.0" | ||
} | ||
], | ||
"operations": [ | ||
{ | ||
"name": "distinct", | ||
"object": "collection0", | ||
"arguments": { | ||
"fieldName": "x", | ||
"filter": {}, | ||
"comment": "comment" | ||
}, | ||
"expectResult": [ 11, 22, 33 ] | ||
} | ||
], | ||
"expectEvents": [ | ||
{ | ||
"client": "client0", | ||
"events": [ | ||
{ | ||
"commandStartedEvent": { | ||
"command": { | ||
"distinct": "coll0", | ||
"key": "x", | ||
"query": {}, | ||
"comment": "comment" | ||
}, | ||
"commandName": "distinct", | ||
"databaseName": "distinct-comment-tests" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"description": "distinct with document comment - pre 4.4, server error", | ||
"runOnRequirements": [ | ||
{ | ||
"minServerVersion": "3.6.0", | ||
"maxServerVersion": "4.4.13" | ||
} | ||
], | ||
"operations": [ | ||
{ | ||
"name": "distinct", | ||
"object": "collection0", | ||
"arguments": { | ||
"fieldName": "x", | ||
"filter": {}, | ||
"comment": { | ||
"key": "value" | ||
} | ||
}, | ||
"expectError": { | ||
"isClientError": false | ||
} | ||
} | ||
], | ||
"expectEvents": [ | ||
{ | ||
"client": "client0", | ||
"events": [ | ||
{ | ||
"commandStartedEvent": { | ||
"command": { | ||
"distinct": "coll0", | ||
"key": "x", | ||
"query": {}, | ||
"comment": { | ||
"key": "value" | ||
} | ||
}, | ||
"commandName": "distinct", | ||
"databaseName": "distinct-comment-tests" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
98 changes: 98 additions & 0 deletions
98
tests/MongoDB.Driver.Tests/Specifications/crud/tests/unified/distinct-comment.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,98 @@ | ||
description: "distinct-comment" | ||
|
||
schemaVersion: "1.0" | ||
|
||
createEntities: | ||
- client: | ||
id: &client0 client0 | ||
observeEvents: [ commandStartedEvent ] | ||
- database: | ||
id: &database0 database0 | ||
client: *client0 | ||
databaseName: &database0Name distinct-comment-tests | ||
- collection: | ||
id: &collection0 collection0 | ||
database: *database0 | ||
collectionName: &collection0Name coll0 | ||
|
||
initialData: | ||
- collectionName: *collection0Name | ||
databaseName: *database0Name | ||
documents: | ||
- { _id: 1, x: 11 } | ||
- { _id: 2, x: 22 } | ||
- { _id: 3, x: 33 } | ||
|
||
tests: | ||
- description: "distinct with document comment" | ||
runOnRequirements: | ||
# https://jira.mongodb.org/browse/SERVER-44847 | ||
# Server supports distinct with comment of any type for comment starting from 4.4.14. | ||
- minServerVersion: "4.4.14" | ||
operations: | ||
- name: distinct | ||
object: *collection0 | ||
arguments: | ||
fieldName: &fieldName x | ||
filter: &filter {} | ||
comment: &documentComment { key: "value"} | ||
expectResult: [ 11, 22, 33 ] | ||
expectEvents: | ||
- client: *client0 | ||
events: | ||
- commandStartedEvent: | ||
command: | ||
distinct: *collection0Name | ||
key: *fieldName | ||
query: *filter | ||
comment: *documentComment | ||
commandName: distinct | ||
databaseName: *database0Name | ||
|
||
- description: "distinct with string comment" | ||
runOnRequirements: | ||
- minServerVersion: "4.4.0" | ||
operations: | ||
- name: distinct | ||
object: *collection0 | ||
arguments: | ||
fieldName: *fieldName | ||
filter: *filter | ||
comment: &stringComment "comment" | ||
expectResult: [ 11, 22, 33 ] | ||
expectEvents: | ||
- client: *client0 | ||
events: | ||
- commandStartedEvent: | ||
command: | ||
distinct: *collection0Name | ||
key: *fieldName | ||
query: *filter | ||
comment: *stringComment | ||
commandName: distinct | ||
databaseName: *database0Name | ||
|
||
- description: "distinct with document comment - pre 4.4, server error" | ||
runOnRequirements: | ||
- minServerVersion: "3.6.0" | ||
maxServerVersion: "4.4.13" | ||
operations: | ||
- name: distinct | ||
object: *collection0 | ||
arguments: | ||
fieldName: *fieldName | ||
filter: *filter | ||
comment: *documentComment | ||
expectError: | ||
isClientError: false | ||
expectEvents: | ||
- client: *client0 | ||
events: | ||
- commandStartedEvent: | ||
command: | ||
distinct: *collection0Name | ||
key: *fieldName | ||
query: *filter | ||
comment: *documentComment | ||
commandName: distinct | ||
databaseName: *database0Name |
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