blob: fcced9b96636e2ac0839007e5bf774bfab9687ef [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"