测试是openstack中的重要一环,一个大型的项目,要想报障product的质量,没有测试只能是瞎玩,单元测试,功能测试,集成测试等等,我们这里主要说的是unittest,
也就是单元测试。早期的openstack项目里面都有runtest.sh 脚本文件,运行脚本可以生成virtual 环境,从而在不破坏现有环境下下载测试所需要的相关一类包,而CI
的流行,对于大型的openstack来说也会面临持续集成的问题,Tox的出现,作为openstack中使用的持续集成工具,使用方便而灵活。
这篇文章主要是记录,如何在openstack中进行测试所碰到的问题,解决方法等,所有会有很多链接。
早先时,使用run_test脚本进行测试的方式和tox并存,后来tox基本取代了run_test了,所以可以只关注tox,像ironic这样的新项目,干脆就只用tox了。
这是一篇不错的关于tox的链接:
http://ronaldbradford.com/blog/understanding-the-different-openstack-tox-configs-2015-04-30/
openstack测试相关的官网wiki页:
https://wiki.openstack.org/wiki/Testing
https://wiki.openstack.org/wiki/Testr
ironic使用tox测试的官方文档:
http://docs.openstack.org/developer/ironic/dev/dev-quickstart.html
测试单独一个类:
testr run ironic.tests.objects.test_port.TestPortObject.test_save
tox -epy27 -- ironic.tests.objects.test_port.TestPortObject.test_save
直接运行tox,遇到的问题:
1. tox -epy34失败,
“db type could not be determined error: testr failed (3)”
解决办法是先执行:rm .testrepository/times.dbm,再执行tox -py34,
如果run test因为超时失败,可以修改 .testr.conf文件,将timeout时间设长
2. 直接运行 tox -epep8, 用于检查code是否满足PEP8规范
3. 由于pypi的官方源不稳定,因此一开始使用 "tox -evenv--notest" 就可能会出问题,此时在 tox.ini中更改pypi源(豆瓣的源不错):
[tox]
minversion = 1.6
skipsdist = True
envlist = py34,py27,pep8
indexserver =
default = http://pypi.douban.com/simple/
或者修改~/.pip/pip.conf文件,添加:
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host = pypi.douban.com
以下是我碰到过的因为lib依赖出现的问题,以及安装什么库可以解决,mark一下方便查阅:
lxml失败
apt-get install libxslt1-dev libxslt1.1libxml2-dev libxml2 libssl-dev
psycopg2失败
apt-get install libpq-dev python-dev
x86_64-linux-gnu-gcc error
python-dev
如果是py34的问题,就安装python3-dev
libvirt error
libvirt-dev
[Errno 2] No such file or directory
apt-get install git
python-ldap
http://stackoverflow.com/questions/18134826/how-do-i-install-python-ldap-in-a-virtualenv-on-ubuntu