X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Fintegration%2Fsimple_query.sh;h=677ce2fe0de18af1e27e249d0c8c8f2929cee546;hb=42d1e77a0987e3d51950a1d1c9b9049dfd377598;hp=8a0a92ac67a0c92e9b0f8ff122c2b71ab46136cb;hpb=d92732ae426255434bbb0f0be8ddfd1b8be0d265;p=sysdb.git diff --git a/t/integration/simple_query.sh b/t/integration/simple_query.sh index 8a0a92a..677ce2f 100755 --- a/t/integration/simple_query.sh +++ b/t/integration/simple_query.sh @@ -70,6 +70,19 @@ echo "$output" \ | grep -F '"other.host.name"' \ | grep -F '"some.host.name"' +output="$( run_sysdb -H "$SOCKET_FILE" -c 'LIST services' )" +echo "$output" \ + | grep -F '"host1.example.com"' \ + | grep -F '"host2.example.com"' \ + | grep -F '"localhost"' \ + | grep -F '"some.host.name"' \ + | grep -F '"mock service"' \ + | grep -F '"other service"' \ + | grep -F '"database"' \ + | grep -F '"example service one"' \ + | grep -F '"example service two"' \ + | grep -F '"example service three"' + output="$( run_sysdb -H "$SOCKET_FILE" -c "FETCH host 'host1.example.com'" )" echo "$output" \ | grep -F '"host1.example.com"' \ @@ -107,7 +120,7 @@ echo "$output" | grep -F 'localhost' && exit 1 echo "$output" | grep -F 'other.host.name' && exit 1 output="$( run_sysdb -H "$SOCKET_FILE" \ - -c "LOOKUP hosts MATCHING attribute.architecture = 'x42'" )" + -c "LOOKUP hosts MATCHING attribute[architecture] = 'x42'" )" echo "$output" \ | grep -F '"host1.example.com"' \ | grep -F '"host2.example.com"' @@ -126,7 +139,7 @@ echo "$output" | grep -F 'host2.example.com' && exit 1 output="$( run_sysdb -H "$SOCKET_FILE" \ -c "LOOKUP hosts MATCHING attribute != 'architecture' - FILTER :age >= 0s" )" + FILTER .age >= 0s" )" echo "$output" \ | grep -F '"some.host.name"' \ | grep -F '"localhost"' @@ -136,7 +149,19 @@ echo "$output" | grep -F 'host2.example.com' && exit 1 output="$( run_sysdb -H "$SOCKET_FILE" \ -c "LOOKUP hosts MATCHING attribute != 'architecture' - FILTER :last_update < 2Y" )" + FILTER .last_update < 2Y" )" +echo $output | grep -E '^\[\]$' + +output="$( run_sysdb -H "$SOCKET_FILE" \ + -c "LOOKUP hosts FILTER .backend = 'backend::mock_plugin'" )" +echo "$output" \ + | grep -F '"host1.example.com"' \ + | grep -F '"host2.example.com"' \ + | grep -F '"localhost"' \ + | grep -F '"other.host.name"' \ + | grep -F '"some.host.name"' +output="$( run_sysdb -H "$SOCKET_FILE" \ + -c "LOOKUP hosts FILTER .backend = 'invalid'" )" echo $output | grep -E '^\[\]$' output="$( run_sysdb -H "$SOCKET_FILE" \ @@ -158,7 +183,7 @@ echo "$output" | grep -F 'localhost' && exit 1 # When querying hosts that don't exist, expect a zero exit code. output="$( run_sysdb -H "$SOCKET_FILE" \ - -c "LOOKUP hosts MATCHING attribute.invalid = 'none'" )" + -c "LOOKUP hosts MATCHING attribute[invalid] = 'none'" )" echo $output | grep -E '^\[\]$' run_sysdb -H "$SOCKET_FILE" \