कैसे एक unittest लिखता है जो केवल तभी विफल होता है जब कोई फ़ंक्शन अपेक्षित अपवाद नहीं फेंकता है?
कैसे एक unittest लिखता है जो केवल तभी विफल होता है जब कोई फ़ंक्शन अपेक्षित अपवाद नहीं फेंकता है?
जवाबों:
उदाहरण के लिए, unittest मॉड्यूल से उपयोग TestCase.assertRaises
(या TestCase.failUnlessRaises
):
import mymod
class MyTestCase(unittest.TestCase):
def test1(self):
self.assertRaises(SomeCoolException, mymod.myfunc)
myfunc
करने के लिए उन्हें तर्क के रूप में जोड़ने की आवश्यकता है, जैसे कि कॉल। देखें डेरिल स्पिट्जर का जवाब।
self.assertRaises(TypeError, mymod.myfunc)
:। आप यहाँ अंतर्निहित अपवादों की पूरी सूची पा सकते हैं: docs.python.org/3/library/exception.html#bltin-exception
self.assertRaises(SomeCoolException, Constructor, arg1)
पायथन 2.7 के बाद से, आप वास्तविक एक्सेप्शन ऑब्जेक्ट को फेंकने के लिए संदर्भ प्रबंधक का उपयोग कर सकते हैं:
import unittest
def broken_function():
raise Exception('This is broken')
class MyTestCase(unittest.TestCase):
def test(self):
with self.assertRaises(Exception) as context:
broken_function()
self.assertTrue('This is broken' in context.exception)
if __name__ == '__main__':
unittest.main()
http://docs.python.org/dev/library/unittest.html#unittest.TestCase.assertRaises
में अजगर 3.5 , आप रैप करने के लिए है context.exception
में str
, अन्यथा आप एक मिल जाएगाTypeError
self.assertTrue('This is broken' in str(context.exception))
context.exception
संदेश नहीं देता; यह एक प्रकार है।
import unittest2
, आपको उपयोग करने की आवश्यकता है str()
, अर्थात self.assertTrue('This is broken' in str(context.exception))
।
मेरे पिछले उत्तर के कोड को सरल बनाया जा सकता है:
def test_afunction_throws_exception(self):
self.assertRaises(ExpectedException, afunction)
और अगर तर्कों में तर्क होते हैं, तो उन्हें इस तरह से मुखर कर दें:
def test_afunction_throws_exception(self):
self.assertRaises(ExpectedException, afunction, arg1, arg2)
2.7.15
। अगर afunction
में self.assertRaises(ExpectedException, afunction, arg1, arg2)
वर्ग प्रारंभकर्ता है, तो आप उत्तीर्ण करने की आवश्यकता self
पहला तर्क जैसे, के रूप में self.assertRaises(ExpectedException, Class, self, arg1, arg2)
आप कैसे परीक्षण करते हैं कि पायथन फ़ंक्शन एक अपवाद फेंकता है?
कोई ऐसा परीक्षण कैसे लिखता है जो केवल तभी विफल होता है जब कोई फ़ंक्शन अपेक्षित अपवाद नहीं देता है?
self.assertRaises
संदर्भ प्रबंधक के रूप में विधि का उपयोग करें :
def test_1_cannot_add_int_and_str(self):
with self.assertRaises(TypeError):
1 + '1'
पायथन शेल में प्रदर्शित करने के लिए सबसे अच्छा अभ्यास दृष्टिकोण काफी आसान है।
unittest
पुस्तकालय
पायथन 2.7 या 3 में:
import unittest
पाइथन 2.6 में, आप 2.7 की unittest
लाइब्रेरी का बैकपोर्ट स्थापित कर सकते हैं , जिसे यूनिटेस्ट 2 कहा जाता है , और सिर्फ उर्फ unittest
:
import unittest2 as unittest
अब, अपने पायथन शेल में पेस्ट करें पायथन के प्रकार-सुरक्षा के निम्नलिखित परीक्षण:
class MyTestCase(unittest.TestCase):
def test_1_cannot_add_int_and_str(self):
with self.assertRaises(TypeError):
1 + '1'
def test_2_cannot_add_int_and_str(self):
import operator
self.assertRaises(TypeError, operator.add, 1, '1')
परीक्षण एक assertRaises
संदर्भ प्रबंधक के रूप में उपयोग करता है , जो यह सुनिश्चित करता है कि रिकॉर्ड करते समय त्रुटि ठीक से पकड़ी गई और साफ हो गई।
हम इसे संदर्भ प्रबंधक के बिना भी लिख सकते हैं , परीक्षण दो देखें। पहला तर्क वह त्रुटि प्रकार होगा जिसे आप उठाने की अपेक्षा करते हैं, दूसरा तर्क, जिस फ़ंक्शन का आप परीक्षण कर रहे हैं, और शेष आर्ग्स और कीवर्ड आर्ग्स उस फ़ंक्शन को दिए जाएंगे।
मुझे लगता है कि यह केवल संदर्भ प्रबंधक का उपयोग करने के लिए कहीं अधिक सरल, पठनीय और बनाए रखने योग्य है।
परीक्षण चलाने के लिए:
unittest.main(exit=False)
पायथन 2.6 में, आपको संभवतः निम्नलिखित की आवश्यकता होगी :
unittest.TextTestRunner().run(unittest.TestLoader().loadTestsFromTestCase(MyTestCase))
और आपके टर्मिनल को निम्नलिखित उत्पादन करना चाहिए:
..
----------------------------------------------------------------------
Ran 2 tests in 0.007s
OK
<unittest2.runner.TextTestResult run=2 errors=0 failures=0>
और हम उस के रूप में हम उम्मीद करते हैं, एक जोड़ने का प्रयास कर देखना 1
और एक '1'
एक में परिणाम TypeError
।
अधिक वर्बोज़ आउटपुट के लिए, यह आज़माएँ:
unittest.TextTestRunner(verbosity=2).run(unittest.TestLoader().loadTestsFromTestCase(MyTestCase))
आपके कोड को इस पैटर्न का पालन करना चाहिए (यह एक unittest मॉड्यूल स्टाइल टेस्ट है):
def test_afunction_throws_exception(self):
try:
afunction()
except ExpectedException:
pass
except Exception:
self.fail('unexpected exception raised')
else:
self.fail('ExpectedException not raised')
पायथन <2.7 पर यह निर्माण अपेक्षित अपवाद में विशिष्ट मूल्यों की जांच के लिए उपयोगी है। assertRaises
यदि कोई अपवाद उठाया गया था, तो सबसे निर्विवाद कार्य केवल जाँच करता है।
assertRaises
FAIL के बजाय ERROR मिलेगा।
से: http://www.lengrand.fr/2011/12/pythununestest-assertraises-raises-error/
सबसे पहले, यहाँ फ़ाइल dum_function.py में संबंधित (अभी भी डम: पी) फ़ंक्शन है:
def square_value(a):
"""
Returns the square value of a.
"""
try:
out = a*a
except TypeError:
raise TypeError("Input should be a string:")
return out
यहाँ परीक्षण किया जाना है (केवल यह परीक्षण डाला गया है):
import dum_function as df # import function module
import unittest
class Test(unittest.TestCase):
"""
The class inherits from unittest
"""
def setUp(self):
"""
This method is called before each test
"""
self.false_int = "A"
def tearDown(self):
"""
This method is called after each test
"""
pass
#---
## TESTS
def test_square_value(self):
# assertRaises(excClass, callableObj) prototype
self.assertRaises(TypeError, df.square_value(self.false_int))
if __name__ == "__main__":
unittest.main()
अब हम अपने कार्य का परीक्षण करने के लिए तैयार हैं! परीक्षण चलाने की कोशिश करने पर ऐसा होता है:
======================================================================
ERROR: test_square_value (__main__.Test)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test_dum_function.py", line 22, in test_square_value
self.assertRaises(TypeError, df.square_value(self.false_int))
File "/home/jlengrand/Desktop/function.py", line 8, in square_value
raise TypeError("Input should be a string:")
TypeError: Input should be a string:
----------------------------------------------------------------------
Ran 1 test in 0.000s
FAILED (errors=1)
TypeError actullay उठाया है, और एक परीक्षण विफलता उत्पन्न करता है। समस्या यह है कि यह ठीक वैसा ही व्यवहार है जैसा हम चाहते थे: एस।
इस त्रुटि से बचने के लिए, परीक्षण कॉल में लंबो का उपयोग करके फ़ंक्शन को चलाएं:
self.assertRaises(TypeError, lambda: df.square_value(self.false_int))
अंतिम आउटपुट:
----------------------------------------------------------------------
Ran 1 test in 0.000s
OK
उत्तम !
... और मेरे लिए भी सही है !!
बहुत बहुत धन्यवाद श्री जूलियन लेनग्रैंड-लैंबर्ट
यह परीक्षण वास्तव में एक गलत सकारात्मक रिटर्न देता है । ऐसा इसलिए होता है क्योंकि 'assertRaises' के अंदर का लंबोदर वह इकाई है जो टाइप त्रुटि उठाती है, न कि परीक्षणित फ़ंक्शन।
self.assertRaises(TypeError, df.square_value(self.false_int))
विधि को कॉल करती है और परिणाम लौटाती है। आप जो चाहते हैं वह विधि और किसी भी तर्क को पारित करने के लिए है और इसे कॉल करने के लिए self.assertRaises(TypeError, df.square_value, self.false_int)
contextmanager
यदि अपवाद उठाया गया था, तो आप यह जांचने के लिए अपना स्वयं का निर्माण कर सकते हैं ।
import contextlib
@contextlib.contextmanager
def raises(exception):
try:
yield
except exception as e:
assert True
else:
assert False
और फिर आप raises
इस तरह का उपयोग कर सकते हैं :
with raises(Exception):
print "Hola" # Calls assert False
with raises(Exception):
raise Exception # Calls assert True
यदि आप उपयोग कर रहे हैं pytest
, तो यह बात पहले से ही लागू है। आप कर सकते हैं pytest.raises(Exception)
:
उदाहरण:
def test_div_zero():
with pytest.raises(ZeroDivisionError):
1/0
और परिणाम:
pigueiras@pigueiras$ py.test
================= test session starts =================
platform linux2 -- Python 2.6.6 -- py-1.4.20 -- pytest-2.5.2 -- /usr/bin/python
collected 1 items
tests/test_div_zero.py:6: test_div_zero PASSED
unittest
मॉड्यूल की आवश्यकता नहीं है कि एक जवाब पोस्ट करने के लिए धन्यवाद !
मैं लगभग हर जगह सिद्धांत [1] का उपयोग करता हूं क्योंकि मुझे यह तथ्य पसंद है कि मैं एक ही समय में अपने कार्यों का दस्तावेज और परीक्षण करता हूं।
इस कोड पर एक नजर:
def throw_up(something, gowrong=False):
"""
>>> throw_up('Fish n Chips')
Traceback (most recent call last):
...
Exception: Fish n Chips
>>> throw_up('Fish n Chips', gowrong=True)
'I feel fine!'
"""
if gowrong:
return "I feel fine!"
raise Exception(something)
if __name__ == '__main__':
import doctest
doctest.testmod()
यदि आप इस उदाहरण को एक मॉड्यूल में रखते हैं और इसे कमांड लाइन से चलाते हैं, तो दोनों परीक्षण मामलों का मूल्यांकन और जांच की जाती है।
[१] पायथन प्रलेखन: २३.२ सिद्धांत - टेस्ट इंटरैक्टिव पायथन उदाहरण
मुझे अभी पता चला है कि मॉक लाइब्रेरी एक assertRaisesWithMessage () विधि (इसके unittest.TestCase उपवर्ग में) प्रदान करती है, जो न केवल यह जाँच करेगी कि अपेक्षित अपवाद उठाया गया है, बल्कि यह भी कि यह अपेक्षित संदेश के साथ उठाया गया है:
from testcase import TestCase
import mymod
class MyTestCase(TestCase):
def test1(self):
self.assertRaisesWithMessage(SomeCoolException,
'expected message',
mymod.myfunc)
यहाँ बहुत सारे उत्तर हैं। कोड दिखाता है कि हम एक अपवाद कैसे बना सकते हैं, हम अपने तरीकों में उस अपवाद का उपयोग कैसे कर सकते हैं, और अंत में, आप इकाई परीक्षण में कैसे सत्यापित कर सकते हैं, सही अपवाद उठाए जा रहे हैं।
import unittest
class DeviceException(Exception):
def __init__(self, msg, code):
self.msg = msg
self.code = code
def __str__(self):
return repr("Error {}: {}".format(self.code, self.msg))
class MyDevice(object):
def __init__(self):
self.name = 'DefaultName'
def setParameter(self, param, value):
if isinstance(value, str):
setattr(self, param , value)
else:
raise DeviceException('Incorrect type of argument passed. Name expects a string', 100001)
def getParameter(self, param):
return getattr(self, param)
class TestMyDevice(unittest.TestCase):
def setUp(self):
self.dev1 = MyDevice()
def tearDown(self):
del self.dev1
def test_name(self):
""" Test for valid input for name parameter """
self.dev1.setParameter('name', 'MyDevice')
name = self.dev1.getParameter('name')
self.assertEqual(name, 'MyDevice')
def test_invalid_name(self):
""" Test to check if error is raised if invalid type of input is provided """
self.assertRaises(DeviceException, self.dev1.setParameter, 'name', 1234)
def test_exception_message(self):
""" Test to check if correct exception message and code is raised when incorrect value is passed """
with self.assertRaises(DeviceException) as cm:
self.dev1.setParameter('name', 1234)
self.assertEqual(cm.exception.msg, 'Incorrect type of argument passed. Name expects a string', 'mismatch in expected error message')
self.assertEqual(cm.exception.code, 100001, 'mismatch in expected error code')
if __name__ == '__main__':
unittest.main()
आप unittest मॉड्यूल से assertRaises का उपयोग कर सकते हैं
import unittest
class TestClass():
def raises_exception(self):
raise Exception("test")
class MyTestCase(unittest.TestCase):
def test_if_method_raises_correct_exception(self):
test_class = TestClass()
# note that you dont use () when passing the method to assertRaises
self.assertRaises(Exception, test_class.raises_exception)
हालांकि सभी उत्तर पूरी तरह से ठीक हैं, मैं परीक्षण करने का एक तरीका ढूंढ रहा था कि क्या एक फ़ंक्शन ने यूनिट परीक्षण रूपरेखाओं पर भरोसा किए बिना और परीक्षण कक्षाएं लिखने के लिए बिना अपवाद उठाया।
मैंने निम्नलिखित लिखना समाप्त किया:
def assert_error(e, x):
try:
e(x)
except:
return
raise AssertionError()
def failing_function(x):
raise ValueError()
def dummy_function(x):
return x
if __name__=="__main__":
assert_error(failing_function, 0)
assert_error(dummy_function, 0)
और यह सही लाइन पर विफल रहता है:
Traceback (most recent call last):
File "assert_error.py", line 16, in <module>
assert_error(dummy_function, 0)
File "assert_error.py", line 6, in assert_error
raise AssertionError()
AssertionError