github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/tests/acceptance/test_data/source_files/service.json (about)

     1  [
     2    {
     3      "name": "query test 1",
     4      "run": [
     5        "steampipe query sample.sql"
     6      ]
     7    },
     8    {
     9      "name": "check test 1",
    10      "run": [
    11        "steampipe check all"
    12      ]
    13    },
    14    {
    15      "name": "check-query test 1",
    16      "run": [
    17        "steampipe check all",
    18        "steampipe query sample.sql"
    19      ]
    20    },
    21    {
    22      "name": "service cycle",
    23      "run": [
    24        "steampipe service start",
    25        "steampipe service stop"
    26      ]
    27    },
    28    {
    29      "name": "Two Steampipe instances with implicit service",
    30      "run": [
    31        "steampipe check all",
    32        "steampipe query sample.sql"
    33      ]
    34    },
    35    {
    36      "name": "Steampipe and `pgcli` with `implicit` service",
    37      "run": [
    38        "steampipe check all",
    39        "pgcli postgres://steampipe@localhost:9193"
    40      ]
    41    },
    42    {
    43      "name": "Steampipe and third party client with `explicit` service",
    44      "run": [
    45        "steampipe service start",
    46        "steampipe check all",
    47        "steampipe query sample.sql",
    48        "pgcli postgres://steampipe@localhost:9193",
    49        "steampipe service stop"
    50      ]
    51    }
    52  ]