diff --git a/.github/settings.yml b/.github/settings.yml new file mode 100644 index 0000000..291112e --- /dev/null +++ b/.github/settings.yml @@ -0,0 +1,61 @@ +### +# https://probot.github.io/apps/settings/ +# + +# DO NOT MODIFY +# this is a copy of https://github.com/gundalow-collection/.github/blob/master/.github/settings.yml +# Work around till https://github.com/probot/settings/pull/179 is merged + + + +repository: + # See https://developer.github.com/v3/repos/#edit for all available settings. + has_issues: true + has_wiki: false + has_pages: false + default_branch: devel + allow_squash_merge: true + allow_merge_commit: false + allow_rebase_merge: true + +# Labels: define labels for Issues and Pull Requests +labels: + - name: bug + color: fbca04 + description: This issue/PR relates to a bug. + - name: feature + description: This issue/PR relates to a feature request. + color: 006b75 + - name: migrated_from_ansible_ansible + color: 5319e7 + description: This issue/PR was moved from gh/ansible/ansible + +branches: + - name: master + # https://developer.github.com/v3/repos/branches/#update-branch-protection + # Branch Protection settings. Set to null to disable + protection: + # Required. Require at least one approving review on a pull request, before merging. Set to null to disable. + required_pull_request_reviews: + # The number of approvals required. (1-6) + required_approving_review_count: 1 + # Dismiss approved reviews automatically when a new commit is pushed. + dismiss_stale_reviews: true + # Blocks merge until code owners have reviewed. + require_code_owner_reviews: true + # Specify which users and teams can dismiss pull request reviews. Pass an empty dismissal_restrictions object to disable. User and team dismissal_restrictions are only available for organization-owned repositories. Omit this parameter for personal repositories. + dismissal_restrictions: + users: [] + teams: [] + # Required. Require status checks to pass before merging. Set to null to disable + required_status_checks: + # Required. Require branches to be up to date before merging. + strict: true + # Required. The list of status checks to require in order to merge into this branch + contexts: [] + # Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable. + enforce_admins: true + # Required. Restrict who can push to this branch. Team and user restrictions are only available for organization-owned repositories. Set to null to disable. + #restrictions: + # users: [] + # teams: [] diff --git a/.github/workflows/collection-continuous-integration.yml b/.github/workflows/collection-continuous-integration.yml deleted file mode 100644 index ba73893..0000000 --- a/.github/workflows/collection-continuous-integration.yml +++ /dev/null @@ -1,308 +0,0 @@ -name: Collection test suite - -on: - push: - pull_request: - schedule: - - cron: 3 0 * * * # Run daily at 0:03 UTC - -jobs: - build-collection-artifact: - name: Build collection - runs-on: ${{ matrix.runner-os }} - strategy: - matrix: - runner-os: - - ubuntu-latest - ansible-version: - - git+https://github.com/ansible/ansible.git@devel - runner-python-version: - - 3.8 - steps: - - name: Check out ${{ github.repository }} on disk - uses: actions/checkout@master - - name: Set up Python ${{ matrix.runner-python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.runner-python-version }} - - name: Set up pip cache - uses: actions/cache@v1 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('tests/sanity/requirements.txt') }}-${{ hashFiles('tests/unit/requirements.txt') }} - restore-keys: | - ${{ runner.os }}-pip- - ${{ runner.os }}- - - name: Install Ansible ${{ matrix.ansible-version }} - run: >- - python -m - pip - install - --user - ${{ matrix.ansible-version }} - - name: Build a collection tarball - run: >- - ~/.local/bin/ansible-galaxy - collection - build - --output-path - "${GITHUB_WORKSPACE}/.cache/collection-tarballs" - - name: Store migrated collection artifacts - uses: actions/upload-artifact@v1 - with: - name: >- - collection - path: .cache/collection-tarballs - - sanity-test-collection-via-vms: - name: Sanity in VM ${{ matrix.os.vm || 'ubuntu-latest' }} - needs: - - build-collection-artifact - runs-on: ${{ matrix.os.vm || 'ubuntu-latest' }} - strategy: - fail-fast: false - matrix: - ansible-version: - - git+https://github.com/ansible/ansible.git@devel - os: - - vm: ubuntu-latest - - vm: ubuntu-16.04 - - vm: macos-latest - python-version: - - 3.8 - - 3.7 - - 3.6 - - 3.5 - - 2.7 - steps: - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: Set up pip cache - uses: actions/cache@v1 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ github.ref }}-sanity-VMs - restore-keys: | - ${{ runner.os }}-pip- - ${{ runner.os }}- - - name: Install Ansible ${{ matrix.ansible-version }} - run: >- - python -m - pip - install - --user - ${{ matrix.ansible-version }} - - name: Download migrated collection artifacts - uses: actions/download-artifact@v1 - with: - name: >- - collection - path: .cache/collection-tarballs - - name: Install the collection tarball - run: >- - ~/.local/bin/ansible-galaxy - collection - install - .cache/collection-tarballs/*.tar.gz - - name: Run collection sanity tests - run: >- - ~/.local/bin/ansible-test - sanity - --color - --requirements - --venv - --python - "${{ matrix.python-version }}" - -vvv - working-directory: >- - /${{ runner.os == 'Linux' && 'home' || 'Users' }}/runner/.ansible/collections/ansible_collections/ansible/posix - - sanity-test-collection-via-containers: - name: Sanity in container via Python ${{ matrix.python-version }} - needs: - - build-collection-artifact - runs-on: ${{ matrix.runner-os }} - strategy: - fail-fast: false - matrix: - runner-os: - - ubuntu-latest - runner-python-version: - - 3.8 - ansible-version: - - git+https://github.com/ansible/ansible.git@devel - python-version: - - 3.8 - - 2.7 - - 3.7 - - 3.6 - - 3.5 - - 2.6 - steps: - - name: Set up Python ${{ matrix.runner-python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.runner-python-version }} - - name: Set up pip cache - uses: actions/cache@v1 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ github.ref }}-sanity-containers - restore-keys: | - ${{ runner.os }}-pip- - ${{ runner.os }}- - - name: Install Ansible ${{ matrix.ansible-version }} - run: >- - python -m - pip - install - --user - ${{ matrix.ansible-version }} - - name: Download migrated collection artifacts - uses: actions/download-artifact@v1 - with: - name: >- - collection - path: .cache/collection-tarballs - - name: Install the collection tarball - run: >- - ~/.local/bin/ansible-galaxy - collection - install - .cache/collection-tarballs/*.tar.gz - - name: Run collection sanity tests - run: >- - ~/.local/bin/ansible-test - sanity - --color - --requirements - --docker - --python - "${{ matrix.python-version }}" - -vvv - working-directory: >- - /home/runner/.ansible/collections/ansible_collections/ansible/posix - - unit-test-collection-via-vms: - name: Units in VM ${{ matrix.os.vm || 'ubuntu-latest' }} - needs: - - build-collection-artifact - runs-on: ${{ matrix.os.vm || 'ubuntu-latest' }} - strategy: - fail-fast: false - matrix: - ansible-version: - - git+https://github.com/ansible/ansible.git@devel - os: - - vm: ubuntu-latest - - vm: ubuntu-16.04 - - vm: macos-latest - python-version: - - 3.8 - - 3.7 - - 3.6 - - 3.5 - - 2.7 - steps: - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: Set up pip cache - uses: actions/cache@v1 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ github.ref }}-units-VMs - restore-keys: | - ${{ runner.os }}-pip- - ${{ runner.os }}- - - name: Install Ansible ${{ matrix.ansible-version }} - run: >- - python -m - pip - install - --user - ${{ matrix.ansible-version }} - - name: Download migrated collection artifacts - uses: actions/download-artifact@v1 - with: - name: >- - collection - path: .cache/collection-tarballs - - name: Install the collection tarball - run: >- - ~/.local/bin/ansible-galaxy - collection - install - .cache/collection-tarballs/*.tar.gz - - name: Run collection unit tests - run: | - [[ ! -d 'tests/unit' ]] && echo This collection does not have unit tests. Skipping... || \ - ~/.local/bin/ansible-test units --color --coverage --requirements --venv --python "${{ matrix.python-version }}" -vvv - working-directory: >- - /${{ runner.os == 'Linux' && 'home' || 'Users' }}/runner/.ansible/collections/ansible_collections/ansible/posix - - unit-test-collection-via-containers: - name: Units in container ${{ matrix.container-image }} - needs: - - build-collection-artifact - runs-on: ${{ matrix.runner-os }} - strategy: - fail-fast: false - matrix: - runner-os: - - ubuntu-latest - runner-python-version: - - 3.8 - ansible-version: - - git+https://github.com/ansible/ansible.git@devel - container-image: - - fedora31 - - ubuntu1804 - - centos8 - - opensuse15 - - fedora30 - - centos7 - - opensuse15py2 - - ubuntu1604 - - centos6 - steps: - - name: Set up Python ${{ matrix.runner-python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.runner-python-version }} - - name: Set up pip cache - uses: actions/cache@v1 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ github.ref }}-units-containers - restore-keys: | - ${{ runner.os }}-pip- - ${{ runner.os }}- - - name: Install Ansible ${{ matrix.ansible-version }} - run: >- - python -m - pip - install - --user - ${{ matrix.ansible-version }} - - name: Download migrated collection artifacts - uses: actions/download-artifact@v1 - with: - name: >- - collection - path: .cache/collection-tarballs - - name: Install the collection tarball - run: >- - ~/.local/bin/ansible-galaxy - collection - install - .cache/collection-tarballs/*.tar.gz - - name: Run collection unit tests - run: | - [[ ! -d 'tests/unit' ]] && echo This collection does not have unit tests. Skipping... || \ - ~/.local/bin/ansible-test units --color --coverage --requirements --docker "${{ matrix.container-image }}" -vvv - working-directory: >- - /home/runner/.ansible/collections/ansible_collections/ansible/posix \ No newline at end of file diff --git a/galaxy.yml b/galaxy.yml index a073b38..1de2e49 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,13 +2,14 @@ namespace: ansible name: posix version: 0.1.0 readme: README.md -authors: null +authors: + - Ansible (github.com/ansible) description: null license: GPL-3.0-or-later license_file: COPYING tags: null dependencies: {} -repository: git@github.com:ansible-collection-migration/ansible.posix.git -documentation: https://github.com/ansible-collection-migration/ansible.posix/tree/master/docs -homepage: https://github.com/ansible-collection-migration/ansible.posix -issues: https://github.com/ansible-collection-migration/ansible.posix/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc +repository: https://github.com:ansible-collections/ansible.posix +documentation: https://github.com/ansible-collections/ansible.posix/tree/master/docs +homepage: https://github.com:ansible-collections/ansible.posix +issues: https://github.com:ansible-collections/ansible.posix diff --git a/shippable.yml b/shippable.yml new file mode 100644 index 0000000..4b7ac56 --- /dev/null +++ b/shippable.yml @@ -0,0 +1,156 @@ +language: python + +env: + matrix: + - T=none + +matrix: + exclude: + - env: T=none + include: + - env: T=sanity/1 + - env: T=sanity/2 + - env: T=sanity/3 + - env: T=sanity/4 + - env: T=sanity/5 + + - env: T=units/2.6/1 + - env: T=units/2.7/1 + - env: T=units/3.5/1 + - env: T=units/3.6/1 + - env: T=units/3.7/1 + - env: T=units/3.8/1 + - env: T=units/3.9/1 + + - env: T=units/2.6/2 + - env: T=units/2.7/2 + - env: T=units/3.5/2 + - env: T=units/3.6/2 + - env: T=units/3.7/2 + - env: T=units/3.8/2 + - env: T=units/3.9/2 + + - env: T=units/2.6/3 + - env: T=units/2.7/3 + - env: T=units/3.5/3 + - env: T=units/3.6/3 + - env: T=units/3.7/3 + - env: T=units/3.8/3 + - env: T=units/3.9/3 + + - env: T=aix/7.2/1 + - env: T=osx/10.11/1 + - env: T=rhel/7.6/1 + - env: T=rhel/8.1/1 + - env: T=freebsd/11.1/1 + - env: T=freebsd/12.1/1 + - env: T=linux/centos6/1 + - env: T=linux/centos7/1 + - env: T=linux/centos8/1 + - env: T=linux/fedora30/1 + - env: T=linux/fedora31/1 + - env: T=linux/opensuse15py2/1 + - env: T=linux/opensuse15/1 + - env: T=linux/ubuntu1604/1 + - env: T=linux/ubuntu1804/1 + + - env: T=aix/7.2/2 + - env: T=osx/10.11/2 + - env: T=rhel/7.6/2 + - env: T=rhel/8.1/2 + - env: T=freebsd/11.1/2 + - env: T=freebsd/12.1/2 + - env: T=linux/centos6/2 + - env: T=linux/centos7/2 + - env: T=linux/centos8/2 + - env: T=linux/fedora30/2 + - env: T=linux/fedora31/2 + - env: T=linux/opensuse15py2/2 + - env: T=linux/opensuse15/2 + - env: T=linux/ubuntu1604/2 + - env: T=linux/ubuntu1804/2 + + - env: T=aix/7.2/3 + - env: T=osx/10.11/3 + - env: T=rhel/7.6/3 + - env: T=rhel/8.1/3 + - env: T=freebsd/11.1/3 + - env: T=freebsd/12.1/3 + - env: T=linux/centos6/3 + - env: T=linux/centos7/3 + - env: T=linux/centos8/3 + - env: T=linux/fedora30/3 + - env: T=linux/fedora31/3 + - env: T=linux/opensuse15py2/3 + - env: T=linux/opensuse15/3 + - env: T=linux/ubuntu1604/3 + - env: T=linux/ubuntu1804/3 + + - env: T=aix/7.2/4 + - env: T=osx/10.11/4 + - env: T=rhel/7.6/4 + - env: T=rhel/8.1/4 + - env: T=freebsd/11.1/4 + - env: T=freebsd/12.1/4 + - env: T=linux/centos6/4 + - env: T=linux/centos7/4 + - env: T=linux/centos8/4 + - env: T=linux/fedora30/4 + - env: T=linux/fedora31/4 + - env: T=linux/opensuse15py2/4 + - env: T=linux/opensuse15/4 + - env: T=linux/ubuntu1604/4 + - env: T=linux/ubuntu1804/4 + + - env: T=aix/7.2/5 + - env: T=osx/10.11/5 + - env: T=rhel/7.6/5 + - env: T=rhel/8.1/5 + - env: T=freebsd/11.1/5 + - env: T=freebsd/12.1/5 + - env: T=linux/centos6/5 + - env: T=linux/centos7/5 + - env: T=linux/centos8/5 + - env: T=linux/fedora30/5 + - env: T=linux/fedora31/5 + - env: T=linux/opensuse15py2/5 + - env: T=linux/opensuse15/5 + - env: T=linux/ubuntu1604/5 + - env: T=linux/ubuntu1804/5 + + - env: T=fallaxy/2.7/1 + - env: T=fallaxy/3.6/1 + + - env: T=i/aix/7.2 + - env: T=i/osx/10.11 + - env: T=i/rhel/7.6 + - env: T=i/rhel/8.1 + - env: T=i/freebsd/11.1 + - env: T=i/freebsd/12.1 + - env: T=i/linux/centos6 + - env: T=i/linux/centos7 + - env: T=i/linux/centos8 + - env: T=i/linux/fedora30 + - env: T=i/linux/fedora31 + - env: T=i/linux/opensuse15py2 + - env: T=i/linux/opensuse15 + - env: T=i/linux/ubuntu1604 + - env: T=i/linux/ubuntu1804 + +branches: + except: + - "*-patch-*" + - "revert-*-*" + +build: + ci: + - tests/utils/shippable/timing.sh test/utils/shippable/shippable.sh $T + +integrations: + notifications: + - integrationName: email + type: email + on_success: never + on_failure: never + on_start: never + on_pull_request: never diff --git a/tests/utils/shippable/aix.sh b/tests/utils/shippable/aix.sh new file mode 120000 index 0000000..6ddb776 --- /dev/null +++ b/tests/utils/shippable/aix.sh @@ -0,0 +1 @@ +remote.sh \ No newline at end of file diff --git a/tests/utils/shippable/aws.sh b/tests/utils/shippable/aws.sh new file mode 120000 index 0000000..700ad3e --- /dev/null +++ b/tests/utils/shippable/aws.sh @@ -0,0 +1 @@ +cloud.sh \ No newline at end of file diff --git a/tests/utils/shippable/azure.sh b/tests/utils/shippable/azure.sh new file mode 120000 index 0000000..700ad3e --- /dev/null +++ b/tests/utils/shippable/azure.sh @@ -0,0 +1 @@ +cloud.sh \ No newline at end of file diff --git a/tests/utils/shippable/check_matrix.py b/tests/utils/shippable/check_matrix.py new file mode 100755 index 0000000..c8ed731 --- /dev/null +++ b/tests/utils/shippable/check_matrix.py @@ -0,0 +1,120 @@ +#!/usr/bin/env python +"""Verify the currently executing Shippable test matrix matches the one defined in the "shippable.yml" file.""" +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +import datetime +import json +import os +import re +import sys +import time + +try: + from typing import NoReturn +except ImportError: + NoReturn = None + +try: + # noinspection PyCompatibility + from urllib2 import urlopen # pylint: disable=ansible-bad-import-from +except ImportError: + # noinspection PyCompatibility + from urllib.request import urlopen + + +def main(): # type: () -> None + """Main entry point.""" + repo_full_name = os.environ['REPO_FULL_NAME'] + required_repo_full_name = 'ansible-collections/ansible.posix' + + if repo_full_name != required_repo_full_name: + sys.stderr.write('Skipping matrix check on repo "%s" which is not "%s".\n' % (repo_full_name, required_repo_full_name)) + return + + with open('shippable.yml', 'rb') as yaml_file: + yaml = yaml_file.read().decode('utf-8').splitlines() + + defined_matrix = [match.group(1) for match in [re.search(r'^ *- env: T=(.*)$', line) for line in yaml] if match and match.group(1) != 'none'] + + if not defined_matrix: + fail('No matrix entries found in the "shippable.yml" file.', + 'Did you modify the "shippable.yml" file?') + + run_id = os.environ['SHIPPABLE_BUILD_ID'] + sleep = 1 + jobs = [] + + for attempts_remaining in range(4, -1, -1): + try: + jobs = json.loads(urlopen('https://api.shippable.com/jobs?runIds=%s' % run_id).read()) + + if not isinstance(jobs, list): + raise Exception('Shippable run %s data is not a list.' % run_id) + + break + except Exception as ex: + if not attempts_remaining: + fail('Unable to retrieve Shippable run %s matrix.' % run_id, + str(ex)) + + sys.stderr.write('Unable to retrieve Shippable run %s matrix: %s\n' % (run_id, ex)) + sys.stderr.write('Trying again in %d seconds...\n' % sleep) + time.sleep(sleep) + sleep *= 2 + + if len(jobs) != len(defined_matrix): + if len(jobs) == 1: + hint = '\n\nMake sure you do not use the "Rebuild with SSH" option.' + else: + hint = '' + + fail('Shippable run %s has %d jobs instead of the expected %d jobs.' % (run_id, len(jobs), len(defined_matrix)), + 'Try re-running the entire matrix.%s' % hint) + + actual_matrix = dict((job.get('jobNumber'), dict(tuple(line.split('=', 1)) for line in job.get('env', [])).get('T', '')) for job in jobs) + errors = [(job_number, test, actual_matrix.get(job_number)) for job_number, test in enumerate(defined_matrix, 1) if actual_matrix.get(job_number) != test] + + if len(errors): + error_summary = '\n'.join('Job %s expected "%s" but found "%s" instead.' % (job_number, expected, actual) for job_number, expected, actual in errors) + + fail('Shippable run %s has a job matrix mismatch.' % run_id, + 'Try re-running the entire matrix.\n\n%s' % error_summary) + + +def fail(message, output): # type: (str, str) -> NoReturn + # Include a leading newline to improve readability on Shippable "Tests" tab. + # Without this, the first line becomes indented. + output = '\n' + output.strip() + + timestamp = datetime.datetime.utcnow().replace(microsecond=0).isoformat() + + # hack to avoid requiring junit-xml, which isn't pre-installed on Shippable outside our test containers + xml = ''' + + +\t +\t\t +\t\t\t%s +\t\t +\t + +''' % (timestamp, message, output) + + path = 'shippable/testresults/check-matrix.xml' + dir_path = os.path.dirname(path) + + if not os.path.exists(dir_path): + os.makedirs(dir_path) + + with open(path, 'w') as junit_fd: + junit_fd.write(xml.lstrip()) + + sys.stderr.write(message + '\n') + sys.stderr.write(output + '\n') + + sys.exit(1) + + +if __name__ == '__main__': + main() diff --git a/tests/utils/shippable/cloud.sh b/tests/utils/shippable/cloud.sh new file mode 100755 index 0000000..da037e0 --- /dev/null +++ b/tests/utils/shippable/cloud.sh @@ -0,0 +1,34 @@ +#!/usr/bin/env bash + +set -o pipefail -eux + +declare -a args +IFS='/:' read -ra args <<< "$1" + +cloud="${args[0]}" +python="${args[1]}" +group="${args[2]}" + +target="shippable/${cloud}/group${group}/" + +stage="${S:-prod}" + +changed_all_target="shippable/${cloud}/smoketest/" + +if ! ansible-test integration "${changed_all_target}" --list-targets > /dev/null 2>&1; then + # no smoketest tests are available for this cloud + changed_all_target="none" +fi + +if [ "${group}" == "1" ]; then + # only run smoketest tests for group1 + changed_all_mode="include" +else + # smoketest tests already covered by group1 + changed_all_mode="exclude" +fi + +# shellcheck disable=SC2086 +ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \ + --remote-terminate always --remote-stage "${stage}" \ + --docker --python "${python}" --changed-all-target "${changed_all_target}" --changed-all-mode "${changed_all_mode}" diff --git a/tests/utils/shippable/cs.sh b/tests/utils/shippable/cs.sh new file mode 120000 index 0000000..700ad3e --- /dev/null +++ b/tests/utils/shippable/cs.sh @@ -0,0 +1 @@ +cloud.sh \ No newline at end of file diff --git a/tests/utils/shippable/freebsd.sh b/tests/utils/shippable/freebsd.sh new file mode 120000 index 0000000..6ddb776 --- /dev/null +++ b/tests/utils/shippable/freebsd.sh @@ -0,0 +1 @@ +remote.sh \ No newline at end of file diff --git a/tests/utils/shippable/hcloud.sh b/tests/utils/shippable/hcloud.sh new file mode 120000 index 0000000..700ad3e --- /dev/null +++ b/tests/utils/shippable/hcloud.sh @@ -0,0 +1 @@ +cloud.sh \ No newline at end of file diff --git a/tests/utils/shippable/linux.sh b/tests/utils/shippable/linux.sh new file mode 100755 index 0000000..9cc2f96 --- /dev/null +++ b/tests/utils/shippable/linux.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +set -o pipefail -eux + +declare -a args +IFS='/:' read -ra args <<< "$1" + +image="${args[1]}" + +if [ "${#args[@]}" -gt 2 ]; then + target="shippable/posix/group${args[2]}/" +else + target="shippable/posix/" +fi + +# shellcheck disable=SC2086 +ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \ + --docker "${image}" diff --git a/tests/utils/shippable/osx.sh b/tests/utils/shippable/osx.sh new file mode 120000 index 0000000..6ddb776 --- /dev/null +++ b/tests/utils/shippable/osx.sh @@ -0,0 +1 @@ +remote.sh \ No newline at end of file diff --git a/tests/utils/shippable/remote.sh b/tests/utils/shippable/remote.sh new file mode 100755 index 0000000..cd3014c --- /dev/null +++ b/tests/utils/shippable/remote.sh @@ -0,0 +1,22 @@ +#!/usr/bin/env bash + +set -o pipefail -eux + +declare -a args +IFS='/:' read -ra args <<< "$1" + +platform="${args[0]}" +version="${args[1]}" + +if [ "${#args[@]}" -gt 2 ]; then + target="shippable/posix/group${args[2]}/" +else + target="shippable/posix/" +fi + +stage="${S:-prod}" +provider="${P:-default}" + +# shellcheck disable=SC2086 +ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \ + --remote "${platform}/${version}" --remote-terminate always --remote-stage "${stage}" --remote-provider "${provider}" diff --git a/tests/utils/shippable/rhel.sh b/tests/utils/shippable/rhel.sh new file mode 120000 index 0000000..6ddb776 --- /dev/null +++ b/tests/utils/shippable/rhel.sh @@ -0,0 +1 @@ +remote.sh \ No newline at end of file diff --git a/tests/utils/shippable/sanity.sh b/tests/utils/shippable/sanity.sh new file mode 100755 index 0000000..0c54a42 --- /dev/null +++ b/tests/utils/shippable/sanity.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +set -o pipefail -eux + +# shellcheck disable=SC2086 +ansible-test sanity --color -v --junit ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \ + --docker \ diff --git a/tests/utils/shippable/shippable.sh b/tests/utils/shippable/shippable.sh new file mode 100755 index 0000000..2466e99 --- /dev/null +++ b/tests/utils/shippable/shippable.sh @@ -0,0 +1,125 @@ +#!/usr/bin/env bash + +set -o pipefail -eux + +declare -a args +IFS='/:' read -ra args <<< "$1" + +script="${args[0]}" + +test="$1" + +docker images ansible/ansible +docker images quay.io/ansible/* +docker ps + +for container in $(docker ps --format '{{.Image}} {{.ID}}' | grep -v '^drydock/' | sed 's/^.* //'); do + docker rm -f "${container}" || true # ignore errors +done + +docker ps + +if [ -d /home/shippable/cache/ ]; then + ls -la /home/shippable/cache/ +fi + +command -v python +python -V + +command -v pip +pip --version +pip list --disable-pip-version-check + +export PATH="${PWD}/bin:${PATH}" +export PYTHONIOENCODING='utf-8' + +if [ "${JOB_TRIGGERED_BY_NAME:-}" == "nightly-trigger" ]; then + COVERAGE=yes + COMPLETE=yes +fi + +if [ -n "${COVERAGE:-}" ]; then + # on-demand coverage reporting triggered by setting the COVERAGE environment variable to a non-empty value + export COVERAGE="--coverage" +elif [[ "${COMMIT_MESSAGE}" =~ ci_coverage ]]; then + # on-demand coverage reporting triggered by having 'ci_coverage' in the latest commit message + export COVERAGE="--coverage" +else + # on-demand coverage reporting disabled (default behavior, always-on coverage reporting remains enabled) + export COVERAGE="--coverage-check" +fi + +if [ -n "${COMPLETE:-}" ]; then + # disable change detection triggered by setting the COMPLETE environment variable to a non-empty value + export CHANGED="" +elif [[ "${COMMIT_MESSAGE}" =~ ci_complete ]]; then + # disable change detection triggered by having 'ci_complete' in the latest commit message + export CHANGED="" +else + # enable change detection (default behavior) + export CHANGED="--changed" +fi + +if [ "${IS_PULL_REQUEST:-}" == "true" ]; then + # run unstable tests which are targeted by focused changes on PRs + export UNSTABLE="--allow-unstable-changed" +else + # do not run unstable tests outside PRs + export UNSTABLE="" +fi + +virtualenv --python /usr/bin/python3.7 ~/ansible-venv +set +ux +. ~/ansible-venv/bin/activate +set -ux + +#pip install ansible==2.9.0 --disable-pip-version-check +pip install git+https://github.com/ansible-collection-migration/ansible-base.git --disable-pip-version-check + +TEST_DIR="${HOME}/.ansible/ansible_collections/ansible/posix" +mkdir -p "${TEST_DIR}" +cp -aT "${SHIPPABLE_BUILD_DIR}" "${TEST_DIR}" +cd "${TEST_DIR}" + +function cleanup +{ + if [ -d tests/output/coverage/ ]; then + if find tests/output/coverage/ -mindepth 1 -name '.*' -prune -o -print -quit | grep -q .; then + # for complete on-demand coverage generate a report for all files with no coverage on the "other" job so we only have one copy + if [ "${COVERAGE}" == "--coverage" ] && [ "${CHANGED}" == "" ] && [ "${test}" == "sanity/1" ]; then + stub="--stub" + else + stub="" + fi + + # shellcheck disable=SC2086 + ansible-test coverage xml --color -v --requirements --group-by command --group-by version ${stub:+"$stub"} + cp -a tests/output/reports/coverage=*.xml shippable/codecoverage/ + fi + fi + + if [ -d tests/output/junit/ ]; then + cp -aT tests/output/junit/ shippable/testresults/ + fi + + if [ -d tests/output/data/ ]; then + cp -a tests/output/data/ shippable/testresults/ + fi + + if [ -d tests/output/bot/ ]; then + cp -aT tests/output/bot/ shippable/testresults/ + fi +} + +trap cleanup EXIT + +if [[ "${COVERAGE:-}" == "--coverage" ]]; then + timeout=60 +else + timeout=45 +fi + +ansible-test env --dump --show --timeout "${timeout}" --color -v + +"tests/utils/shippable/check_matrix.py" +"tests/utils/shippable/${script}.sh" "${test}" diff --git a/tests/utils/shippable/timing.py b/tests/utils/shippable/timing.py new file mode 100755 index 0000000..fb53827 --- /dev/null +++ b/tests/utils/shippable/timing.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python3.7 +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +import sys +import time + +start = time.time() + +sys.stdin.reconfigure(errors='surrogateescape') +sys.stdout.reconfigure(errors='surrogateescape') + +for line in sys.stdin: + seconds = time.time() - start + sys.stdout.write('%02d:%02d %s' % (seconds // 60, seconds % 60, line)) + sys.stdout.flush() diff --git a/tests/utils/shippable/timing.sh b/tests/utils/shippable/timing.sh new file mode 100755 index 0000000..77e2578 --- /dev/null +++ b/tests/utils/shippable/timing.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +set -o pipefail -eu + +"$@" 2>&1 | "$(dirname "$0")/timing.py" diff --git a/tests/utils/shippable/tower.sh b/tests/utils/shippable/tower.sh new file mode 120000 index 0000000..700ad3e --- /dev/null +++ b/tests/utils/shippable/tower.sh @@ -0,0 +1 @@ +cloud.sh \ No newline at end of file diff --git a/tests/utils/shippable/units.sh b/tests/utils/shippable/units.sh new file mode 100755 index 0000000..89b201a --- /dev/null +++ b/tests/utils/shippable/units.sh @@ -0,0 +1,70 @@ +#!/usr/bin/env bash + +set -o pipefail -eux + +declare -a args +IFS='/:' read -ra args <<< "$1" + +version="${args[1]}" +group="${args[2]}" + +if [[ "${COVERAGE:-}" == "--coverage" ]]; then + timeout=60 +else + timeout=15 +fi + +group1=() +group2=() + +# create two groups by putting long running network tests into one group +# add or remove more network platforms as needed to balance the two groups + +networks=( + f5 + fortimanager + fortios + ios + junos + netact + netscaler + netvisor + nos + nso + nuage + nxos + onyx + opx + ovs + radware + routeros + slxos + voss + vyos +) + +for network in "${networks[@]}"; do + test_path="tests/unit/modules/network/${network}/" + + if [ -d "${test_path}" ]; then + group1+=(--exclude "${test_path}") + group2+=("${test_path}") + fi +done + +case "${group}" in + 1) options=("${group1[@]:+${group1[@]}}") ;; + 2) options=("${group2[@]:+${group2[@]}}") ;; +esac + +if [ ${#options[@]} -eq 0 ] && [ "${group}" -eq 2 ]; then + # allow collection migration unit tests for group 2 to "pass" without updating shippable.yml or this script during migration + echo "No unit tests found for group ${group}." + exit +fi + +ansible-test env --timeout "${timeout}" --color -v + +# shellcheck disable=SC2086 +ansible-test units --color -v --docker default --python "${version}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \ + "${options[@]:+${options[@]}}" \