{
  "description": "no-handshake-command-logs",
  "schemaVersion": "1.13",
  "tests": [
    {
      "description": "Handshake commands should not generate log messages",
      "operations": [
        {
          "name": "createEntities",
          "object": "testRunner",
          "arguments": {
            "entities": [
              {
                "client": {
                  "id": "client",
                  "observeLogMessages": {
                    "command": "debug"
                  },
                  "observeEvents": [
                    "connectionCreatedEvent",
                    "connectionReadyEvent"
                  ]
                }
              },
              {
                "database": {
                  "id": "database",
                  "client": "client",
                  "databaseName": "logging-tests"
                }
              }
            ]
          }
        },
        {
          "name": "runCommand",
          "object": "database",
          "arguments": {
            "command": {
              "ping": 1
            },
            "commandName": "ping"
          }
        },
        {
          "name": "waitForEvent",
          "object": "testRunner",
          "arguments": {
            "client": "client",
            "event": {
              "connectionCreatedEvent": {}
            },
            "count": 1
          }
        },
        {
          "name": "waitForEvent",
          "object": "testRunner",
          "arguments": {
            "client": "client",
            "event": {
              "connectionReadyEvent": {}
            },
            "count": 1
          }
        }
      ],
      "expectLogMessages": [
        {
          "client": "client",
          "messages": [
            {
              "level": "debug",
              "component": "command",
              "data": {
                "message": "Command started",
                "databaseName": "logging-tests",
                "commandName": "ping"
              }
            },
            {
              "level": "debug",
              "component": "command",
              "data": {
                "message": "Command succeeded",
                "commandName": "ping"
              }
            }
          ]
        }
      ]
    }
  ]
}
