config/sysinv/sysinv/sysinv/sysinv/tests
Chris Friesen cf94bebd9e generic feature gates cleanup on k8s upgrade
It turns out there are additional feature gates which may be left
around after an upgrade from the previous release, or if someone
is using the custom K8s config functionality.

This means that the previous commit which special-cased the
RemoveSelfLink feature gate for the kube-apiserver is not
sufficient.  At a minimum we also have to deal with a
'HugePageStorageMediumSize: true' feature gate for kubelet.

According to the upstream docs this should still be understood
by kubelet, but the docs are wrong.  (An issue has been raised.)

Accordingly this commit creates a generic framework which can
be used to remove one or more feature gates from all locations
before upgrading to a specified K8s version.

Test plan:

PASS: exercise code via test harness to validate various
      combinations of feature gates in different sections
PASS: K8s upgrade to 1.24 in standard lab that was upgraded from
      previous release

Closes-Bug: 1999837
Change-Id: Ibbcfdbb3deb5a11ee8ca059439bd4e2c7e0fd5a6
Signed-off-by: Chris Friesen <chris.friesen@windriver.com>
2022-12-16 13:41:18 -06:00
..
agent Fix Debian issue parsing lldp port power 2022-10-21 19:41:21 +00:00
api Add new mode openldap_ca to certificate-install API 2022-12-01 09:08:26 -05:00
cert_alarm Cert-Alarm audit 2021-09-24 11:44:40 -04:00
cert_mon Cert-mon improvement 2022-03-16 13:21:02 -03:00
common Merge "FluxCD: Support disabling release instead of chart" 2022-06-13 19:54:49 +00:00
conductor generic feature gates cleanup on k8s upgrade 2022-12-16 13:41:18 -06:00
db Removing unnecessary IP for platform-nfs. 2022-10-20 13:32:22 +00:00
helm FluxCD: Support disabling release instead of chart 2022-06-13 12:22:07 -03:00
objects Fix DetachedInstanceError 2022-01-27 08:27:07 +00:00
openstack Fixes the time calculation in the is_expired method of the Token class 2021-02-17 22:06:21 -03:00
puppet Debian: fix VLAN creation in duplex-direct mode 2022-10-14 11:36:51 +00:00
README.txt Create basic set of unit tests for sysinv ihosts API 2019-07-24 11:35:15 -05:00
__init__.py Fix: "__builtin__" issue for Python 2/3 compatible code 2018-12-19 10:21:57 +08:00
base.py py3: Fix iterator index operator usage 2021-08-13 16:32:10 +00:00
conf_fixture.py Add ZeroMQ RPC backend 2022-11-24 13:28:01 -03:00
events_for_testing.yaml Alarm Hostname controller function has in-service failure reported 2022-10-05 10:28:26 -04:00
fake_policy.py Deprecate old policy engine and restrict access 2022-08-10 11:18:38 -03:00
keyring_fixture.py Initial framework and unit tests for puppet plugins 2019-07-24 09:08:52 -04:00
matchers.py Enable Bad String Formatting Linting 2019-07-17 14:36:37 -04:00
policy.yaml Deprecate old policy engine and restrict access 2022-08-10 11:18:38 -03:00
policy_fixture.py Deprecate old policy engine and restrict access 2022-08-10 11:18:38 -03:00
stubs.py Fix: "map" issue for Python 2/3 compatible code 2018-12-18 11:03:00 +08:00
test_dbsync.py StarlingX open source release updates 2018-05-31 07:35:52 -07:00
test_images.py Deprecate the sysinv.openstack.common utils files 2019-12-04 10:58:39 -06:00
test_utils.py Add new method to get target release OS type 2022-08-11 15:02:59 -04:00
utils.py Removing mox from sysinv in StarlingX 2019-12-20 08:04:22 -06:00

README.txt

This file discusses the current status of sysinv tests and areas where issues
still exist and what to do in order to test them.

--------------------------------------------------------------------------------
RUNNING TESTS:

To actually run the tests, in console navigate to
$MY_REPO/stx/stx-config/sysinv/sysinv/sysinv

