source

젠킨스에서 파이썬 유닛 테스트?

lovecheck 2023. 7. 16. 13:41
반응형

젠킨스에서 파이썬 유닛 테스트?

젠킨스가 파이썬 유닛 테스트 케이스를 어떻게 실행하도록 합니까?내장된 XML 출력에서 Junit 스타일을 지정할 수 있습니까?unittest패키지?

표본 검정:

tests.py :

# tests.py

import random
try:
    import unittest2 as unittest
except ImportError:
    import unittest

class SimpleTest(unittest.TestCase):
    @unittest.skip("demonstrating skipping")
    def test_skipped(self):
        self.fail("shouldn't happen")

    def test_pass(self):
        self.assertEqual(10, 7 + 3)

    def test_fail(self):
        self.assertEqual(11, 7 + 3)

파이테스트를 포함한 Junit

다음을 사용하여 테스트 실행:

py.test --junitxml results.xml tests.py

results.xml:

<?xml version="1.0" encoding="utf-8"?>
<testsuite errors="0" failures="1" name="pytest" skips="1" tests="2" time="0.097">
    <testcase classname="tests.SimpleTest" name="test_fail" time="0.000301837921143">
        <failure message="test failure">self = &lt;tests.SimpleTest testMethod=test_fail&gt;

    def test_fail(self):
&gt;       self.assertEqual(11, 7 + 3)
E       AssertionError: 11 != 10

tests.py:16: AssertionError</failure>
    </testcase>
    <testcase classname="tests.SimpleTest" name="test_pass" time="0.000109910964966"/>
    <testcase classname="tests.SimpleTest" name="test_skipped" time="0.000164031982422">
        <skipped message="demonstrating skipping" type="pytest.skip">/home/damien/test-env/lib/python2.6/site-packages/_pytest/unittest.py:119: Skipped: demonstrating skipping</skipped>
    </testcase>
</testsuite>

코가 있는 Junit

다음을 사용하여 테스트 실행:

nosetests --with-xunit

no setests.xml:

<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="nosetests" tests="3" errors="0" failures="1" skip="1">
    <testcase classname="tests.SimpleTest" name="test_fail" time="0.000">
        <failure type="exceptions.AssertionError" message="11 != 10">
            <![CDATA[Traceback (most recent call last):
File "/opt/python-2.6.1/lib/python2.6/site-packages/unittest2-0.5.1-py2.6.egg/unittest2/case.py", line 340, in run
testMethod()
File "/home/damien/tests.py", line 16, in test_fail
self.assertEqual(11, 7 + 3)
File "/opt/python-2.6.1/lib/python2.6/site-packages/unittest2-0.5.1-py2.6.egg/unittest2/case.py", line 521, in assertEqual
assertion_func(first, second, msg=msg)
File "/opt/python-2.6.1/lib/python2.6/site-packages/unittest2-0.5.1-py2.6.egg/unittest2/case.py", line 514, in _baseAssertEqual
raise self.failureException(msg)
AssertionError: 11 != 10
]]>
        </failure>
    </testcase>
    <testcase classname="tests.SimpleTest" name="test_pass" time="0.000"></testcase>
    <testcase classname="tests.SimpleTest" name="test_skipped" time="0.000">
        <skipped type="nose.plugins.skip.SkipTest" message="demonstrating skipping">
            <![CDATA[SkipTest: demonstrating skipping
]]>
        </skipped>
    </testcase>
</testsuite>

Junit with nose2

다음을 사용해야 합니다.nose2.plugins.junitxml플러그인구성할 수 있습니다.nose2일반적으로 사용하는 것처럼 구성 파일 또는--plugin명령줄 옵션.

다음을 사용하여 테스트 실행:

nose2 --plugin nose2.plugins.junitxml --junit-xml tests

nose2-junit.xml:

<testsuite errors="0" failures="1" name="nose2-junit" skips="1" tests="3" time="0.001">
  <testcase classname="tests.SimpleTest" name="test_fail" time="0.000126">
    <failure message="test failure">Traceback (most recent call last):
  File "/Users/damien/Work/test2/tests.py", line 18, in test_fail
    self.assertEqual(11, 7 + 3)
AssertionError: 11 != 10
</failure>
  </testcase>
  <testcase classname="tests.SimpleTest" name="test_pass" time="0.000095" />
  <testcase classname="tests.SimpleTest" name="test_skipped" time="0.000058">
    <skipped />
  </testcase>
</testsuite>

unitest-xml-reporting을 사용하는 Junit

다음 항목 추가tests.py

if __name__ == '__main__':
    import xmlrunner
    unittest.main(testRunner=xmlrunner.XMLTestRunner(output='test-reports'))

다음을 사용하여 테스트 실행:

python tests.py

test-reports/TEST-SimpleTest-20131001140629.xml:

<?xml version="1.0" ?>
<testsuite errors="1" failures="0" name="SimpleTest-20131001140629" tests="3" time="0.000">
    <testcase classname="SimpleTest" name="test_pass" time="0.000"/>
    <testcase classname="SimpleTest" name="test_fail" time="0.000">
        <error message="11 != 10" type="AssertionError">
<![CDATA[Traceback (most recent call last):
  File "tests.py", line 16, in test_fail
    self.assertEqual(11, 7 + 3)
AssertionError: 11 != 10
]]>     </error>
    </testcase>
    <testcase classname="SimpleTest" name="test_skipped" time="0.000">
        <skipped message="demonstrating skipping" type="skip"/>
    </testcase>
    <system-out>
<![CDATA[]]>    </system-out>
    <system-err>
<![CDATA[]]>    </system-err>
</testsuite>

저는 코를 사용하는 것을 두 번째로 선호합니다.이제 기본 XML 보고 기능이 내장되었습니다.--with-xunit 명령줄 옵션을 사용하기만 하면 nosetests.xml 파일이 생성됩니다.예:

테스트 없음 ---x 단위

그런 다음 빌드 후 "Junit 테스트 결과 보고서 게시" 작업을 추가하고 "테스트 보고서 XMLs" 필드에 tests.xml이 없습니다($WORKspace에서 테스트를 실행하지 않았다고 가정).

unitest-xml-reporting 패키지를 설치하여 XML을 생성하는 테스트 실행기를 기본 제공 프로그램에 추가할 수 있습니다.unittest.

XML 출력이 내장된 pytest(명령줄 옵션)를 사용합니다.

어느 쪽이든 장치 테스트 실행은 셸 명령을 실행하여 수행할 수 있습니다.

python -m pytest --junit-xml=pytest_unit.xml source_directory/test/unit || true # tests may fail

이를 젠킨스의 셸로 실행하면 pytest_unit.xml의 보고서를 아티팩트로 가져올 수 있습니다.

저는 검사를 안 했어요.Jenkins에 대한 XML을 출력하는 추가 기능이 있습니다.

빌드아웃을 사용하여 Junit 스타일 XML 출력을 생성할 때는 소스 코드이거나 모듈 자체가 도움이 될 수 있습니다.

언급URL : https://stackoverflow.com/questions/11241781/python-unittests-in-jenkins

반응형