Code

frontend/grammar: Access attribute values using attributes[<name>].
[sysdb.git] / t / integration / simple_query.sh
index 900db90c01519c00c93095fd5eae902c0a906a93..1e1028c5738cfbd2347f9d0383624cb6c0dce185 100755 (executable)
@@ -75,7 +75,6 @@ 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"' \
        | grep -F '"mock service"' \
        | grep -F '"other service"' \
@@ -121,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"'
@@ -153,6 +152,18 @@ output="$( run_sysdb -H "$SOCKET_FILE" \
                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" \
        -c "LOOKUP hosts MATCHING service = 'sysdbd'" )"
 echo "$output" | grep -F '"localhost"'
@@ -172,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" \