blob: 24859bec21e7717878f5d40d220d59cee01f074c [file] [log] [blame]
---
# timesheets molecule/default/verify.yml
#
# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
# SPDX-License-Identifier: Apache-2.0
- name: Verify
hosts: all
tasks:
- name: Obtain the root webpage, check that it's from timesheetsui
uri:
url: http://127.0.0.1/
headers:
Host: "timesheets.example.com"
status_code: 200
return_content: true
register: timesheet_root_page
failed_when: "'Timesheetsui' not in timesheet_root_page.content"
- name: Obtain the /rest/ webpage, check that it's from timesheetsdb
uri:
url: http://127.0.0.1/
headers:
Host: "timesheets.example.com"
status_code: 200
return_content: true
register: timesheet_rest_page
failed_when: "'Hello World' not in timesheet_rest_page.content"