2017-01-03 05:47:48 -06:00
|
|
|
#
|
|
|
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
|
|
#
|
|
|
|
|
|
|
|
# Configuration file for the test runner used in Travis CI
|
|
|
|
|
2016-11-30 03:30:04 -06:00
|
|
|
container:
|
|
|
|
detach: true
|
|
|
|
hostname: master.ipa.test
|
|
|
|
working_dir: /freeipa
|
|
|
|
host:
|
|
|
|
binds:
|
|
|
|
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
|
|
|
- /dev/urandom:/dev/random:ro
|
|
|
|
privileged: true
|
|
|
|
security_opt:
|
|
|
|
- label:disable
|
|
|
|
tmpfs:
|
|
|
|
- /tmp
|
|
|
|
- /run
|
|
|
|
server:
|
|
|
|
domain: ipa.test
|
|
|
|
password: Secret123
|
|
|
|
realm: IPA.TEST
|
|
|
|
steps:
|
|
|
|
build:
|
|
|
|
- make V=0 ${make_target}
|
|
|
|
builddep:
|
|
|
|
- rm -rf /var/cache/dnf/*
|
2017-08-28 05:49:02 -05:00
|
|
|
- "dnf makecache || :"
|
2017-11-16 05:27:16 -06:00
|
|
|
- dnf builddep -y ${builddep_opts} -D "with_wheels 1" --spec freeipa.spec.in --best --allowerasing
|
2016-11-30 03:30:04 -06:00
|
|
|
cleanup:
|
|
|
|
- chown -R ${uid}:${gid} ${container_working_dir}
|
2017-02-08 03:38:57 -06:00
|
|
|
- journalctl -b --no-pager > systemd_journal.log
|
|
|
|
- >
|
|
|
|
tar --ignore-failed-read -cvf ${container_working_dir}/var_log.tar
|
|
|
|
/var/log/dirsrv
|
|
|
|
/var/log/httpd
|
|
|
|
/var/log/ipa*
|
|
|
|
/var/log/krb5kdc.log
|
|
|
|
/var/log/pki
|
|
|
|
systemd_journal.log
|
|
|
|
- chown ${uid}:${gid} ${container_working_dir}/var_log.tar
|
2016-11-30 03:30:04 -06:00
|
|
|
configure:
|
|
|
|
- ./autogen.sh
|
|
|
|
install_packages:
|
|
|
|
- dnf install -y ${container_working_dir}/dist/rpms/*.rpm --best --allowerasing
|
|
|
|
install_server:
|
|
|
|
- ipa-server-install -U --domain ${server_domain} --realm ${server_realm} -p ${server_password}
|
2017-03-02 10:08:59 -06:00
|
|
|
-a ${server_password} --setup-dns --setup-kra --auto-forwarders
|
2017-03-10 03:46:45 -06:00
|
|
|
- sed -ri "s/mode = production/mode = development/" /etc/ipa/default.conf
|
|
|
|
- systemctl restart httpd.service
|
2016-11-30 03:30:04 -06:00
|
|
|
lint:
|
2017-05-26 16:05:17 -05:00
|
|
|
- make PYTHON=/usr/bin/python2 V=0 lint
|
|
|
|
- make PYTHON=/usr/bin/python3 V=0 pylint
|
2017-11-16 05:27:16 -06:00
|
|
|
tox:
|
|
|
|
# just run one pylint and one Python 3 target (time/coverage trade-off)
|
|
|
|
- tox -e py27,py36,pypi,pylint3
|
2016-11-30 03:30:04 -06:00
|
|
|
prepare_tests:
|
|
|
|
- echo ${server_password} | kinit admin && ipa ping
|
|
|
|
- cp -r /etc/ipa/* ~/.ipa/
|
|
|
|
- echo ${server_password} > ~/.ipa/.dmpw
|
|
|
|
- echo 'wait_for_dns=5' >> ~/.ipa/default.conf
|
|
|
|
run_tests:
|
2017-03-20 06:12:50 -05:00
|
|
|
- ipa-test-config --help
|
|
|
|
- ipa-test-task --help
|
2016-11-30 03:30:04 -06:00
|
|
|
- ipa-run-tests ${tests_ignore} -k-test_dns_soa ${tests_verbose} ${path}
|
2017-06-20 08:35:29 -05:00
|
|
|
- '! grep -n -C5 BytesWarning /var/log/httpd/error_log'
|
2017-05-16 07:17:19 -05:00
|
|
|
- ipa-server-install --uninstall -U
|
2016-11-30 03:30:04 -06:00
|
|
|
tests:
|
|
|
|
ignore:
|
|
|
|
- test_integration
|
|
|
|
- test_webui
|
|
|
|
- test_ipapython/test_keyring.py
|
|
|
|
verbose: true
|