/third_party/blink/web_tests/external/wpt/tools/third_party/pytest/testing/test_nose.py

http://github.com/chromium/chromium · Python · 433 lines · 260 code · 25 blank · 148 comment · 2 complexity · 8dafc8b4b446c549bb1ce1f1fbe59f89 MD5 · raw file

  1. from __future__ import absolute_import, division, print_function
  2. import pytest
  3. def setup_module(mod):
  4. mod.nose = pytest.importorskip("nose")
  5. def test_nose_setup(testdir):
  6. p = testdir.makepyfile(
  7. """
  8. values = []
  9. from nose.tools import with_setup
  10. @with_setup(lambda: values.append(1), lambda: values.append(2))
  11. def test_hello():
  12. assert values == [1]
  13. def test_world():
  14. assert values == [1,2]
  15. test_hello.setup = lambda: values.append(1)
  16. test_hello.teardown = lambda: values.append(2)
  17. """
  18. )
  19. result = testdir.runpytest(p, "-p", "nose")
  20. result.assert_outcomes(passed=2)
  21. def test_setup_func_with_setup_decorator():
  22. from _pytest.nose import call_optional
  23. values = []
  24. class A(object):
  25. @pytest.fixture(autouse=True)
  26. def f(self):
  27. values.append(1)
  28. call_optional(A(), "f")
  29. assert not values
  30. def test_setup_func_not_callable():
  31. from _pytest.nose import call_optional
  32. class A(object):
  33. f = 1
  34. call_optional(A(), "f")
  35. def test_nose_setup_func(testdir):
  36. p = testdir.makepyfile(
  37. """
  38. from nose.tools import with_setup
  39. values = []
  40. def my_setup():
  41. a = 1
  42. values.append(a)
  43. def my_teardown():
  44. b = 2
  45. values.append(b)
  46. @with_setup(my_setup, my_teardown)
  47. def test_hello():
  48. print (values)
  49. assert values == [1]
  50. def test_world():
  51. print (values)
  52. assert values == [1,2]
  53. """
  54. )
  55. result = testdir.runpytest(p, "-p", "nose")
  56. result.assert_outcomes(passed=2)
  57. def test_nose_setup_func_failure(testdir):
  58. p = testdir.makepyfile(
  59. """
  60. from nose.tools import with_setup
  61. values = []
  62. my_setup = lambda x: 1
  63. my_teardown = lambda x: 2
  64. @with_setup(my_setup, my_teardown)
  65. def test_hello():
  66. print (values)
  67. assert values == [1]
  68. def test_world():
  69. print (values)
  70. assert values == [1,2]
  71. """
  72. )
  73. result = testdir.runpytest(p, "-p", "nose")
  74. result.stdout.fnmatch_lines(["*TypeError: <lambda>()*"])
  75. def test_nose_setup_func_failure_2(testdir):
  76. testdir.makepyfile(
  77. """
  78. values = []
  79. my_setup = 1
  80. my_teardown = 2
  81. def test_hello():
  82. assert values == []
  83. test_hello.setup = my_setup
  84. test_hello.teardown = my_teardown
  85. """
  86. )
  87. reprec = testdir.inline_run()
  88. reprec.assertoutcome(passed=1)
  89. def test_nose_setup_partial(testdir):
  90. pytest.importorskip("functools")
  91. p = testdir.makepyfile(
  92. """
  93. from functools import partial
  94. values = []
  95. def my_setup(x):
  96. a = x
  97. values.append(a)
  98. def my_teardown(x):
  99. b = x
  100. values.append(b)
  101. my_setup_partial = partial(my_setup, 1)
  102. my_teardown_partial = partial(my_teardown, 2)
  103. def test_hello():
  104. print (values)
  105. assert values == [1]
  106. def test_world():
  107. print (values)
  108. assert values == [1,2]
  109. test_hello.setup = my_setup_partial
  110. test_hello.teardown = my_teardown_partial
  111. """
  112. )
  113. result = testdir.runpytest(p, "-p", "nose")
  114. result.stdout.fnmatch_lines(["*2 passed*"])
  115. def test_nose_test_generator_fixtures(testdir):
  116. p = testdir.makepyfile(
  117. """
  118. # taken from nose-0.11.1 unit_tests/test_generator_fixtures.py
  119. from nose.tools import eq_
  120. called = []
  121. def outer_setup():
  122. called.append('outer_setup')
  123. def outer_teardown():
  124. called.append('outer_teardown')
  125. def inner_setup():
  126. called.append('inner_setup')
  127. def inner_teardown():
  128. called.append('inner_teardown')
  129. def test_gen():
  130. called[:] = []
  131. for i in range(0, 5):
  132. yield check, i
  133. def check(i):
  134. expect = ['outer_setup']
  135. for x in range(0, i):
  136. expect.append('inner_setup')
  137. expect.append('inner_teardown')
  138. expect.append('inner_setup')
  139. eq_(called, expect)
  140. test_gen.setup = outer_setup
  141. test_gen.teardown = outer_teardown
  142. check.setup = inner_setup
  143. check.teardown = inner_teardown
  144. class TestClass(object):
  145. def setup(self):
  146. print ("setup called in %s" % self)
  147. self.called = ['setup']
  148. def teardown(self):
  149. print ("teardown called in %s" % self)
  150. eq_(self.called, ['setup'])
  151. self.called.append('teardown')
  152. def test(self):
  153. print ("test called in %s" % self)
  154. for i in range(0, 5):
  155. yield self.check, i
  156. def check(self, i):
  157. print ("check called in %s" % self)
  158. expect = ['setup']
  159. #for x in range(0, i):
  160. # expect.append('setup')
  161. # expect.append('teardown')
  162. #expect.append('setup')
  163. eq_(self.called, expect)
  164. """
  165. )
  166. result = testdir.runpytest(p, "-p", "nose")
  167. result.stdout.fnmatch_lines(["*10 passed*"])
  168. def test_module_level_setup(testdir):
  169. testdir.makepyfile(
  170. """
  171. from nose.tools import with_setup
  172. items = {}
  173. def setup():
  174. items[1]=1
  175. def teardown():
  176. del items[1]
  177. def setup2():
  178. items[2] = 2
  179. def teardown2():
  180. del items[2]
  181. def test_setup_module_setup():
  182. assert items[1] == 1
  183. @with_setup(setup2, teardown2)
  184. def test_local_setup():
  185. assert items[2] == 2
  186. assert 1 not in items
  187. """
  188. )
  189. result = testdir.runpytest("-p", "nose")
  190. result.stdout.fnmatch_lines(["*2 passed*"])
  191. def test_nose_style_setup_teardown(testdir):
  192. testdir.makepyfile(
  193. """
  194. values = []
  195. def setup_module():
  196. values.append(1)
  197. def teardown_module():
  198. del values[0]
  199. def test_hello():
  200. assert values == [1]
  201. def test_world():
  202. assert values == [1]
  203. """
  204. )
  205. result = testdir.runpytest("-p", "nose")
  206. result.stdout.fnmatch_lines(["*2 passed*"])
  207. def test_nose_setup_ordering(testdir):
  208. testdir.makepyfile(
  209. """
  210. def setup_module(mod):
  211. mod.visited = True
  212. class TestClass(object):
  213. def setup(self):
  214. assert visited
  215. def test_first(self):
  216. pass
  217. """
  218. )
  219. result = testdir.runpytest()
  220. result.stdout.fnmatch_lines(["*1 passed*"])
  221. def test_apiwrapper_problem_issue260(testdir):
  222. # this would end up trying a call an optional teardown on the class
  223. # for plain unittests we dont want nose behaviour
  224. testdir.makepyfile(
  225. """
  226. import unittest
  227. class TestCase(unittest.TestCase):
  228. def setup(self):
  229. #should not be called in unittest testcases
  230. assert 0, 'setup'
  231. def teardown(self):
  232. #should not be called in unittest testcases
  233. assert 0, 'teardown'
  234. def setUp(self):
  235. print('setup')
  236. def tearDown(self):
  237. print('teardown')
  238. def test_fun(self):
  239. pass
  240. """
  241. )
  242. result = testdir.runpytest()
  243. result.assert_outcomes(passed=1)
  244. def test_setup_teardown_linking_issue265(testdir):
  245. # we accidentally didnt integrate nose setupstate with normal setupstate
  246. # this test ensures that won't happen again
  247. testdir.makepyfile(
  248. '''
  249. import pytest
  250. class TestGeneric(object):
  251. def test_nothing(self):
  252. """Tests the API of the implementation (for generic and specialized)."""
  253. @pytest.mark.skipif("True", reason=
  254. "Skip tests to check if teardown is skipped as well.")
  255. class TestSkipTeardown(TestGeneric):
  256. def setup(self):
  257. """Sets up my specialized implementation for $COOL_PLATFORM."""
  258. raise Exception("should not call setup for skipped tests")
  259. def teardown(self):
  260. """Undoes the setup."""
  261. raise Exception("should not call teardown for skipped tests")
  262. '''
  263. )
  264. reprec = testdir.runpytest()
  265. reprec.assert_outcomes(passed=1, skipped=1)
  266. def test_SkipTest_during_collection(testdir):
  267. p = testdir.makepyfile(
  268. """
  269. import nose
  270. raise nose.SkipTest("during collection")
  271. def test_failing():
  272. assert False
  273. """
  274. )
  275. result = testdir.runpytest(p)
  276. result.assert_outcomes(skipped=1)
  277. def test_SkipTest_in_test(testdir):
  278. testdir.makepyfile(
  279. """
  280. import nose
  281. def test_skipping():
  282. raise nose.SkipTest("in test")
  283. """
  284. )
  285. reprec = testdir.inline_run()
  286. reprec.assertoutcome(skipped=1)
  287. def test_istest_function_decorator(testdir):
  288. p = testdir.makepyfile(
  289. """
  290. import nose.tools
  291. @nose.tools.istest
  292. def not_test_prefix():
  293. pass
  294. """
  295. )
  296. result = testdir.runpytest(p)
  297. result.assert_outcomes(passed=1)
  298. def test_nottest_function_decorator(testdir):
  299. testdir.makepyfile(
  300. """
  301. import nose.tools
  302. @nose.tools.nottest
  303. def test_prefix():
  304. pass
  305. """
  306. )
  307. reprec = testdir.inline_run()
  308. assert not reprec.getfailedcollections()
  309. calls = reprec.getreports("pytest_runtest_logreport")
  310. assert not calls
  311. def test_istest_class_decorator(testdir):
  312. p = testdir.makepyfile(
  313. """
  314. import nose.tools
  315. @nose.tools.istest
  316. class NotTestPrefix(object):
  317. def test_method(self):
  318. pass
  319. """
  320. )
  321. result = testdir.runpytest(p)
  322. result.assert_outcomes(passed=1)
  323. def test_nottest_class_decorator(testdir):
  324. testdir.makepyfile(
  325. """
  326. import nose.tools
  327. @nose.tools.nottest
  328. class TestPrefix(object):
  329. def test_method(self):
  330. pass
  331. """
  332. )
  333. reprec = testdir.inline_run()
  334. assert not reprec.getfailedcollections()
  335. calls = reprec.getreports("pytest_runtest_logreport")
  336. assert not calls