26 lines
813 B
YAML
26 lines
813 B
YAML
variables:
|
|
users:
|
|
- email: 'info@lufthansa.com'
|
|
password: 'password1234'
|
|
steps:
|
|
- http:
|
|
post:
|
|
url: '{{ gateway }}/auth/login'
|
|
body: '{{ users[0] }}'
|
|
headers: {Content-Type: 'application/json'}
|
|
response_code: 2xx
|
|
name: 'Login with {{ users[0].email }}'
|
|
register: {user_id: '{{ OUTPUT.user_id }}'}
|
|
- postgres:
|
|
request:
|
|
conf: '{{ postgres }}'
|
|
sql: 'select * from users where id = {{ user_id }}'
|
|
register: {email_in_db: '{{ OUTPUT.email }}'}
|
|
- check:
|
|
equals: {the: '{{ users[0].email }}', is: '{{ email_in_db }}'}
|
|
# finally:
|
|
# - postgres:
|
|
# request:
|
|
# conf: '{{ postgres }}'
|
|
# sql: 'delete from users where id = {{ user_id }}'
|