| --- |
| # 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: "'ONF Timesheets' not in timesheet_root_page.content" |
| |
| - name: Obtain the /rest/ webpage, check that it's from timesheetsdb |
| uri: |
| url: http://127.0.0.1/rest/ |
| headers: |
| Host: "timesheets.example.com" |
| status_code: 200 |
| return_content: true |
| register: timesheet_rest_page |
| failed_when: "'Express' not in timesheet_rest_page.x_powered_by" |