Browse Source

Clean up tests

* Removes unit and generate_validation tox targets
* Bumps test-requirements.txt to latest versions
* Resolves minor lint issue in swapoff.py
* Removes coveralls
Russell Teague 6 years ago
parent
commit
ed0210b2d5
39 changed files with 15 additions and 1231 deletions
  1. 0 20
      .coveragerc
  2. 2 0
      .flake8
  3. 1 4
      .travis.yml
  4. 0 6
      conftest.py
  5. 0 17
      pytest.ini
  6. 0 8
      requirements.txt
  7. 5 3
      roles/openshift_node40/library/swapoff.py
  8. 0 54
      setup.py
  9. 6 11
      test-requirements.txt
  10. 0 39
      test/integration/README.md
  11. 0 101
      test/integration/build-images.sh
  12. 0 32
      test/integration/openshift_health_checker/builds/aos-package-checks/Dockerfile
  13. 0 5
      test/integration/openshift_health_checker/builds/aos-package-checks/root/etc/yum.repos.d/break-yum.repo
  14. 0 5
      test/integration/openshift_health_checker/builds/aos-package-checks/root/etc/yum.repos.d/ose-3.2.repo
  15. 0 5
      test/integration/openshift_health_checker/builds/aos-package-checks/root/etc/yum.repos.d/ose-3.3.repo
  16. 0 33
      test/integration/openshift_health_checker/builds/aos-package-checks/root/root/break-yum-update-2.spec
  17. 0 32
      test/integration/openshift_health_checker/builds/aos-package-checks/root/root/break-yum-update.spec
  18. 0 57
      test/integration/openshift_health_checker/builds/aos-package-checks/root/root/ose-3.2.spec
  19. 0 57
      test/integration/openshift_health_checker/builds/aos-package-checks/root/root/ose-3.3.spec
  20. 0 2
      test/integration/openshift_health_checker/builds/test-target-base/Dockerfile
  21. 0 99
      test/integration/openshift_health_checker/common.go
  22. 0 26
      test/integration/openshift_health_checker/preflight/playbooks/package_availability_missing_required.yml
  23. 0 20
      test/integration/openshift_health_checker/preflight/playbooks/package_availability_succeeds.yml
  24. 0 25
      test/integration/openshift_health_checker/preflight/playbooks/package_update_dep_missing.yml
  25. 0 32
      test/integration/openshift_health_checker/preflight/playbooks/package_update_repo_broken.yml
  26. 0 22
      test/integration/openshift_health_checker/preflight/playbooks/package_update_repo_disabled.yml
  27. 0 28
      test/integration/openshift_health_checker/preflight/playbooks/package_update_repo_unreachable.yml
  28. 0 26
      test/integration/openshift_health_checker/preflight/playbooks/package_version_matches.yml
  29. 0 29
      test/integration/openshift_health_checker/preflight/playbooks/package_version_mismatches.yml
  30. 0 29
      test/integration/openshift_health_checker/preflight/playbooks/package_version_multiple.yml
  31. 0 20
      test/integration/openshift_health_checker/preflight/playbooks/package_version_origin.yml
  32. 0 1
      test/integration/openshift_health_checker/preflight/playbooks/roles
  33. 0 9
      test/integration/openshift_health_checker/preflight/playbooks/tasks/enable_repo.yml
  34. 0 105
      test/integration/openshift_health_checker/preflight/preflight_test.go
  35. 0 60
      test/integration/openshift_health_checker/setup_container.yml
  36. 0 24
      test/integration/openshift_health_checker/teardown_container.yml
  37. 0 80
      test/integration/run-tests.sh
  38. 1 103
      test/tox-inventory.txt
  39. 0 2
      tox.ini

+ 0 - 20
.coveragerc

