89 lines
1.9 KiB
JSON
89 lines
1.9 KiB
JSON
{
|
|
"description": "operator-lte",
|
|
"schemaVersion": "1.9",
|
|
"createEntities": [
|
|
{
|
|
"client": {
|
|
"id": "client0",
|
|
"observeEvents": [
|
|
"commandStartedEvent"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"database": {
|
|
"id": "database0",
|
|
"client": "client0",
|
|
"databaseName": "database0Name"
|
|
}
|
|
},
|
|
{
|
|
"collection": {
|
|
"id": "collection0",
|
|
"database": "database0",
|
|
"collectionName": "coll0"
|
|
}
|
|
}
|
|
],
|
|
"initialData": [
|
|
{
|
|
"collectionName": "coll0",
|
|
"databaseName": "database0Name",
|
|
"documents": []
|
|
}
|
|
],
|
|
"tests": [
|
|
{
|
|
"description": "special lte matching operator",
|
|
"operations": [
|
|
{
|
|
"name": "insertOne",
|
|
"object": "collection0",
|
|
"arguments": {
|
|
"document": {
|
|
"_id": 1,
|
|
"x": 2,
|
|
"y": 3,
|
|
"z": 4
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client0",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"insert": "coll0",
|
|
"documents": [
|
|
{
|
|
"_id": {
|
|
"$$lte": 2
|
|
},
|
|
"x": {
|
|
"$$lte": 2.1
|
|
},
|
|
"y": {
|
|
"$$lte": {
|
|
"$numberLong": "3"
|
|
}
|
|
},
|
|
"z": {
|
|
"$$lte": 4
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"commandName": "insert",
|
|
"databaseName": "database0Name"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|