]> git.proxmox.com Git - ceph.git/blob - ceph/src/ceph-volume/ceph_volume/tests/functional/simple/tox.ini
import ceph quincy 17.2.6
[ceph.git] / ceph / src / ceph-volume / ceph_volume / tests / functional / simple / tox.ini
1 [tox]
2 envlist = centos7-{filestore,bluestore}-{activate,dmcrypt_plain,dmcrypt_luks}
3 skipsdist = True
4
5 [testenv]
6 deps = mock
7 allowlist_externals =
8 vagrant
9 bash
10 git
11 sleep
12 cp
13 passenv=*
14 setenv=
15 ANSIBLE_CONFIG = {envdir}/tmp/ceph-ansible/ansible.cfg
16 ANSIBLE_SSH_ARGS = -F {changedir}/vagrant_ssh_config -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey
17 ANSIBLE_STDOUT_CALLBACK = debug
18 VAGRANT_CWD = {changedir}
19 CEPH_VOLUME_DEBUG = 1
20 DEBIAN_FRONTEND=noninteractive
21 changedir=
22 centos7-filestore-activate: {toxinidir}/centos7/filestore/activate
23 centos7-bluestore-activate: {toxinidir}/centos7/bluestore/activate
24 centos7-bluestore-dmcrypt_plain: {toxinidir}/centos7/bluestore/dmcrypt-plain
25 centos7-bluestore-dmcrypt_luks: {toxinidir}/centos7/bluestore/dmcrypt-luks
26 centos7-filestore-dmcrypt_plain: {toxinidir}/centos7/filestore/dmcrypt-plain
27 centos7-filestore-dmcrypt_luks: {toxinidir}/centos7/filestore/dmcrypt-luks
28 commands=
29 git clone -b {env:CEPH_ANSIBLE_BRANCH:master} --single-branch https://github.com/ceph/ceph-ansible.git {envdir}/tmp/ceph-ansible
30 pip install -r {envdir}/tmp/ceph-ansible/tests/requirements.txt
31
32 bash {toxinidir}/../scripts/vagrant_up.sh {env:VAGRANT_UP_FLAGS:"--no-provision"} {posargs:--provider=virtualbox}
33 bash {toxinidir}/../scripts/generate_ssh_config.sh {changedir}
34
35 cp {toxinidir}/../playbooks/deploy.yml {envdir}/tmp/ceph-ansible
36
37 # use ceph-ansible to deploy a ceph cluster on the vms
38 ansible-playbook -vv -i {changedir}/hosts {envdir}/tmp/ceph-ansible/deploy.yml --extra-vars "fetch_directory={changedir}/fetch ceph_dev_branch={env:CEPH_DEV_BRANCH:master} ceph_dev_sha1={env:CEPH_DEV_SHA1:latest} toxinidir={toxinidir}"
39
40 # prepare nodes for testing with testinfra
41 ansible-playbook -vv -i {changedir}/hosts {envdir}/tmp/ceph-ansible/tests/functional/setup.yml
42
43 # test cluster state testinfra
44 py.test --reruns 5 --reruns-delay 10 -n 4 --sudo -v --connection=ansible --ssh-config={changedir}/vagrant_ssh_config --ansible-inventory={changedir}/hosts {toxinidir}/../tests
45
46 # make ceph-volume simple take over all the OSDs that got deployed, disabling ceph-disk
47 ansible-playbook -vv -i {changedir}/hosts {changedir}/test.yml
48
49 # reboot all vms
50 bash {toxinidir}/../scripts/vagrant_reload.sh {env:VAGRANT_UP_FLAGS:"--no-provision"} {posargs:--provider=virtualbox}
51
52 # wait 2 minutes for services to be ready
53 sleep 120
54
55 # retest to ensure cluster came back up correctly after rebooting
56 py.test --reruns 5 --reruns-delay 10 -n 4 --sudo -v --connection=ansible --ssh-config={changedir}/vagrant_ssh_config --ansible-inventory={changedir}/hosts {toxinidir}/../tests
57
58 vagrant destroy {env:VAGRANT_DESTROY_FLAGS:"--force"}