@@ -1,20 +0,0 @@
-[run]
-branch = True
-omit =
-    */lib/python*/site-packages/*
-    */lib/python*/*
-    /usr/*
-    */setup.py
-    # TODO(rhcarvalho): this is used to ignore test files from coverage report.
-    # We can make this less generic when we stick with a single test pattern in
-    # the repo.
-    */conftest.py
-    */test_*.py
-    */*_tests.py
-    */test/*
-
-[report]
-fail_under = 28
-
-[html]
-directory = cover

+ 2 - 0
.flake8

@@ -3,3 +3,5 @@
 exclude=.tox,inventory
 max_line_length = 120
 ignore = E501,T003
+per-file-ignores =
+    setup.py : T001

+ 1 - 4
.travis.yml

@@ -14,7 +14,7 @@ python:
 
 install:
   - pip install --upgrade pip
-  - pip install tox-travis coveralls
+  - pip install tox-travis
 
 script:
   - tox
@@ -32,6 +32,3 @@ after_failure:
   - pip_debug_log=/home/travis/.cache/pip/log/debug.log
   - echo Outputting pip debug log from $pip_debug_log
   - cat $pip_debug_log
-
-after_success:
-  - coveralls

+ 0 - 6
conftest.py

@@ -1,6 +0,0 @@
-"""pytest configuration"""
-
-
-def pytest_ignore_collect(path):
-    """Hook to ignore symlink files and directories."""
-    return path.islink()

+ 0 - 17
pytest.ini

@@ -1,17 +0,0 @@
-[pytest]
-norecursedirs =
-    .*
-    __pycache__
-    cover
-    docs
-python_files =
-    # TODO(rhcarvalho): rename test files to follow a single pattern. "test*.py"
-    # is Python unittest's default, while pytest discovers both "test_*.py" and
-    # "*_test.py" by default.
-    test_*.py
-    *_test.py
-    *_tests.py
-addopts =
-    --cov=.
-    --cov-report=term
-    --cov-report=html

+ 0 - 8
requirements.txt

@@ -1,11 +1,3 @@
 # Versions are pinned to prevent pypi releases arbitrarily breaking
 # tests with new APIs/semantics. We want to update versions deliberately.
 ansible==2.7.8
-boto==2.44.0
-click==6.7
-pyOpenSSL==17.5.0
-# We need to disable ruamel.yaml for now because of test failures
-#ruamel.yaml
-six==1.10.0
-shade==1.24.0
-passlib==1.6.5

+ 5 - 3
roles/openshift_node40/library/swapoff.py

@@ -56,18 +56,20 @@ def check_swap_in_fstab(module):
         module.fail_json(**result)
     elif res == 1:
         # No grep match, fstab looks good.
-        return False
+        check_result = False
     elif res == 0:
         # There is an uncommented entry for fstab.
-        return True
+        check_result = True
     else:
         # Some other grep error code, we shouldn't get here.
         result = {'failed': True,
                   'changed': False,
-                  'msg': 'unknow problem with grep "^[^#].*swap" /etc/fstab ',
+                  'msg': 'unknown problem with grep "^[^#].*swap" /etc/fstab ',
                   'state': 'unknown'}
         module.fail_json(**result)
 
+    return check_result
+
 
 def check_swapon_status(module):
     '''Check if swap is actually in use.'''

+ 0 - 54
setup.py

@@ -6,7 +6,6 @@ from __future__ import print_function
 import os
 import fnmatch
 import re
-import sys
 import subprocess
 import yaml
 
@@ -14,7 +13,6 @@ import yaml
 from setuptools import setup, Command
 from setuptools_lint.setuptools_command import PylintCommand
 from six import string_types
-from six.moves import reload_module
 from yamllint.config import YamlLintConfig
 from yamllint.cli import Format
 from yamllint import linter
@@ -201,57 +199,6 @@ class OpenShiftAnsiblePylint(PylintCommand):
         return func(*func_args, **func_kwargs)
 
 
-class OpenShiftAnsibleGenerateValidation(Command):
-    ''' Command to run generated module validation'''
-    description = "Run generated module validation"
-    user_options = []
-
-    def initialize_options(self):
-        ''' initialize_options '''
-        pass
-
-    def finalize_options(self):
-        ''' finalize_options '''
-        pass
-
-    # self isn't used but I believe is required when it is called.
-    # pylint: disable=no-self-use
-    def run(self):
-        ''' run command '''
-        # find the files that call generate
-        generate_files = find_files('roles',
-                                    ['inventory',
-                                     'test',
-                                     'playbooks'],
-                                    None,
-                                    'generate.py$')
-
-        if len(generate_files) < 1:
-            print('Did not find any code generation.  Please verify module code generation.')  # noqa: E501
-            raise SystemExit(1)
-
-        errors = False
-        for gen in generate_files:
-            print('Checking generated module code: {0}'.format(gen))
-            try:
-                sys.path.insert(0, os.path.dirname(gen))
-                # we are importing dynamically.  This isn't in
-                # the python path.
-                # pylint: disable=import-error
-                import generate
-                reload_module(generate)
-                generate.verify()
-            except generate.GenerateAnsibleException as gae:
-                print(gae.args)
-                errors = True
-
-        if errors:
-            print('Found errors while generating module code.')
-            raise SystemExit(1)
-
-        print('\nAll generate scripts passed.\n')
-
-
 class OpenShiftAnsibleSyntaxCheck(Command):
     ''' Command to run Ansible syntax check'''
     description = "Run Ansible syntax check"
@@ -448,7 +395,6 @@ setup(
         'sdist': UnsupportedCommand,
         'lint': OpenShiftAnsiblePylint,
         'yamllint': OpenShiftAnsibleYamlLint,
-        'generate_validation': OpenShiftAnsibleGenerateValidation,
         'ansible_syntax': OpenShiftAnsibleSyntaxCheck,
     },
     packages=[],

+ 6 - 11
test-requirements.txt

@@ -2,14 +2,9 @@
 # tests with new APIs/semantics. We want to update versions deliberately.
 
 # flake8 must be listed before pylint to avoid dependency conflicts
-flake8==3.3.0
-flake8-mutable==1.1.0
-flake8-print==2.0.2
-pylint==1.6.5
-setuptools-lint==0.5.2
-yamllint==1.6.1
-coverage==4.3.4
-mock==2.0.0
-pytest==3.0.7
-pytest-cov==2.4.0
-python-dateutil==2.7.3
+flake8==3.7.7
+flake8-mutable==1.2.0
+flake8-print==3.1.0
+pylint==1.9.4
+setuptools-lint==0.6.0
+yamllint==1.15.0

+ 0 - 39
test/integration/README.md

@@ -1,39 +0,0 @@
-# Integration tests
-
-Integration tests exercise the OpenShift Ansible playbooks by running them
-against an inventory with Docker containers as hosts.
-
-## Requirements
-
-The tests assume that:
-
-* docker is running on localhost and the present user has access to use it.
-* golang is installed and the go binary is in PATH.
-* python and tox are installed.
-
-## Building images
-
-The tests rely on images built in the local docker index. You can build them
-from the repository root with:
-
-```
-./test/integration/build-images.sh
-```
-
-Use the `--help` option to view available options.
-
-## Running the tests
-
-From the repository root, run the integration tests with:
-
-```
-./test/integration/run-tests.sh
-```
-
-Use the `--help` option to view available options.
-
-You can also run tests more directly, for example to run a specific check:
-
-```
-go test ./test/integration/... -run TestPackageUpdateDepMissing
-```

+ 0 - 101
test/integration/build-images.sh

@@ -1,101 +0,0 @@
-#!/bin/bash
-
-# This is intended to run either locally (in which case a push is not
-# necessary) or in a CI job (where the results should be pushed to a
-# registry for use in later CI test jobs). Images are tagged locally with
-# both the base name (e.g. "test-target-base") and with the prefix given;
-# then only the prefixed name is pushed if --push is specified, assuming
-# any necessary credentials are available for the push. The same prefix
-# can then be used for the testing script. By default a local (non-registry)
-# prefix is used and no push can occur. To push to e.g. dockerhub:
-#
-# ./build-images.sh --push --prefix=docker.io/openshift/ansible-integration-
-
-set -o errexit
-set -o nounset
-set -o pipefail
-
-STARTTIME=$(date +%s)
-source_root=$(dirname "${0}")
-
-prefix="${PREFIX:-openshift-ansible-integration-}"
-push=false
-verbose=false
-build_options="${DOCKER_BUILD_OPTIONS:-}"
-help=false
-
-for args in "$@"
-do
-  case $args in
-      --prefix=*)
-        prefix="${args#*=}"
-        ;;
-      --push)
-        push=true
-        ;;
-      --no-cache)
-        build_options="${build_options} --no-cache"
-        ;;
-      --verbose)
-        verbose=true
-        ;;
-      --help)
-        help=true
-        ;;
-  esac
-done
-
-if [ "$help" = true ]; then
-  echo "Builds the docker images for openshift-ansible integration tests"
-  echo "and pushes them to a central registry."
-  echo
-  echo "Options: "
-  echo "  --prefix=PREFIX"
-  echo "  The prefix to use for the image names."
-  echo "  default: openshift-ansible-integration-"
-  echo
-  echo "  --push"
-  echo "  If set will push the tagged image"
-  echo 
-  echo "  --no-cache"
-  echo "  If set will perform the build without a cache."
-  echo
-  echo "  --verbose"
-  echo "  Enables printing of the commands as they run."
-  echo
-  echo "  --help"
-  echo "  Prints this help message"
-  echo
-  exit 0
-fi
-
-if [ "$verbose" = true ]; then
-  set -x
-fi
-
-
-declare -a build_order                       ; declare -A images
-build_order+=( test-target-base )            ; images[test-target-base]=openshift_health_checker/builds/test-target-base
-build_order+=( preflight-aos-package-checks ); images[preflight-aos-package-checks]=openshift_health_checker/builds/aos-package-checks
-for image in "${build_order[@]}"; do
-  BUILD_STARTTIME=$(date +%s)
-  docker_tag=${prefix}${image}
-  echo
-  echo "--- Building component '$image' with docker tag '$docker_tag' ---"
-  docker build ${build_options} -t $image -t $docker_tag "$source_root/${images[$image]}"
-  echo
-  BUILD_ENDTIME=$(date +%s); echo "--- build $docker_tag took $(($BUILD_ENDTIME - $BUILD_STARTTIME)) seconds ---"
-  if [ "$push" = true ]; then
-    docker push $docker_tag
-    PUSH_ENDTIME=$(date +%s); echo "--- push $docker_tag took $(($PUSH_ENDTIME - $BUILD_ENDTIME)) seconds ---"
-  fi
-done
-
-echo
-echo
-echo "++ Active images"
-docker images | grep ${prefix} | sort
-echo
-
-
-ret=$?; ENDTIME=$(date +%s); echo "$0 took $(($ENDTIME - $STARTTIME)) seconds"; exit "$ret"

+ 0 - 32
test/integration/openshift_health_checker/builds/aos-package-checks/Dockerfile

@@ -1,32 +0,0 @@
-FROM test-target-base
-
-RUN yum install -y rpm-build rpmdevtools createrepo && \
-    rpmdev-setuptree && \
-    mkdir -p /mnt/localrepo
-ADD root /
-
-# we will build some RPMs that can be used to break yum update in tests.
-RUN cd /root/rpmbuild/SOURCES && \
-    mkdir break-yum-update-1.0 && \
-    tar zfc foo.tgz break-yum-update-1.0 && \
-    rpmbuild -bb /root/break-yum-update.spec  && \
-    yum install -y /root/rpmbuild/RPMS/noarch/break-yum-update-1.0-1.noarch.rpm && \
-    rpmbuild -bb /root/break-yum-update-2.spec  && \
-    mkdir /mnt/localrepo/break-yum && \
-    cp /root/rpmbuild/RPMS/noarch/break-yum-update-1.0-2.noarch.rpm /mnt/localrepo/break-yum && \
-    createrepo /mnt/localrepo/break-yum
-
-# we'll also build some RPMs that can be used to exercise OCP package version tests.
-RUN cd /root/rpmbuild/SOURCES && \
-    mkdir atomic-openshift-3.2 && \
-    mkdir atomic-openshift-3.3 && \
-    tar zfc ose.tgz atomic-openshift-3.{2,3} && \
-    rpmbuild -bb /root/ose-3.2.spec  && \
-    rpmbuild -bb /root/ose-3.3.spec  && \
-    mkdir /mnt/localrepo/ose-3.{2,3} && \
-    cp /root/rpmbuild/RPMS/noarch/atomic-openshift*-3.2-1.noarch.rpm /mnt/localrepo/ose-3.2 && \
-    cp /root/rpmbuild/RPMS/noarch/{openvswitch-2.4,docker-1.10}-1.noarch.rpm /mnt/localrepo/ose-3.2 && \
-    createrepo /mnt/localrepo/ose-3.2 && \
-    cp /root/rpmbuild/RPMS/noarch/atomic-openshift*-3.3-1.noarch.rpm /mnt/localrepo/ose-3.3 && \
-    cp /root/rpmbuild/RPMS/noarch/{openvswitch-2.4,docker-1.10}-1.noarch.rpm /mnt/localrepo/ose-3.3 && \
-    createrepo /mnt/localrepo/ose-3.3

+ 0 - 5
test/integration/openshift_health_checker/builds/aos-package-checks/root/etc/yum.repos.d/break-yum.repo

@@ -1,5 +0,0 @@
-[break-yum]
-name=break-yum
-baseurl=file:///mnt/localrepo/break-yum
-enabled=0
-gpgcheck=0

+ 0 - 5
test/integration/openshift_health_checker/builds/aos-package-checks/root/etc/yum.repos.d/ose-3.2.repo

@@ -1,5 +0,0 @@
-[ose-3.2]
-name=ose-3.2
-baseurl=file:///mnt/localrepo/ose-3.2
-enabled=0
-gpgcheck=0

+ 0 - 5
test/integration/openshift_health_checker/builds/aos-package-checks/root/etc/yum.repos.d/ose-3.3.repo

@@ -1,5 +0,0 @@
-[ose-3.3]
-name=ose-3.3
-baseurl=file:///mnt/localrepo/ose-3.3
-enabled=0
-gpgcheck=0

+ 0 - 33
test/integration/openshift_health_checker/builds/aos-package-checks/root/root/break-yum-update-2.spec

@@ -1,33 +0,0 @@
-Name:           break-yum-update
-Version:        1.0
-Release:        2
-Summary:        Package for breaking updates by requiring things that don't exist
-
-License:        NA
-
-Requires:	package-that-does-not-exist
-Source0:	http://example.com/foo.tgz
-BuildArch:	noarch
-
-%description
-Package for breaking updates by requiring things that don't exist
-
-
-%prep
-%setup -q
-
-
-%build
-
-
-%install
-rm -rf $RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT
-
-
-%files
-%doc
-
-
-
-%changelog

+ 0 - 32
test/integration/openshift_health_checker/builds/aos-package-checks/root/root/break-yum-update.spec

@@ -1,32 +0,0 @@
-Name:           break-yum-update
-Version:        1.0
-Release:        1
-Summary:        Package for breaking updates by requiring things that don't exist
-
-License:        NA
-
-Source0:	http://example.com/foo.tgz
-BuildArch:	noarch
-
-%description
-Package for breaking updates by requiring things that don't exist
-
-
-%prep
-%setup -q
-
-
-%build
-
-
-%install
-rm -rf $RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT
-
-
-%files
-%doc
-
-
-
-%changelog

+ 0 - 57
test/integration/openshift_health_checker/builds/aos-package-checks/root/root/ose-3.2.spec

@@ -1,57 +0,0 @@
-Name:           atomic-openshift
-Version:        3.2
-Release:        1
-Summary:        package the critical aos packages
-
-License:        NA
-
-Source0:	http://example.com/ose.tgz
-BuildArch:	noarch
-
-%package master
-Summary:        package the critical aos packages
-%package node
-Summary:        package the critical aos packages
-%package -n openvswitch
-Summary:        package the critical aos packages
-Version:	2.4
-%package -n docker
-Summary:        package the critical aos packages
-Version:	1.10
-
-%description
-Package for pretending to provide AOS
-
-%description master
-Package for pretending to provide AOS
-
-%description node
-Package for pretending to provide AOS
-
-%description -n openvswitch
-Package for pretending to provide openvswitch
-
-%description -n docker
-Package for pretending to provide docker
-
-%prep
-%setup -q
-
-
-%build
-
-
-%install
-rm -rf $RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT
-
-
-%files
-%files master
-%files node
-%files -n openvswitch
-%files -n docker
-
-%doc
-
-%changelog

+ 0 - 57
test/integration/openshift_health_checker/builds/aos-package-checks/root/root/ose-3.3.spec

@@ -1,57 +0,0 @@
-Name:           atomic-openshift
-Version:        3.3
-Release:        1
-Summary:        package the critical aos packages
-
-License:        NA
-
-Source0:	http://example.com/ose.tgz
-BuildArch:	noarch
-
-%package master
-Summary:        package the critical aos packages
-%package node
-Summary:        package the critical aos packages
-%package -n openvswitch
-Summary:        package the critical aos packages
-Version:	2.4
-%package -n docker
-Summary:        package the critical aos packages
-Version:	1.10
-
-%description
-Package for pretending to provide AOS
-
-%description master
-Package for pretending to provide AOS
-
-%description node
-Package for pretending to provide AOS
-
-%description -n openvswitch
-Package for pretending to provide openvswitch
-
-%description -n docker
-Package for pretending to provide docker
-
-%prep
-%setup -q
-
-
-%build
-
-
-%install
-rm -rf $RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT
-
-
-%files
-%files master
-%files node
-%files -n openvswitch
-%files -n docker
-
-%doc
-
-%changelog

+ 0 - 2
test/integration/openshift_health_checker/builds/test-target-base/Dockerfile

@@ -1,2 +0,0 @@
-FROM centos/systemd
-RUN yum install -y iproute python-dbus PyYAML yum-utils

+ 0 - 99
test/integration/openshift_health_checker/common.go

@@ -1,99 +0,0 @@
-package test
-
-import (
-	"bytes"
-	"os"
-	"os/exec"
-	"path/filepath"
-	"strings"
-	"syscall"
-	"testing"
-)
-
-// A PlaybookTest executes a given Ansible playbook and checks the exit code and
-// output contents.
-type PlaybookTest struct {
-	// inputs
-	Path string
-	// expected outputs
-	ExitCode int
-	Output   []string // zero or more strings that should be in the output
-}
-
-// Run runs the PlaybookTest.
-func (p PlaybookTest) Run(t *testing.T) {
-	// A PlaybookTest is intended to be run in parallel with other tests.
-	t.Parallel()
-
-	cmd := exec.Command("ansible-playbook", "-e", "testing_skip_some_requirements=1", "-i", "/dev/null", p.Path)
-	cmd.Env = append(os.Environ(), "ANSIBLE_FORCE_COLOR=1")
-	b, err := cmd.CombinedOutput()
-
-	// Check exit code.
-	if (err == nil) && (p.ExitCode != 0) {
-		p.checkExitCode(t, 0, p.ExitCode, cmd, b)
-	}
-	if (err != nil) && (p.ExitCode == 0) {
-		got, ok := getExitCode(err)
-		if !ok {
-			t.Logf("unexpected error (%T): %[1]v", err)
-			p.logCmdAndOutput(t, cmd, b)
-			t.FailNow()
-		}
-		p.checkExitCode(t, got, p.ExitCode, cmd, b)
-	}
-
-	// Check output contents.
-	var missing []string
-	for _, s := range p.Output {
-		if !bytes.Contains(b, []byte(s)) {
-			missing = append(missing, s)
-		}
-	}
-	if len(missing) > 0 {
-		t.Logf("missing in output: %q", missing)
-		p.logCmdAndOutput(t, cmd, b)
-		t.FailNow()
-	}
-}
-
-// getExitCode returns an exit code and true if the exit code could be taken
-// from err, false otherwise.
-// The implementation is GOOS-specific, and currently only supports Linux.
-func getExitCode(err error) (int, bool) {
-	exitErr, ok := err.(*exec.ExitError)
-	if !ok {
-		return -1, false
-	}
-	waitStatus, ok := exitErr.Sys().(syscall.WaitStatus)
-	if !ok {
-		return -1, false
-	}
-	return waitStatus.ExitStatus(), true
-}
-
-// checkExitCode marks the test as failed when got is different than want.
-func (p PlaybookTest) checkExitCode(t *testing.T, got, want int, cmd *exec.Cmd, output []byte) {
-	if got == want {
-		return
-	}
-	t.Logf("got exit code %v, want %v", got, want)
-	p.logCmdAndOutput(t, cmd, output)
-	t.FailNow()
-}
-
-// logCmdAndOutput logs how to re-run a command and a summary of the output of
-// its last execution for debugging.
-func (p PlaybookTest) logCmdAndOutput(t *testing.T, cmd *exec.Cmd, output []byte) {
-	const maxLines = 10
-	lines := bytes.Split(bytes.TrimRight(output, "\n"), []byte("\n"))
-	if len(lines) > maxLines {
-		lines = append([][]byte{[]byte("...")}, lines[len(lines)-maxLines:len(lines)]...)
-	}
-	output = bytes.Join(lines, []byte("\n"))
-	dir, err := filepath.Abs(cmd.Dir)
-	if err != nil {
-		panic(err)
-	}
-	t.Logf("\n$ (cd %s && %s)\n%s", dir, strings.Join(cmd.Args, " "), output)
-}

+ 0 - 26
test/integration/openshift_health_checker/preflight/playbooks/package_availability_missing_required.yml

@@ -1,26 +0,0 @@
----
-# NOTE: this test is probably superfluous since openshift_version already does it
-- import_playbook: ../../setup_container.yml
-  vars:
-    image: preflight-aos-package-checks
-    l_host_vars:
-      openshift_deployment_type: openshift-enterprise
-
-- name: Fail as required packages cannot be installed
-  hosts: all
-  roles:
-    - openshift_health_checker
-
-  post_tasks:
-    - block:
-
-        # put the repo back to disabled
-        - include_tasks: tasks/enable_repo.yml
-          vars: { repo_name: "ose-3.2", repo_enabled: 0 }
-
-        - action: openshift_health_check
-          args:
-            checks: [ 'package_availability' ]
-
-      always:  # destroy the container whether check passed or not
-        - include_tasks: ../../teardown_container.yml

+ 0 - 20
test/integration/openshift_health_checker/preflight/playbooks/package_availability_succeeds.yml

@@ -1,20 +0,0 @@
----
-- import_playbook: ../../setup_container.yml
-  vars:
-    image: preflight-aos-package-checks
-    l_host_vars:
-      openshift_deployment_type: origin
-
-- name: Succeeds as Origin packages are public
-  hosts: all
-  roles:
-    - openshift_health_checker
-  tasks:
-    - block:
-
-        - action: openshift_health_check
-          args:
-            checks: [ 'package_availability' ]
-
-      always:  # destroy the container whether check passed or not
-        - include_tasks: ../../teardown_container.yml

+ 0 - 25
test/integration/openshift_health_checker/preflight/playbooks/package_update_dep_missing.yml

@@ -1,25 +0,0 @@
----
-- import_playbook: ../../setup_container.yml
-  vars:
-    image: preflight-aos-package-checks
-    l_host_vars:
-      openshift_deployment_type: openshift-enterprise
-      openshift_release: 3.2
-
-- name: Fails when a dependency required for update is missing
-  hosts: all
-  roles:
-    - openshift_health_checker
-
-  post_tasks:
-    - block:
-
-        - include_tasks: tasks/enable_repo.yml
-          vars: { repo_name: "break-yum" }
-
-        - action: openshift_health_check
-          args:
-            checks: [ 'package_update' ]
-
-      always:  # destroy the container whether check passed or not
-        - include_tasks: ../../teardown_container.yml

+ 0 - 32
test/integration/openshift_health_checker/preflight/playbooks/package_update_repo_broken.yml

@@ -1,32 +0,0 @@
----
-- import_playbook: ../../setup_container.yml
-  vars:
-    image: preflight-aos-package-checks
-    l_host_vars:
-      openshift_deployment_type: openshift-enterprise
-      openshift_release: 3.2
-
-- name: Fails when a repo definition is completely broken
-  hosts: all
-  roles:
-    - openshift_health_checker
-
-  post_tasks:
-    - block:
-
-        - include_tasks: tasks/enable_repo.yml
-          vars: { repo_name: "break-yum" }
-
-        - name: Break the break-yum repo
-          replace:
-            dest: /etc/yum.repos.d/break-yum.repo
-            backup: no
-            regexp: "^baseurl"
-            replace: "#baseurl"
-
-        - action: openshift_health_check
-          args:
-            checks: [ 'package_update' ]
-
-      always:  # destroy the container whether check passed or not
-        - include_tasks: ../../teardown_container.yml

+ 0 - 22
test/integration/openshift_health_checker/preflight/playbooks/package_update_repo_disabled.yml

@@ -1,22 +0,0 @@
----
-- import_playbook: ../../setup_container.yml
-  vars:
-    image: preflight-aos-package-checks
-    l_host_vars:
-      openshift_deployment_type: openshift-enterprise
-      openshift_release: 3.2
-
-- name: Succeeds when nothing blocks a yum update
-  hosts: all
-  roles:
-    - openshift_health_checker
-
-  post_tasks:
-    - block:
-
-        - action: openshift_health_check
-          args:
-            checks: [ 'package_update' ]
-
-      always:  # destroy the container whether check passed or not
-        - include_tasks: ../../teardown_container.yml

+ 0 - 28
test/integration/openshift_health_checker/preflight/playbooks/package_update_repo_unreachable.yml

@@ -1,28 +0,0 @@
----
-- import_playbook: ../../setup_container.yml
-  vars:
-    image: preflight-aos-package-checks
-    l_host_vars:
-      openshift_deployment_type: openshift-enterprise
-      openshift_release: 3.2
-
-- name: Fails when repo content is not available
-  hosts: all
-  roles:
-    - openshift_health_checker
-
-  post_tasks:
-    - block:
-
-        - include_tasks: tasks/enable_repo.yml
-          vars: { repo_name: "break-yum" }
-
-        - name: Remove the local repo entirely
-          file: path=/mnt/localrepo state=absent
-
-        - action: openshift_health_check
-          args:
-            checks: [ 'package_update' ]
-
-      always:  # destroy the container whether check passed or not
-        - include_tasks: ../../teardown_container.yml

+ 0 - 26
test/integration/openshift_health_checker/preflight/playbooks/package_version_matches.yml

@@ -1,26 +0,0 @@
----
-- import_playbook: ../../setup_container.yml
-  vars:
-    image: preflight-aos-package-checks
-    l_host_vars:
-      openshift_deployment_type: openshift-enterprise
-      openshift_release: 3.2
-
-- name: Success when AOS version matches openshift_release
-  hosts: all
-  roles:
-    - openshift_health_checker
-
-  post_tasks:
-    - block:
-
-        # disable extras so we control docker version
-        - include_tasks: tasks/enable_repo.yml
-          vars: { repo_file: "CentOS-Base", repo_name: "extras", repo_enabled: 0 }
-
-        - action: openshift_health_check
-          args:
-            checks: [ 'package_version' ]
-
-      always:  # destroy the container whether check passed or not
-        - include_tasks: ../../teardown_container.yml

+ 0 - 29
test/integration/openshift_health_checker/preflight/playbooks/package_version_mismatches.yml

@@ -1,29 +0,0 @@
----
-# NOTE: this test is probably superfluous since openshift_version already does it
-- import_playbook: ../../setup_container.yml
-  vars:
-    image: preflight-aos-package-checks
-    l_host_vars:
-      openshift_deployment_type: openshift-enterprise
-      openshift_release: 3.2
-
-- name: Failure when AOS version doesn't match openshift_release
-  hosts: all
-  roles:
-    - openshift_health_checker
-
-  post_tasks:
-    - block:
-
-        # put the repo back to disabled
-        - include_tasks: tasks/enable_repo.yml
-          vars: { repo_name: "ose-3.2", repo_enabled: 0 }
-        # test with wrong repo enabled
-        - include_tasks: tasks/enable_repo.yml
-          vars: { repo_name: "ose-3.3" }
-        - action: openshift_health_check
-          args:
-            checks: [ 'package_version' ]
-
-      always:  # destroy the container whether check passed or not
-        - include_tasks: ../../teardown_container.yml

+ 0 - 29
test/integration/openshift_health_checker/preflight/playbooks/package_version_multiple.yml

@@ -1,29 +0,0 @@
----
-- import_playbook: ../../setup_container.yml
-  vars:
-    image: preflight-aos-package-checks
-    l_host_vars:
-      openshift_deployment_type: openshift-enterprise
-
-- name: Fails when multiple AOS versions are available
-  hosts: all
-  roles:
-    - openshift_health_checker
-
-  post_tasks:
-    - block:
-
-        # enable repo with extra minor version available
-        - include_tasks: tasks/enable_repo.yml
-          vars: { repo_name: "ose-3.3" }
-
-        # disable extras so we control docker version
-        - include_tasks: tasks/enable_repo.yml
-          vars: { repo_file: "CentOS-Base", repo_name: "extras", repo_enabled: 0 }
-
-        - action: openshift_health_check
-          args:
-            checks: [ 'package_version' ]
-
-      always:  # destroy the container whether check passed or not
-        - include_tasks: ../../teardown_container.yml

+ 0 - 20
test/integration/openshift_health_checker/preflight/playbooks/package_version_origin.yml

@@ -1,20 +0,0 @@
----
-- import_playbook: ../../setup_container.yml
-  vars:
-    image: preflight-aos-package-checks
-    l_host_vars:
-      openshift_deployment_type: origin
-
-- name: Succeeds with Origin although multiple versions are available
-  hosts: all
-  roles:
-    - openshift_health_checker
-  tasks:
-    - block:
-
-        - action: openshift_health_check
-          args:
-            checks: [ 'package_version' ]
-
-      always:  # destroy the container whether check passed or not
-        - include_tasks: ../../teardown_container.yml

+ 0 - 1
test/integration/openshift_health_checker/preflight/playbooks/roles

@@ -1 +0,0 @@
-../../../../../roles

+ 0 - 9
test/integration/openshift_health_checker/preflight/playbooks/tasks/enable_repo.yml

@@ -1,9 +0,0 @@
----
-- name: Enable {{ repo_name }} repo
-  # believe it or not we can't use the yum_repository module for this.
-  # https://github.com/ansible/ansible-modules-extras/issues/2384
-  ini_file:
-    dest: /etc/yum.repos.d/{{ repo_file | default(repo_name) }}.repo
-    section: "{{ repo_name }}"
-    option: enabled
-    value: "{{ repo_enabled | default(1) }}"

+ 0 - 105
test/integration/openshift_health_checker/preflight/preflight_test.go

@@ -1,105 +0,0 @@
-package preflight
-
-import (
-	"testing"
-
-	. ".."
-)
-
-func TestPackageUpdateDepMissing(t *testing.T) {
-	PlaybookTest{
-		Path:     "playbooks/package_update_dep_missing.yml",
-		ExitCode: 2,
-		Output: []string{
-			"check \"package_update\":",
-			"Could not perform a yum update.",
-			"break-yum-update-1.0-2.noarch requires package-that-does-not-exist",
-		},
-	}.Run(t)
-}
-
-func TestPackageUpdateRepoBroken(t *testing.T) {
-	PlaybookTest{
-		Path:     "playbooks/package_update_repo_broken.yml",
-		ExitCode: 2,
-		Output: []string{
-			"check \"package_update\":",
-			"Error with yum repository configuration: Cannot find a valid baseurl for repo",
-		},
-	}.Run(t)
-}
-
-func TestPackageUpdateRepoDisabled(t *testing.T) {
-	PlaybookTest{
-		Path:     "playbooks/package_update_repo_disabled.yml",
-		ExitCode: 0,
-		Output: []string{
-			"CHECK [package_update",
-		},
-	}.Run(t)
-}
-
-func TestPackageUpdateRepoUnreachable(t *testing.T) {
-	PlaybookTest{
-		Path:     "playbooks/package_update_repo_unreachable.yml",
-		ExitCode: 2,
-		Output: []string{
-			"check \"package_update\":",
-			"Error getting data from at least one yum repository",
-		},
-	}.Run(t)
-}
-
-func TestPackageVersionMatches(t *testing.T) {
-	PlaybookTest{
-		Path:     "playbooks/package_version_matches.yml",
-		ExitCode: 0,
-		Output: []string{
-			"CHECK [package_version",
-		},
-	}.Run(t)
-}
-
-func TestPackageVersionMismatches(t *testing.T) {
-	PlaybookTest{
-		Path:     "playbooks/package_version_mismatches.yml",
-		ExitCode: 2,
-		Output: []string{
-			"check \"package_version\":",
-			"Not all of the required packages are available at their requested version",
-		},
-	}.Run(t)
-}
-
-func TestPackageVersionMultiple(t *testing.T) {
-	PlaybookTest{
-		Path:     "playbooks/package_version_multiple.yml",
-		ExitCode: 2,
-		Output: []string{
-			"check \"package_version\":",
-			"Multiple minor versions of these packages are available",
-		},
-	}.Run(t)
-}
-
-func TestPackageAvailabilityMissingRequired(t *testing.T) {
-	PlaybookTest{
-		Path:     "playbooks/package_availability_missing_required.yml",
-		ExitCode: 2,
-		Output: []string{
-			"check \"package_availability\":",
-			"Cannot install all of the necessary packages.",
-			"atomic-openshift",
-		},
-	}.Run(t)
-}
-
-func TestPackageAvailabilitySucceeds(t *testing.T) {
-	PlaybookTest{
-		Path:     "playbooks/package_availability_succeeds.yml",
-		ExitCode: 0,
-		Output: []string{
-			"CHECK [package_availability",
-		},
-	}.Run(t)
-}

+ 0 - 60
test/integration/openshift_health_checker/setup_container.yml

@@ -1,60 +0,0 @@
----
-# Include this play once for each container you want to create and use as a test host.
-#
-# Optional parameters on the include are as follows:
-# * scenario = unique name for the container to be started
-# * image = name of the image to start in the container
-# * command = command to run in the container
-# * l_groups = host groups that the container should be added to
-# * l_host_vars = any variables that should be added to the host
-
-- name: Start container for specified test host
-  gather_facts: no
-  hosts: localhost
-  connection: local
-  tasks:
-
-    - set_fact:
-        # This is a little weird but if we use a var instead of a fact,
-        # a different random value is generated for each task. See:
-        # https://opensolitude.com/2015/05/27/ansible-lookups-variables-vs-facts.html
-        container_name: openshift_ansible_test_{{ scenario | default(100000000000000 | random) }}
-
-    - name: start container
-      docker_container:
-        name: "{{ container_name }}"
-        image: "{{ lookup('env', 'IMAGE_PREFIX') | default('openshift-ansible-integration-', true) }}{{ image | default('test-target-base') }}"
-        command: "{{ command | default('sleep 1800') }}"
-        recreate: yes
-        # NOTE: When/if we need to run containers that are docker hosts as well:
-        # volumes: [ "/var/run/docker.sock:/var/run/docker.sock:z" ]
-
-    - name: add container as host in inventory
-      add_host:
-        ansible_connection: docker
-        name: "{{ container_name }}"
-        groups: '{{ l_groups | default("masters,nodes,etcd") }}'
-
-    # There ought to be a better way to transfer the host vars, but see:
-    # https://groups.google.com/forum/#!topic/Ansible-project/Jwx8RYhqxPA
-    - name: set host facts per test parameters
-      set_fact:
-        "{{ item.key }}": "{{ item.value }}"
-      delegate_facts: True
-      delegate_to: "{{ container_name }}"
-      with_dict: "{{ l_host_vars | default({}) }}"
-
-- hosts: all
-  tasks:
-    # run before openshift_version to prevent it breaking
-    - include_tasks: preflight/playbooks/tasks/enable_repo.yml
-      vars: { repo_name: "ose-3.2" }
-
-- import_playbook: ../../../playbooks/init/main.yml
-
-- hosts: all
-  tasks:
-
-    # put it back like it was for the tests
-    - include_tasks: preflight/playbooks/tasks/enable_repo.yml
-      vars: { repo_name: "ose-3.2", enabled: False }

+ 0 - 24
test/integration/openshift_health_checker/teardown_container.yml

@@ -1,24 +0,0 @@
----
-
-# Include this to delete the current test host container.
-#
-# In order to recover from test exceptions, this cleanup is expected to
-# be done in an "always:" task on the same block as the test task(s). So
-# it happens in a task "on" the host being tested. In order to delete the
-# host's container, the task uses its own hostname (which is same as the
-# container name) but delegates the docker action to localhost.
-
-- block:
-
-    # so handlers don't break the test by trying to run after teardown:
-    - meta: flush_handlers
-
-  always:
-
-    - name: delete test container
-      delegate_to: localhost
-      connection: local
-      docker_container:
-        name: "{{ inventory_hostname }}"
-        state: absent
-      failed_when: False

+ 0 - 80
test/integration/run-tests.sh

@@ -1,80 +0,0 @@
-#!/bin/bash
-
-# This script runs the golang integration tests in the directories underneath.
-# It should be run from the same directory it is in, or in a directory above.
-# Specify the same image prefix used (if any) with build-images.sh
-#
-# Example:
-# ./run-tests.sh --prefix=docker.io/openshift/ansible-integration- --parallel=16
-
-set -o errexit
-set -o nounset
-set -o pipefail
-
-source_root=$(dirname "${0}")
-
-prefix="${PREFIX:-openshift-ansible-integration-}"
-gotest_options="${GOTEST_OPTIONS:--v}"
-push=false
-verbose=false
-help=false
-
-for args in "$@"
-do
-  case $args in
-      --prefix=*)
-        prefix="${args#*=}"
-        ;;
-      --parallel=*)
-        gotest_options="${gotest_options} -parallel ${args#*=}"
-        ;;
-      --verbose)
-        verbose=true
-        ;;
-      --help)
-        help=true
-        ;;
-  esac
-done
-
-if [ "$help" = true ]; then
-  echo "Runs the openshift-ansible integration tests."
-  echo
-  echo "Options: "
-  echo "  --prefix=PREFIX"
-  echo "  The prefix to use for the image names."
-  echo "  default: openshift-ansible-integration-"
-  echo
-  echo "  --parallel=NUMBER"
-  echo "  Number of tests to run in parallel."
-  echo "  default: GOMAXPROCS (typically, number of processors)"
-  echo
-  echo "  --verbose"
-  echo "  Enables printing of the commands as they run."
-  echo
-  echo "  --help"
-  echo "  Prints this help message"
-  echo
-  exit 0
-fi
-
-
-
-if ! [ -d $source_root/../../.tox/integration ]; then
-  # have tox create a consistent virtualenv
-  pushd $source_root/../..; tox -e integration; popd
-fi
-# use the virtualenv from tox
-set +o nounset; source $source_root/../../.tox/integration/bin/activate; set -o nounset
-
-if [ "$verbose" = true ]; then
-  set -x
-fi
-
-# Run the tests. NOTE: "go test" requires a relative path for this purpose.
-# The PWD trick below will only work if cwd is in/above where this script lives.
-retval=0
-IMAGE_PREFIX="${prefix}" env -u GOPATH \
-  go test ./${source_root#$PWD}/... ${gotest_options}
-
-

+ 1 - 103
test/tox-inventory.txt

@@ -1,104 +1,2 @@
-[OSEv3]
-localhost
-
-
-[OSEv3:children]
-etcd
-masters
-nodes
-oo_all_hosts
-oo_etcd_to_config
-oo_new_etcd_to_config
-oo_first_etcd
-oo_etcd_hosts_to_backup
-oo_etcd_hosts_to_upgrade
-oo_etcd_to_migrate
-oo_masters
-oo_masters_to_config
-oo_first_master
-oo_nodes_to_config
-oo_nodes_to_upgrade
-oo_nodes_use_kuryr
-oo_nodes_use_flannel
-oo_nodes_use_calico
-oo_nodes_use_nuage
-oo_nodes_use_contiv
-oo_lb_to_config
-oo_nfs_to_config
-glusterfs
-glusterfs_registry
-
-[etcd]
-localhost
-
-[masters]
-localhost
-
-[nodes]
-localhost
-
-[oo_all_hosts]
-localhost
-
-[oo_etcd_to_config]
-localhost
-
-[oo_new_etcd_to_config]
-localhost
-
-[oo_first_etcd]
-localhost
-
-[oo_etcd_hosts_to_backup]
-localhost
-
-[oo_etcd_hosts_to_upgrade]
-localhost
-
-[oo_etcd_to_migrate]
-localhost
-
-[oo_masters]
-localhost
-
-[oo_masters_to_config]
-localhost
-
-[oo_first_master]
-localhost
-
-[oo_nodes_to_config]
-localhost
-
-[oo_nodes_to_upgrade]
-localhost
-
-[oo_nodes_use_kuryr]
-localhost
-
-[oo_nodes_use_flannel]
-localhost
-
-[oo_nodes_use_calico]
-localhost
-
-[oo_nodes_use_nuage]
-localhost
-
-[oo_nodes_use_contiv]
-localhost
-
-[oo_lb_to_config]
-localhost
-
-[oo_nfs_to_config]
-localhost
-
-[oo_glusterfs_to_config]
-localhost
-
-[glusterfs]
-localhost
-
-[glusterfs_registry]
+[new_workers]
 localhost

+ 0 - 2
tox.ini

@@ -15,9 +15,7 @@ deps =
     py35-flake8: flake8-bugbear==17.3.0
 
 commands =
-    unit: pytest {posargs}
     flake8: flake8 {posargs}
     pylint: python setup.py lint
     yamllint: python setup.py yamllint
-    generate_validation: python setup.py generate_validation
     ansible_syntax: python setup.py ansible_syntax