Python unittests ใน Jenkins?


140

คุณจะให้เจนกินส์ดำเนินการกับ python unittest case ได้อย่างไร? เป็นไปได้ไหมที่จะส่งออก XML สไตล์ JUnit จากunittestแพ็คเกจในตัว


1
คำตอบทั้งหมดสันนิษฐานว่าคุณต้องการเริ่มกรณีทดสอบจากบรรทัดคำสั่ง แต่ถ้าคุณต้องการเรียกใช้การทดสอบโดยใช้โปรแกรมลองทำดังนี้import nose ; nose.runmodule() # aka nose.run(defaultTest=__name__)
MarkHu

1
IMHO คำแนะนำง่ายๆ 'py.test --junitxml results.xml test.py' ตอบคำถามได้ดีที่สุด 'yum install pytest' เพื่อติดตั้ง py.test จากนั้นคุณสามารถเรียกใช้สคริปต์ python ที่ไม่เหมาะสมที่สุดและรับผลลัพธ์ jUnit xml
gaoithe

1
@gaoithe ที่ตอบโจทย์ส่วนของเจนกินส์ แต่ไม่เป็นไปตามข้อกำหนดในการใช้โมดูลที่ไม่เหมาะสมในตัว ในโครงการนั้นเป็นข้อกำหนดที่กำหนด
erikbwork

@ erikb85 เมื่อฉันพูดว่า "run any unittest python script" ฉันหมายถึงสคริปต์ที่ใช้โมดูลที่ไม่เหมาะสมที่สุด
gaoithe

คำตอบ:


176

การทดสอบตัวอย่าง:

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 กับ pytest

ทำการทดสอบด้วย:

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

nosetests.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 กับจมูก 2

คุณจะต้องใช้nose2.plugins.junitxmlปลั๊กอิน คุณสามารถกำหนดค่าnose2ด้วยไฟล์กำหนดค่าเช่นเดียวกับที่คุณทำตามปกติหรือด้วย--pluginตัวเลือกบรรทัดคำสั่ง

ทำการทดสอบด้วย:

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

จมูก 2-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>

JUnit พร้อมรายงาน unittest-xml

ต่อท้ายสิ่งต่อไปนี้เพื่อ tests.py

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

ทำการทดสอบด้วย:

python tests.py

รายงานการทดสอบ / 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>

4
+1 สำหรับคำแนะนำง่ายๆ 'py.test --junitxml results.xml test.py' 'yum install pytest' เพื่อติดตั้ง py.test จากนั้นคุณสามารถเรียกใช้สคริปต์ python ที่ไม่เหมาะสมที่สุดและรับผลลัพธ์ jUnit xml
gaoithe

1
หากคุณต้องการที่จะใช้UnitTest-XML รายงานและได้รับประโยชน์จากคุณลักษณะการทดสอบการค้นพบunittest.main(module=None, testRunner=xmlrunner.XMLTestRunner(output='test-reports'))คุณสามารถใส่
Rosberg Linhares

@RosbergLinhares ทำไมคุณต้องmodule=Noneใช้ Test Discovery? unittest.main(testRunner=xmlrunner.XMLTestRunner(output='test-reports'))มันทำงานได้ตรงตามที่อธิบายไว้ในคำตอบ
acm

@RosbergLinhares ในระหว่างการค้นหาการทดสอบโมดูลจะถูกนำเข้าเท่านั้น แต่ไม่ได้ดำเนินการ ดังนั้นวิธีแก้ปัญหาเหล่านี้ควรจะทำงานร่วมกับการค้นพบได้อย่างไร? ฉันเพิ่งลองใช้งานไม่ได้ผล หรือฉันขาดอะไรไป?
Konstantin

20

ฉันจะใช้จมูกเป็นครั้งที่สอง ขณะนี้การรายงาน XML พื้นฐานถูกสร้างขึ้นแล้วเพียงใช้ตัวเลือกบรรทัดคำสั่ง --with-xunit และจะสร้างไฟล์ ตัวอย่างเช่น:

nosetests - พร้อม -xunit

จากนั้นเพิ่ม "เผยแพร่รายงานผลการทดสอบ JUnit" หลังการดำเนินการสร้างและกรอกข้อมูลในฟิลด์ "Test report XMLs" ด้วย nosetests.xml (สมมติว่าคุณเรียกใช้ nosetests ใน $ WORKSPACE)


11

คุณสามารถติดตั้งUnitTest-XML รายงานแพคเกจที่จะเพิ่มการวิ่งทดสอบที่สร้าง XML unittestเพื่อในตัว

เราใช้pytestซึ่งมีเอาต์พุต XML ในตัว (เป็นตัวเลือกบรรทัดคำสั่ง)

ไม่ว่าจะด้วยวิธีใดการดำเนินการทดสอบยูนิตสามารถทำได้โดยการรันคำสั่งเชลล์




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

เรียกใช้สิ่งนี้เป็นเชลล์จากเจนกินส์คุณสามารถรับรายงานใน pytest_unit.xml เป็นสิ่งประดิษฐ์

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.