/functional_tests/test_xunit.py
https://bitbucket.org/jpellerin/nose/ · Python · 61 lines · 46 code · 10 blank · 5 comment · 2 complexity · a93234b7497a9617265073ed75102ecb MD5 · raw file
- # -*- coding: utf-8 -*-
- import codecs
- import os
- import sys
- import unittest
- from nose.plugins.xunit import Xunit
- from nose.plugins.skip import Skip
- from nose.plugins import PluginTester
- support = os.path.join(os.path.dirname(__file__), 'support')
- xml_results_filename = os.path.join(support, "xunit.xml")
- # the plugin is tested better in unit tests.
- # this is just here for a sanity check
-
- class TestXUnitPlugin(PluginTester, unittest.TestCase):
- activate = '--with-xunit'
- args = ['-v','--xunit-file=%s' % xml_results_filename]
- plugins = [Xunit(), Skip()]
- suitepath = os.path.join(support, 'xunit')
-
- def runTest(self):
- print str(self.output)
-
- assert "ERROR: test_error" in self.output
- assert "FAIL: test_fail" in self.output
- assert "test_skip (test_xunit_as_suite.TestForXunit) ... SKIP: skipit" in self.output
- assert "XML: %s" % xml_results_filename in self.output
-
- f = codecs.open(xml_results_filename,'r', encoding='utf8')
- result = f.read()
- f.close()
- print result.encode('utf8', 'replace')
-
- assert '<?xml version="1.0" encoding="UTF-8"?>' in result
- assert '<testsuite name="nosetests" tests="6" errors="2" failures="1" skip="1">' in result
- assert '<testcase classname="test_xunit_as_suite.TestForXunit" name="test_error" time="' in result
- # TODO(Kumar) think of better x-platform code here that
- # does not confuse 2to3
- if sys.version_info[0:2] >= (3,0):
- assert ('<error type="%s.Exception" message="日本">' % (Exception.__module__,)) in result
- else:
- assert ('<error type="%s.Exception" message="日本">' % (Exception.__module__,)).decode('utf8') in result
- assert '</testcase>' in result
- assert '</testsuite>' in result
- class TestIssue279(PluginTester, unittest.TestCase):
- activate = '--with-xunit'
- args = ['-v','--xunit-file=%s' % xml_results_filename]
- plugins = [Xunit(), Skip()]
- suitepath = os.path.join(support, 'issue279')
- def runTest(self):
- print str(self.output)
- f = open(xml_results_filename,'r')
- result = f.read()
- f.close()
- print result
- assert 'tests="1" errors="1" failures="0" skip="0"' in result
- assert "Exception: I would prefer not to" in result