1 Star 0 Fork 0

zeroway/portage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TEST-NOTES 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
UnitTests
---------
Portage has some tests that use the unittest framework that ships with python (2.3-2.4ish)
Tests have a specific naming convention.
in lib/portage/tests/ there is a runTest script that invokes lib/portage/tests/__init__.py
This init looks at a hardcoded list of test dirs to search for tests.
If you add a new dir and don't see your new tests, make sure that the dir is in this list.
On the subject of adding more directories; the layout is basically 1 directory per portage
file at this point (we have few files, and even fewer large files). Inside of the dir
you should have files of the form test_${function}.py.
So if I was to write a vercmp test, and vercmp is in portage_versions.
lib/portage/tests/portage_versions/test_vercmp.py
would be the filename.
The __init__.py file now does recursive tests, but you need to tell it so. For example, if
you had cache tests the dir format would be something like...
lib/portage/tests/cache/flat_hash/test_foo.py
and you would put "cache/flat_hash" into the testDirs variable in __init__.py.
Skipping
--------
Please use the portage.tests.* classes as they support throwing a SkipException for
tests that are known to fail. Normally one uses testing to do Test Driven Development
(TDD); however we do not do that here. Therefore there are times when legitimate tests
exist but fail due to code in trunk. We would still like the suite to pass in some instances
because the suite is built around two things, testing functionality in the current code as
well as poking holes in the current code (isvalidatom is an example). So sometimes we desire
a test to point out that "this needs fixing" but it doesn't affect portage's overall
functionality. You should raise portage.tests.SkipException in that case.
emerge
------
The emerge namespace currently has 0 tests (and no runner)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zeroway/portage.git
git@gitee.com:zeroway/portage.git
zeroway
portage
portage
master

搜索帮助