On your first ever run of tox tests enter:
tox --recreate -e py27
This will make sure tox's environment is fresh and fully built.

To test both py27 (the actual unit tests), and check the flake8 formatting:
tox

You can also run both py27 and flake8 by entering the following instead:
tox -e flake8,py27
The above order of environments matters. If py27 comes first, flake8 won't run.

To run either individually enter:
tox -e py27
tox -e flake8

--------------------------------------------------------------------------------
RUNNING TESTS WITH POSTGRESQL:

The default behaviour is to run the sysinv tests with the mySQL database. This
should be fine in most cases.

If you really want to test with postgreSQL, in a local Ubuntu VM or similar:
- go to test_migrations.py and in the function
  test_postgresql_opportunistically, comment out the self.skipTest line to
  enable the test to be run.
- Also go to the function test_postgresql_connect_fail and comment out the
  self.skipTest line so that test can be run as well.
- Lastly, in the function _reset_databases, go to the bottom and uncomment
  self._reset_pg(conn_pieces) so the postgres DB can be reset between runs.
  If this last line is not uncommented, your first run of the py27 tests will
  work, but after that you will get
  migrate.exceptions.DatabaseAlreadyControlledError

Do not push these lines uncommented upstream to the repo.

To set up the postgres db for the first time enter the following in console:
sudo apt-get install postgresql postgresql-contrib
pip install psycopg2

sudo -u postgres psql
CREATE USER openstack_citest WITH CREATEDB LOGIN PASSWORD 'openstack_citest';
CREATE DATABASE openstack_citest WITH OWNER openstack_citest;
\q

--------------------------------------------------------------------------------
OUTSTANDING ISSUES:

tests/api/test_acl.py
    test_authenticated
        Fails due HTTPS connection failure as a result of an invalid user token
        which causes webtest.app.AppError:
        Bad response: 401 Unauthorized 'Authentication required'

    test_non_admin
        Fails due to invalid user token resulting in
        raise mismatch_error testtools.matchers._impl.MismatchError: 401 != 403
        Occurs against Www-Authenticate: Keystone uri='https://127.0.0.1:5000'

    test_non_admin_with_admin_header
        Fails due to invalid user token resulting in
        raise mismatch_error testtools.matchers._impl.MismatchError: 401 != 403

tests/conductor/test_manager.py
    test_configure_ihost_new
        IOError: [Errno 13] Permission denied: '/tmp/dnsmasq.hosts'
        This directory does not exist. I am not sure if this directory is
        still supposed to exist, if it has moved, or if this entire test is
        based on deprecated/replaced functionality.

    test_configure_ihost_no_hostname
        os.rename(temp_dnsmasq_hosts_file, dnsmasq_hosts_file)
        OSError: [Errno 1] Operation not permitted
        Fails because the dnsmasq files don't exist.

    test_configure_ihost_replace
        IOError: [Errno 13] Permission denied: '/tmp/dnsmasq.hosts'
        This dnsmasq file doesn't exist. Same issue as in the first test.

There also exists the issue of using postgres for db migrations in
tests/db/sqlalchemy/test_migrations.py. The issue with this is that these
migrations can only be run on local VMs such as Ubuntu, and not on the build
servers or on Jenkins because it would require that someone manually set up
the database on those systems, and the issue with putting it on the build server
is that because there presently exist no ways of getting postgres running in a
virtual environment (e.g. tox's), it must be set up on the actual system. This
means that multiple people running these tests at the same time would interact
with the same db and could run into issues. The reason postgres is being used
is because between versions, some columns of enumerated types are being altered
and SQLite doesn't support ALTER COLUMN or ALTER TABLE functionality. Alembic
and sqlalchemy-migrate offer solutions to this, but presently there is no
intention to incorporate either of these packages.

--------------------------------------------------------------------------------
TESTING DECISIONS:

We've chosen to use flake8 instead of PEP8 because PEP8 results in a lot more
insignificant issues being found, and flake8 combines PEP8 with PyFlakes which
combines code formatting with syntax and import checking, additionally, flake8
provides the option to test code complexity and return warnings if the
complexity exceeds whatever limit you've set.

--------------------------------------------------------------------------------