X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Fintegration%2Fsimple_query.sh;h=a2df1b933e7d89d316c3fa57c8360cbf486f4c2e;hb=baeea2369e2feabf67121ffc771d7c29b5ae43f9;hp=22bd815a95f4733ef09c52f44b2996b9ca13de13;hpb=5ef6f70a8eae3e4ee1a839e10b2d2037382463e0;p=sysdb.git diff --git a/t/integration/simple_query.sh b/t/integration/simple_query.sh index 22bd815..a2df1b9 100755 --- a/t/integration/simple_query.sh +++ b/t/integration/simple_query.sh @@ -29,7 +29,7 @@ # Integration tests using simple queries. # -set -e +set -ex source "$( dirname "$0" )/test_lib.sh" @@ -53,7 +53,8 @@ output="$( run_sysdb -H "$SOCKET_FILE" -c INVALID )" && exit 1 echo "$output" | grep "Failed to parse query 'INVALID'" echo "$output" | grep "parse error: syntax error" -output="$( run_sysdb -H "$SOCKET_FILE" -c LIST )" +# Simple, successful commands. +output="$( run_sysdb -H "$SOCKET_FILE" -c 'LIST hosts' )" echo "$output" \ | grep -F '"host1.example.com"' \ | grep -F '"host2.example.com"' \ @@ -61,7 +62,15 @@ echo "$output" \ | grep -F '"other.host.name"' \ | grep -F '"some.host.name"' -output="$( run_sysdb -H "$SOCKET_FILE" -c "FETCH 'host1.example.com'" )" +output="$( echo 'LIST hosts;' | run_sysdb -H "$SOCKET_FILE" )" || echo $? +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 "FETCH host 'host1.example.com'" )" echo "$output" \ | grep -F '"host1.example.com"' \ | grep -F '"mock service"' \ @@ -71,13 +80,34 @@ echo "$output" | grep -F 'localhost' && exit 1 echo "$output" | grep -F 'other.host.name' && exit 1 echo "$output" | grep -F 'some.host.name' && exit 1 +(echo 'LIST hosts;'; sleep 1; echo "FETCH host 'host1.example.com'") \ + | run_sysdb -H "$SOCKET_FILE" + # When requesting information for unknown hosts, expect a non-zero exit code. -output="$( run_sysdb -H "$SOCKET_FILE" -c "FETCH 'does.not.exist'" )" \ +output="$( run_sysdb -H "$SOCKET_FILE" -c "FETCH host 'does.not.exist'" )" \ && exit 1 echo "$output" | grep -F 'not found' output="$( run_sysdb -H "$SOCKET_FILE" \ - -c "LOOKUP hosts WHERE attribute.architecture = 'x42'" )" + -c "LOOKUP hosts MATCHING metric = 'foo/bar/qux'" )" +echo "$output" \ + | grep -F '"some.host.name"' \ + | grep -F '"other.host.name"' +echo "$output" | grep -F 'localhost' && exit 1 +echo "$output" | grep -F 'host1.example.com' && exit 1 +echo "$output" | grep -F 'host2.example.com' && exit 1 + +output="$( run_sysdb -H "$SOCKET_FILE" \ + -c "LOOKUP hosts MATCHING service = 'mock service'" )" +echo "$output" \ + | grep -F '"some.host.name"' \ + | grep -F '"host1.example.com"' \ + | grep -F '"host2.example.com"' +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'" )" echo "$output" \ | grep -F '"host1.example.com"' \ | grep -F '"host2.example.com"' @@ -86,7 +116,7 @@ echo "$output" | grep -F 'other.host.name' && exit 1 echo "$output" | grep -F 'some.host.name' && exit 1 output="$( run_sysdb -H "$SOCKET_FILE" \ - -c "LOOKUP hosts WHERE attribute.name != 'architecture'" )" + -c "LOOKUP hosts MATCHING attribute != 'architecture'" )" echo "$output" \ | grep -F '"some.host.name"' \ | grep -F '"localhost"' @@ -95,7 +125,22 @@ echo "$output" | grep -F 'host1.example.com' && exit 1 echo "$output" | grep -F 'host2.example.com' && exit 1 output="$( run_sysdb -H "$SOCKET_FILE" \ - -c "LOOKUP hosts WHERE service.name = 'sysdbd'" )" + -c "LOOKUP hosts MATCHING attribute != 'architecture' + FILTER :age >= 0s" )" +echo "$output" \ + | grep -F '"some.host.name"' \ + | grep -F '"localhost"' +echo "$output" | grep -F 'other.host.name' && exit 1 +echo "$output" | grep -F 'host1.example.com' && exit 1 +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" )" +echo $output | grep -E '^\[\]$' + +output="$( run_sysdb -H "$SOCKET_FILE" \ + -c "LOOKUP hosts MATCHING service = 'sysdbd'" )" echo "$output" | grep -F '"localhost"' echo "$output" | grep -F 'some.host.name' && exit 1 echo "$output" | grep -F 'other.host.name' && exit 1 @@ -103,7 +148,7 @@ echo "$output" | grep -F 'host1.example.com' && exit 1 echo "$output" | grep -F 'host2.example.com' && exit 1 output="$( run_sysdb -H "$SOCKET_FILE" \ - -c "LOOKUP hosts WHERE host.name =~ 'example.com'" )" + -c "LOOKUP hosts MATCHING host =~ 'example.com'" )" echo "$output" \ | grep -F '"host1.example.com"' \ | grep -F '"host2.example.com"' @@ -113,8 +158,11 @@ 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 WHERE attribute.invalid = 'none'" )" + -c "LOOKUP hosts MATCHING attribute.invalid = 'none'" )" echo $output | grep -E '^\[\]$' +run_sysdb -H "$SOCKET_FILE" \ + -c "TIMESERIES 'invalid.host'.'invalid-metric'" && exit 1 + stop_sysdbd