Skip to content

Latest commit

 

History

History

integration

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Integration scripts for Rancher

CI

To execute a full CI test, run make test or make ci which will build Rancher (including any local changes) and run the test suite on it.

Development

Install

  • Setup virtualenv and enter it
  • pip install -r requirements.txt
  • pip install tox

Run tests

Start a local rancher instance on port 8443

Run with Tox - from tests/integration dir. See tox.ini for configuration

  • the entire suite: tox (from tests/integration)
  • a single file with tox: tox -- -x suite/test_users.py (from tests/integration)

Run with pytest

  • a single test: pytest -k test_user_cant_delete_self
  • a file: pytest tests/integration/suite/test_auth_proxy.py

Notes

To debug, use the standard inline process: breakpoint()

The tests use a Rancher python client (https://github.com/rancher/client-python) which is dynamically generated based on the Rancher API, so any methods called on it do not exist until runtime. It will be helpful to use the debugger and tools like dir(admin_mc) to see all methods on a variable.

conftest.py holds the primary supporting code, see pytest docs for more info.