1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/integration/targets/lookup_lmdb_kv/test.yml

27 lines
732 B
YAML
Raw Normal View History

2020-03-09 10:11:07 +01:00
- hosts: localhost
tasks:
- debug:
2020-03-29 13:02:28 +02:00
msg: '{{ query(''community.general.lmdb_kv'', ''nl'', ''be'', ''lu'', db=''jp.mdb'') }}'
2020-03-09 10:11:07 +01:00
- debug:
var: item.1
loop: '{{ query(''community.general.lmdb_kv'', db=''jp.mdb'') }}'
- assert:
that:
2020-03-29 13:02:28 +02:00
- query('community.general.lmdb_kv', 'nl', 'be', 'lu', db='jp.mdb') == ['Netherlands', 'Belgium', 'Luxembourg']
- query('community.general.lmdb_kv', db='jp.mdb')|length == 5
2020-03-09 10:11:07 +01:00
- assert:
that:
- item.0 == 'nl'
- item.1 == 'Netherlands'
vars:
- lmdb_kv_db: jp.mdb
with_community.general.lmdb_kv:
- n*
- assert:
that:
- item == 'Belgium'
vars:
- lmdb_kv_db: jp.mdb
with_community.general.lmdb_kv:
- be