Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 1 | from contextlib import contextmanager |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 2 | import linecache |
Raymond Hettinger | dc9dcf1 | 2003-07-13 06:15:11 +0000 | [diff] [blame] | 3 | import os |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 4 | from io import StringIO |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 5 | import sys |
Raymond Hettinger | d6f6e50 | 2003-07-13 08:37:40 +0000 | [diff] [blame] | 6 | import unittest |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 7 | from test import support |
Antoine Pitrou | cf9f980 | 2010-11-10 13:55:25 +0000 | [diff] [blame] | 8 | from test.script_helper import assert_python_ok |
Jeremy Hylton | 8501466 | 2003-07-11 15:37:59 +0000 | [diff] [blame] | 9 | |
Guido van Rossum | 805365e | 2007-05-07 22:24:25 +0000 | [diff] [blame] | 10 | from test import warning_tests |
Jeremy Hylton | 8501466 | 2003-07-11 15:37:59 +0000 | [diff] [blame] | 11 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 12 | import warnings as original_warnings |
Jeremy Hylton | 8501466 | 2003-07-11 15:37:59 +0000 | [diff] [blame] | 13 | |
Nick Coghlan | 4738470 | 2009-04-22 16:13:36 +0000 | [diff] [blame] | 14 | py_warnings = support.import_fresh_module('warnings', blocked=['_warnings']) |
| 15 | c_warnings = support.import_fresh_module('warnings', fresh=['_warnings']) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 16 | |
| 17 | @contextmanager |
| 18 | def warnings_state(module): |
| 19 | """Use a specific warnings implementation in warning_tests.""" |
| 20 | global __warningregistry__ |
| 21 | for to_clear in (sys, warning_tests): |
| 22 | try: |
| 23 | to_clear.__warningregistry__.clear() |
| 24 | except AttributeError: |
| 25 | pass |
| 26 | try: |
| 27 | __warningregistry__.clear() |
| 28 | except NameError: |
| 29 | pass |
| 30 | original_warnings = warning_tests.warnings |
Florent Xicluna | fd1b093 | 2010-03-28 00:25:02 +0000 | [diff] [blame] | 31 | original_filters = module.filters |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 32 | try: |
Florent Xicluna | fd1b093 | 2010-03-28 00:25:02 +0000 | [diff] [blame] | 33 | module.filters = original_filters[:] |
| 34 | module.simplefilter("once") |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 35 | warning_tests.warnings = module |
| 36 | yield |
| 37 | finally: |
| 38 | warning_tests.warnings = original_warnings |
Florent Xicluna | fd1b093 | 2010-03-28 00:25:02 +0000 | [diff] [blame] | 39 | module.filters = original_filters |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 40 | |
| 41 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 42 | class BaseTest: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 43 | |
| 44 | """Basic bookkeeping required for testing.""" |
| 45 | |
| 46 | def setUp(self): |
| 47 | # The __warningregistry__ needs to be in a pristine state for tests |
| 48 | # to work properly. |
| 49 | if '__warningregistry__' in globals(): |
| 50 | del globals()['__warningregistry__'] |
| 51 | if hasattr(warning_tests, '__warningregistry__'): |
| 52 | del warning_tests.__warningregistry__ |
| 53 | if hasattr(sys, '__warningregistry__'): |
| 54 | del sys.__warningregistry__ |
| 55 | # The 'warnings' module must be explicitly set so that the proper |
| 56 | # interaction between _warnings and 'warnings' can be controlled. |
| 57 | sys.modules['warnings'] = self.module |
| 58 | super(BaseTest, self).setUp() |
| 59 | |
| 60 | def tearDown(self): |
| 61 | sys.modules['warnings'] = original_warnings |
| 62 | super(BaseTest, self).tearDown() |
| 63 | |
Brett Cannon | 14ad531 | 2014-08-22 10:44:47 -0400 | [diff] [blame] | 64 | class PublicAPITests(BaseTest): |
| 65 | |
| 66 | """Ensures that the correct values are exposed in the |
| 67 | public API. |
| 68 | """ |
| 69 | |
| 70 | def test_module_all_attribute(self): |
| 71 | self.assertTrue(hasattr(self.module, '__all__')) |
| 72 | target_api = ["warn", "warn_explicit", "showwarning", |
| 73 | "formatwarning", "filterwarnings", "simplefilter", |
| 74 | "resetwarnings", "catch_warnings"] |
| 75 | self.assertSetEqual(set(self.module.__all__), |
| 76 | set(target_api)) |
| 77 | |
| 78 | class CPublicAPITests(PublicAPITests, unittest.TestCase): |
| 79 | module = c_warnings |
| 80 | |
| 81 | class PyPublicAPITests(PublicAPITests, unittest.TestCase): |
| 82 | module = py_warnings |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 83 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 84 | class FilterTests(BaseTest): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 85 | |
| 86 | """Testing the filtering functionality.""" |
| 87 | |
| 88 | def test_error(self): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 89 | with original_warnings.catch_warnings(module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 90 | self.module.resetwarnings() |
| 91 | self.module.filterwarnings("error", category=UserWarning) |
| 92 | self.assertRaises(UserWarning, self.module.warn, |
| 93 | "FilterTests.test_error") |
| 94 | |
| 95 | def test_ignore(self): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 96 | with original_warnings.catch_warnings(record=True, |
| 97 | module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 98 | self.module.resetwarnings() |
| 99 | self.module.filterwarnings("ignore", category=UserWarning) |
| 100 | self.module.warn("FilterTests.test_ignore", UserWarning) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 101 | self.assertEqual(len(w), 0) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 102 | |
| 103 | def test_always(self): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 104 | with original_warnings.catch_warnings(record=True, |
| 105 | module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 106 | self.module.resetwarnings() |
| 107 | self.module.filterwarnings("always", category=UserWarning) |
| 108 | message = "FilterTests.test_always" |
| 109 | self.module.warn(message, UserWarning) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 110 | self.assertTrue(message, w[-1].message) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 111 | self.module.warn(message, UserWarning) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 112 | self.assertTrue(w[-1].message, message) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 113 | |
| 114 | def test_default(self): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 115 | with original_warnings.catch_warnings(record=True, |
| 116 | module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 117 | self.module.resetwarnings() |
| 118 | self.module.filterwarnings("default", category=UserWarning) |
| 119 | message = UserWarning("FilterTests.test_default") |
| 120 | for x in range(2): |
| 121 | self.module.warn(message, UserWarning) |
| 122 | if x == 0: |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 123 | self.assertEqual(w[-1].message, message) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 124 | del w[:] |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 125 | elif x == 1: |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 126 | self.assertEqual(len(w), 0) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 127 | else: |
| 128 | raise ValueError("loop variant unhandled") |
| 129 | |
| 130 | def test_module(self): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 131 | with original_warnings.catch_warnings(record=True, |
| 132 | module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 133 | self.module.resetwarnings() |
| 134 | self.module.filterwarnings("module", category=UserWarning) |
| 135 | message = UserWarning("FilterTests.test_module") |
| 136 | self.module.warn(message, UserWarning) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 137 | self.assertEqual(w[-1].message, message) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 138 | del w[:] |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 139 | self.module.warn(message, UserWarning) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 140 | self.assertEqual(len(w), 0) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 141 | |
| 142 | def test_once(self): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 143 | with original_warnings.catch_warnings(record=True, |
| 144 | module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 145 | self.module.resetwarnings() |
| 146 | self.module.filterwarnings("once", category=UserWarning) |
| 147 | message = UserWarning("FilterTests.test_once") |
| 148 | self.module.warn_explicit(message, UserWarning, "test_warnings.py", |
| 149 | 42) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 150 | self.assertEqual(w[-1].message, message) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 151 | del w[:] |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 152 | self.module.warn_explicit(message, UserWarning, "test_warnings.py", |
| 153 | 13) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 154 | self.assertEqual(len(w), 0) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 155 | self.module.warn_explicit(message, UserWarning, "test_warnings2.py", |
| 156 | 42) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 157 | self.assertEqual(len(w), 0) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 158 | |
| 159 | def test_inheritance(self): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 160 | with original_warnings.catch_warnings(module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 161 | self.module.resetwarnings() |
| 162 | self.module.filterwarnings("error", category=Warning) |
| 163 | self.assertRaises(UserWarning, self.module.warn, |
| 164 | "FilterTests.test_inheritance", UserWarning) |
| 165 | |
| 166 | def test_ordering(self): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 167 | with original_warnings.catch_warnings(record=True, |
| 168 | module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 169 | self.module.resetwarnings() |
| 170 | self.module.filterwarnings("ignore", category=UserWarning) |
| 171 | self.module.filterwarnings("error", category=UserWarning, |
| 172 | append=True) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 173 | del w[:] |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 174 | try: |
| 175 | self.module.warn("FilterTests.test_ordering", UserWarning) |
| 176 | except UserWarning: |
| 177 | self.fail("order handling for actions failed") |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 178 | self.assertEqual(len(w), 0) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 179 | |
| 180 | def test_filterwarnings(self): |
| 181 | # Test filterwarnings(). |
| 182 | # Implicitly also tests resetwarnings(). |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 183 | with original_warnings.catch_warnings(record=True, |
| 184 | module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 185 | self.module.filterwarnings("error", "", Warning, "", 0) |
| 186 | self.assertRaises(UserWarning, self.module.warn, 'convert to error') |
| 187 | |
| 188 | self.module.resetwarnings() |
| 189 | text = 'handle normally' |
| 190 | self.module.warn(text) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 191 | self.assertEqual(str(w[-1].message), text) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 192 | self.assertTrue(w[-1].category is UserWarning) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 193 | |
| 194 | self.module.filterwarnings("ignore", "", Warning, "", 0) |
| 195 | text = 'filtered out' |
| 196 | self.module.warn(text) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 197 | self.assertNotEqual(str(w[-1].message), text) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 198 | |
| 199 | self.module.resetwarnings() |
| 200 | self.module.filterwarnings("error", "hex*", Warning, "", 0) |
| 201 | self.assertRaises(UserWarning, self.module.warn, 'hex/oct') |
| 202 | text = 'nonmatching text' |
| 203 | self.module.warn(text) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 204 | self.assertEqual(str(w[-1].message), text) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 205 | self.assertTrue(w[-1].category is UserWarning) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 206 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 207 | class CFilterTests(FilterTests, unittest.TestCase): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 208 | module = c_warnings |
| 209 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 210 | class PyFilterTests(FilterTests, unittest.TestCase): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 211 | module = py_warnings |
| 212 | |
| 213 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 214 | class WarnTests(BaseTest): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 215 | |
| 216 | """Test warnings.warn() and warnings.warn_explicit().""" |
| 217 | |
| 218 | def test_message(self): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 219 | with original_warnings.catch_warnings(record=True, |
| 220 | module=self.module) as w: |
Florent Xicluna | fd1b093 | 2010-03-28 00:25:02 +0000 | [diff] [blame] | 221 | self.module.simplefilter("once") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 222 | for i in range(4): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 223 | text = 'multi %d' %i # Different text on each call. |
| 224 | self.module.warn(text) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 225 | self.assertEqual(str(w[-1].message), text) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 226 | self.assertTrue(w[-1].category is UserWarning) |
Raymond Hettinger | d6f6e50 | 2003-07-13 08:37:40 +0000 | [diff] [blame] | 227 | |
Brett Cannon | 54bd41d | 2008-09-02 04:01:42 +0000 | [diff] [blame] | 228 | # Issue 3639 |
| 229 | def test_warn_nonstandard_types(self): |
| 230 | # warn() should handle non-standard types without issue. |
| 231 | for ob in (Warning, None, 42): |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 232 | with original_warnings.catch_warnings(record=True, |
| 233 | module=self.module) as w: |
Florent Xicluna | fd1b093 | 2010-03-28 00:25:02 +0000 | [diff] [blame] | 234 | self.module.simplefilter("once") |
Brett Cannon | 54bd41d | 2008-09-02 04:01:42 +0000 | [diff] [blame] | 235 | self.module.warn(ob) |
| 236 | # Don't directly compare objects since |
| 237 | # ``Warning() != Warning()``. |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 238 | self.assertEqual(str(w[-1].message), str(UserWarning(ob))) |
Brett Cannon | 54bd41d | 2008-09-02 04:01:42 +0000 | [diff] [blame] | 239 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 240 | def test_filename(self): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 241 | with warnings_state(self.module): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 242 | with original_warnings.catch_warnings(record=True, |
| 243 | module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 244 | warning_tests.inner("spam1") |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 245 | self.assertEqual(os.path.basename(w[-1].filename), |
| 246 | "warning_tests.py") |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 247 | warning_tests.outer("spam2") |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 248 | self.assertEqual(os.path.basename(w[-1].filename), |
| 249 | "warning_tests.py") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 250 | |
| 251 | def test_stacklevel(self): |
| 252 | # Test stacklevel argument |
| 253 | # make sure all messages are different, so the warning won't be skipped |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 254 | with warnings_state(self.module): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 255 | with original_warnings.catch_warnings(record=True, |
| 256 | module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 257 | warning_tests.inner("spam3", stacklevel=1) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 258 | self.assertEqual(os.path.basename(w[-1].filename), |
| 259 | "warning_tests.py") |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 260 | warning_tests.outer("spam4", stacklevel=1) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 261 | self.assertEqual(os.path.basename(w[-1].filename), |
| 262 | "warning_tests.py") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 263 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 264 | warning_tests.inner("spam5", stacklevel=2) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 265 | self.assertEqual(os.path.basename(w[-1].filename), |
| 266 | "test_warnings.py") |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 267 | warning_tests.outer("spam6", stacklevel=2) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 268 | self.assertEqual(os.path.basename(w[-1].filename), |
| 269 | "warning_tests.py") |
Christian Heimes | 5d8da20 | 2008-05-06 13:58:24 +0000 | [diff] [blame] | 270 | warning_tests.outer("spam6.5", stacklevel=3) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 271 | self.assertEqual(os.path.basename(w[-1].filename), |
| 272 | "test_warnings.py") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 273 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 274 | warning_tests.inner("spam7", stacklevel=9999) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 275 | self.assertEqual(os.path.basename(w[-1].filename), |
| 276 | "sys") |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 277 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 278 | def test_missing_filename_not_main(self): |
| 279 | # If __file__ is not specified and __main__ is not the module name, |
| 280 | # then __file__ should be set to the module name. |
| 281 | filename = warning_tests.__file__ |
| 282 | try: |
| 283 | del warning_tests.__file__ |
| 284 | with warnings_state(self.module): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 285 | with original_warnings.catch_warnings(record=True, |
| 286 | module=self.module) as w: |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 287 | warning_tests.inner("spam8", stacklevel=1) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 288 | self.assertEqual(w[-1].filename, warning_tests.__name__) |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 289 | finally: |
| 290 | warning_tests.__file__ = filename |
| 291 | |
Serhiy Storchaka | 4376763 | 2013-11-03 21:31:38 +0200 | [diff] [blame] | 292 | @unittest.skipUnless(hasattr(sys, 'argv'), 'test needs sys.argv') |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 293 | def test_missing_filename_main_with_argv(self): |
| 294 | # If __file__ is not specified and the caller is __main__ and sys.argv |
| 295 | # exists, then use sys.argv[0] as the file. |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 296 | filename = warning_tests.__file__ |
| 297 | module_name = warning_tests.__name__ |
| 298 | try: |
| 299 | del warning_tests.__file__ |
| 300 | warning_tests.__name__ = '__main__' |
| 301 | with warnings_state(self.module): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 302 | with original_warnings.catch_warnings(record=True, |
| 303 | module=self.module) as w: |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 304 | warning_tests.inner('spam9', stacklevel=1) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 305 | self.assertEqual(w[-1].filename, sys.argv[0]) |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 306 | finally: |
| 307 | warning_tests.__file__ = filename |
| 308 | warning_tests.__name__ = module_name |
| 309 | |
| 310 | def test_missing_filename_main_without_argv(self): |
| 311 | # If __file__ is not specified, the caller is __main__, and sys.argv |
| 312 | # is not set, then '__main__' is the file name. |
| 313 | filename = warning_tests.__file__ |
| 314 | module_name = warning_tests.__name__ |
| 315 | argv = sys.argv |
| 316 | try: |
| 317 | del warning_tests.__file__ |
| 318 | warning_tests.__name__ = '__main__' |
| 319 | del sys.argv |
| 320 | with warnings_state(self.module): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 321 | with original_warnings.catch_warnings(record=True, |
| 322 | module=self.module) as w: |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 323 | warning_tests.inner('spam10', stacklevel=1) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 324 | self.assertEqual(w[-1].filename, '__main__') |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 325 | finally: |
| 326 | warning_tests.__file__ = filename |
| 327 | warning_tests.__name__ = module_name |
| 328 | sys.argv = argv |
| 329 | |
Christian Heimes | daaf8ee | 2008-05-04 23:58:41 +0000 | [diff] [blame] | 330 | def test_missing_filename_main_with_argv_empty_string(self): |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 331 | # If __file__ is not specified, the caller is __main__, and sys.argv[0] |
| 332 | # is the empty string, then '__main__ is the file name. |
| 333 | # Tests issue 2743. |
| 334 | file_name = warning_tests.__file__ |
| 335 | module_name = warning_tests.__name__ |
| 336 | argv = sys.argv |
| 337 | try: |
| 338 | del warning_tests.__file__ |
| 339 | warning_tests.__name__ = '__main__' |
| 340 | sys.argv = [''] |
| 341 | with warnings_state(self.module): |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 342 | with original_warnings.catch_warnings(record=True, |
| 343 | module=self.module) as w: |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 344 | warning_tests.inner('spam11', stacklevel=1) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 345 | self.assertEqual(w[-1].filename, '__main__') |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 346 | finally: |
| 347 | warning_tests.__file__ = file_name |
| 348 | warning_tests.__name__ = module_name |
| 349 | sys.argv = argv |
| 350 | |
Victor Stinner | a4c704b | 2013-10-29 23:43:41 +0100 | [diff] [blame] | 351 | def test_warn_explicit_non_ascii_filename(self): |
| 352 | with original_warnings.catch_warnings(record=True, |
| 353 | module=self.module) as w: |
| 354 | self.module.resetwarnings() |
| 355 | self.module.filterwarnings("always", category=UserWarning) |
Victor Stinner | c0e07a3 | 2013-10-29 23:58:05 +0100 | [diff] [blame] | 356 | for filename in ("nonascii\xe9\u20ac", "surrogate\udc80"): |
| 357 | try: |
| 358 | os.fsencode(filename) |
| 359 | except UnicodeEncodeError: |
| 360 | continue |
| 361 | self.module.warn_explicit("text", UserWarning, filename, 1) |
| 362 | self.assertEqual(w[-1].filename, filename) |
Victor Stinner | a4c704b | 2013-10-29 23:43:41 +0100 | [diff] [blame] | 363 | |
Brett Cannon | db73491 | 2008-06-27 00:52:15 +0000 | [diff] [blame] | 364 | def test_warn_explicit_type_errors(self): |
Ezio Melotti | 1392500 | 2011-03-16 11:05:33 +0200 | [diff] [blame] | 365 | # warn_explicit() should error out gracefully if it is given objects |
Brett Cannon | db73491 | 2008-06-27 00:52:15 +0000 | [diff] [blame] | 366 | # of the wrong types. |
| 367 | # lineno is expected to be an integer. |
| 368 | self.assertRaises(TypeError, self.module.warn_explicit, |
| 369 | None, UserWarning, None, None) |
| 370 | # Either 'message' needs to be an instance of Warning or 'category' |
| 371 | # needs to be a subclass. |
| 372 | self.assertRaises(TypeError, self.module.warn_explicit, |
| 373 | None, None, None, 1) |
| 374 | # 'registry' must be a dict or None. |
| 375 | self.assertRaises((TypeError, AttributeError), |
| 376 | self.module.warn_explicit, |
| 377 | None, Warning, None, 1, registry=42) |
| 378 | |
Hirokazu Yamamoto | 1c0c003 | 2009-07-17 06:55:42 +0000 | [diff] [blame] | 379 | def test_bad_str(self): |
| 380 | # issue 6415 |
| 381 | # Warnings instance with a bad format string for __str__ should not |
| 382 | # trigger a bus error. |
| 383 | class BadStrWarning(Warning): |
| 384 | """Warning with a bad format string for __str__.""" |
| 385 | def __str__(self): |
| 386 | return ("A bad formatted string %(err)" % |
| 387 | {"err" : "there is no %(err)s"}) |
| 388 | |
| 389 | with self.assertRaises(ValueError): |
| 390 | self.module.warn(BadStrWarning()) |
| 391 | |
| 392 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 393 | class CWarnTests(WarnTests, unittest.TestCase): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 394 | module = c_warnings |
| 395 | |
Nick Coghlan | fce769e | 2009-04-11 14:30:59 +0000 | [diff] [blame] | 396 | # As an early adopter, we sanity check the |
| 397 | # test.support.import_fresh_module utility function |
| 398 | def test_accelerated(self): |
| 399 | self.assertFalse(original_warnings is self.module) |
| 400 | self.assertFalse(hasattr(self.module.warn, '__code__')) |
| 401 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 402 | class PyWarnTests(WarnTests, unittest.TestCase): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 403 | module = py_warnings |
| 404 | |
Nick Coghlan | fce769e | 2009-04-11 14:30:59 +0000 | [diff] [blame] | 405 | # As an early adopter, we sanity check the |
| 406 | # test.support.import_fresh_module utility function |
| 407 | def test_pure_python(self): |
| 408 | self.assertFalse(original_warnings is self.module) |
| 409 | self.assertTrue(hasattr(self.module.warn, '__code__')) |
| 410 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 411 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 412 | class WCmdLineTests(BaseTest): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 413 | |
| 414 | def test_improper_input(self): |
| 415 | # Uses the private _setoption() function to test the parsing |
| 416 | # of command-line warning arguments |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 417 | with original_warnings.catch_warnings(module=self.module): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 418 | self.assertRaises(self.module._OptionError, |
| 419 | self.module._setoption, '1:2:3:4:5:6') |
| 420 | self.assertRaises(self.module._OptionError, |
| 421 | self.module._setoption, 'bogus::Warning') |
| 422 | self.assertRaises(self.module._OptionError, |
| 423 | self.module._setoption, 'ignore:2::4:-5') |
| 424 | self.module._setoption('error::Warning::0') |
| 425 | self.assertRaises(UserWarning, self.module.warn, 'convert to error') |
| 426 | |
Antoine Pitrou | cf9f980 | 2010-11-10 13:55:25 +0000 | [diff] [blame] | 427 | def test_improper_option(self): |
| 428 | # Same as above, but check that the message is printed out when |
| 429 | # the interpreter is executed. This also checks that options are |
| 430 | # actually parsed at all. |
| 431 | rc, out, err = assert_python_ok("-Wxxx", "-c", "pass") |
| 432 | self.assertIn(b"Invalid -W option ignored: invalid action: 'xxx'", err) |
| 433 | |
| 434 | def test_warnings_bootstrap(self): |
| 435 | # Check that the warnings module does get loaded when -W<some option> |
| 436 | # is used (see issue #10372 for an example of silent bootstrap failure). |
| 437 | rc, out, err = assert_python_ok("-Wi", "-c", |
| 438 | "import sys; sys.modules['warnings'].warn('foo', RuntimeWarning)") |
| 439 | # '-Wi' was observed |
| 440 | self.assertFalse(out.strip()) |
| 441 | self.assertNotIn(b'RuntimeWarning', err) |
| 442 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 443 | class CWCmdLineTests(WCmdLineTests, unittest.TestCase): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 444 | module = c_warnings |
| 445 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 446 | class PyWCmdLineTests(WCmdLineTests, unittest.TestCase): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 447 | module = py_warnings |
| 448 | |
| 449 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 450 | class _WarningsTests(BaseTest, unittest.TestCase): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 451 | |
| 452 | """Tests specific to the _warnings module.""" |
| 453 | |
| 454 | module = c_warnings |
| 455 | |
| 456 | def test_filter(self): |
| 457 | # Everything should function even if 'filters' is not in warnings. |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 458 | with original_warnings.catch_warnings(module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 459 | self.module.filterwarnings("error", "", Warning, "", 0) |
| 460 | self.assertRaises(UserWarning, self.module.warn, |
| 461 | 'convert to error') |
| 462 | del self.module.filters |
| 463 | self.assertRaises(UserWarning, self.module.warn, |
| 464 | 'convert to error') |
| 465 | |
| 466 | def test_onceregistry(self): |
| 467 | # Replacing or removing the onceregistry should be okay. |
| 468 | global __warningregistry__ |
| 469 | message = UserWarning('onceregistry test') |
| 470 | try: |
| 471 | original_registry = self.module.onceregistry |
| 472 | __warningregistry__ = {} |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 473 | with original_warnings.catch_warnings(record=True, |
| 474 | module=self.module) as w: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 475 | self.module.resetwarnings() |
| 476 | self.module.filterwarnings("once", category=UserWarning) |
| 477 | self.module.warn_explicit(message, UserWarning, "file", 42) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 478 | self.assertEqual(w[-1].message, message) |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 479 | del w[:] |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 480 | self.module.warn_explicit(message, UserWarning, "file", 42) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 481 | self.assertEqual(len(w), 0) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 482 | # Test the resetting of onceregistry. |
| 483 | self.module.onceregistry = {} |
| 484 | __warningregistry__ = {} |
| 485 | self.module.warn('onceregistry test') |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 486 | self.assertEqual(w[-1].message.args, message.args) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 487 | # Removal of onceregistry is okay. |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 488 | del w[:] |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 489 | del self.module.onceregistry |
| 490 | __warningregistry__ = {} |
| 491 | self.module.warn_explicit(message, UserWarning, "file", 42) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 492 | self.assertEqual(len(w), 0) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 493 | finally: |
| 494 | self.module.onceregistry = original_registry |
| 495 | |
Brett Cannon | 0759dd6 | 2009-04-01 18:13:07 +0000 | [diff] [blame] | 496 | def test_default_action(self): |
| 497 | # Replacing or removing defaultaction should be okay. |
| 498 | message = UserWarning("defaultaction test") |
| 499 | original = self.module.defaultaction |
| 500 | try: |
| 501 | with original_warnings.catch_warnings(record=True, |
| 502 | module=self.module) as w: |
| 503 | self.module.resetwarnings() |
| 504 | registry = {} |
| 505 | self.module.warn_explicit(message, UserWarning, "<test>", 42, |
| 506 | registry=registry) |
| 507 | self.assertEqual(w[-1].message, message) |
| 508 | self.assertEqual(len(w), 1) |
| 509 | self.assertEqual(len(registry), 1) |
| 510 | del w[:] |
| 511 | # Test removal. |
| 512 | del self.module.defaultaction |
| 513 | __warningregistry__ = {} |
| 514 | registry = {} |
| 515 | self.module.warn_explicit(message, UserWarning, "<test>", 43, |
| 516 | registry=registry) |
| 517 | self.assertEqual(w[-1].message, message) |
| 518 | self.assertEqual(len(w), 1) |
| 519 | self.assertEqual(len(registry), 1) |
| 520 | del w[:] |
| 521 | # Test setting. |
| 522 | self.module.defaultaction = "ignore" |
| 523 | __warningregistry__ = {} |
| 524 | registry = {} |
| 525 | self.module.warn_explicit(message, UserWarning, "<test>", 44, |
| 526 | registry=registry) |
| 527 | self.assertEqual(len(w), 0) |
| 528 | finally: |
| 529 | self.module.defaultaction = original |
| 530 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 531 | def test_showwarning_missing(self): |
| 532 | # Test that showwarning() missing is okay. |
| 533 | text = 'del showwarning test' |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 534 | with original_warnings.catch_warnings(module=self.module): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 535 | self.module.filterwarnings("always", category=UserWarning) |
| 536 | del self.module.showwarning |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 537 | with support.captured_output('stderr') as stream: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 538 | self.module.warn(text) |
| 539 | result = stream.getvalue() |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 540 | self.assertIn(text, result) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 541 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 542 | def test_showwarning_not_callable(self): |
Brett Cannon | fcc0527 | 2009-04-01 20:27:29 +0000 | [diff] [blame] | 543 | with original_warnings.catch_warnings(module=self.module): |
| 544 | self.module.filterwarnings("always", category=UserWarning) |
Brett Cannon | 52a7d98 | 2011-07-17 19:17:55 -0700 | [diff] [blame] | 545 | self.module.showwarning = print |
| 546 | with support.captured_output('stdout'): |
| 547 | self.module.warn('Warning!') |
Brett Cannon | fcc0527 | 2009-04-01 20:27:29 +0000 | [diff] [blame] | 548 | self.module.showwarning = 23 |
Brett Cannon | 52a7d98 | 2011-07-17 19:17:55 -0700 | [diff] [blame] | 549 | self.assertRaises(TypeError, self.module.warn, "Warning!") |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 550 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 551 | def test_show_warning_output(self): |
| 552 | # With showarning() missing, make sure that output is okay. |
| 553 | text = 'test show_warning' |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 554 | with original_warnings.catch_warnings(module=self.module): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 555 | self.module.filterwarnings("always", category=UserWarning) |
| 556 | del self.module.showwarning |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 557 | with support.captured_output('stderr') as stream: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 558 | warning_tests.inner(text) |
| 559 | result = stream.getvalue() |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 560 | self.assertEqual(result.count('\n'), 2, |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 561 | "Too many newlines in %r" % result) |
| 562 | first_line, second_line = result.split('\n', 1) |
| 563 | expected_file = os.path.splitext(warning_tests.__file__)[0] + '.py' |
Neal Norwitz | 32dde22 | 2008-04-15 06:43:13 +0000 | [diff] [blame] | 564 | first_line_parts = first_line.rsplit(':', 3) |
| 565 | path, line, warning_class, message = first_line_parts |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 566 | line = int(line) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 567 | self.assertEqual(expected_file, path) |
| 568 | self.assertEqual(warning_class, ' ' + UserWarning.__name__) |
| 569 | self.assertEqual(message, ' ' + text) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 570 | expected_line = ' ' + linecache.getline(path, line).strip() + '\n' |
| 571 | assert expected_line |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 572 | self.assertEqual(second_line, expected_line) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 573 | |
Victor Stinner | 8b0508e | 2011-07-04 02:43:09 +0200 | [diff] [blame] | 574 | def test_filename_none(self): |
| 575 | # issue #12467: race condition if a warning is emitted at shutdown |
| 576 | globals_dict = globals() |
| 577 | oldfile = globals_dict['__file__'] |
| 578 | try: |
Brett Cannon | 52a7d98 | 2011-07-17 19:17:55 -0700 | [diff] [blame] | 579 | catch = original_warnings.catch_warnings(record=True, |
| 580 | module=self.module) |
| 581 | with catch as w: |
Victor Stinner | 8b0508e | 2011-07-04 02:43:09 +0200 | [diff] [blame] | 582 | self.module.filterwarnings("always", category=UserWarning) |
| 583 | globals_dict['__file__'] = None |
| 584 | original_warnings.warn('test', UserWarning) |
Brett Cannon | 52a7d98 | 2011-07-17 19:17:55 -0700 | [diff] [blame] | 585 | self.assertTrue(len(w)) |
Victor Stinner | 8b0508e | 2011-07-04 02:43:09 +0200 | [diff] [blame] | 586 | finally: |
| 587 | globals_dict['__file__'] = oldfile |
| 588 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 589 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 590 | class WarningsDisplayTests(BaseTest): |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 591 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 592 | """Test the displaying of warnings and the ability to overload functions |
| 593 | related to displaying warnings.""" |
| 594 | |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 595 | def test_formatwarning(self): |
| 596 | message = "msg" |
| 597 | category = Warning |
| 598 | file_name = os.path.splitext(warning_tests.__file__)[0] + '.py' |
| 599 | line_num = 3 |
| 600 | file_line = linecache.getline(file_name, line_num).strip() |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 601 | format = "%s:%s: %s: %s\n %s\n" |
| 602 | expect = format % (file_name, line_num, category.__name__, message, |
| 603 | file_line) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 604 | self.assertEqual(expect, self.module.formatwarning(message, |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 605 | category, file_name, line_num)) |
| 606 | # Test the 'line' argument. |
| 607 | file_line += " for the win!" |
| 608 | expect = format % (file_name, line_num, category.__name__, message, |
| 609 | file_line) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 610 | self.assertEqual(expect, self.module.formatwarning(message, |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 611 | category, file_name, line_num, file_line)) |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 612 | |
| 613 | def test_showwarning(self): |
| 614 | file_name = os.path.splitext(warning_tests.__file__)[0] + '.py' |
| 615 | line_num = 3 |
| 616 | expected_file_line = linecache.getline(file_name, line_num).strip() |
| 617 | message = 'msg' |
| 618 | category = Warning |
| 619 | file_object = StringIO() |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 620 | expect = self.module.formatwarning(message, category, file_name, |
| 621 | line_num) |
| 622 | self.module.showwarning(message, category, file_name, line_num, |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 623 | file_object) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 624 | self.assertEqual(file_object.getvalue(), expect) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 625 | # Test 'line' argument. |
| 626 | expected_file_line += "for the win!" |
| 627 | expect = self.module.formatwarning(message, category, file_name, |
| 628 | line_num, expected_file_line) |
| 629 | file_object = StringIO() |
| 630 | self.module.showwarning(message, category, file_name, line_num, |
| 631 | file_object, expected_file_line) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 632 | self.assertEqual(expect, file_object.getvalue()) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 633 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 634 | class CWarningsDisplayTests(WarningsDisplayTests, unittest.TestCase): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 635 | module = c_warnings |
| 636 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 637 | class PyWarningsDisplayTests(WarningsDisplayTests, unittest.TestCase): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 638 | module = py_warnings |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 639 | |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 640 | |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 641 | class CatchWarningTests(BaseTest): |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 642 | |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 643 | """Test catch_warnings().""" |
| 644 | |
| 645 | def test_catch_warnings_restore(self): |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 646 | wmod = self.module |
| 647 | orig_filters = wmod.filters |
| 648 | orig_showwarning = wmod.showwarning |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 649 | # Ensure both showwarning and filters are restored when recording |
| 650 | with wmod.catch_warnings(module=wmod, record=True): |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 651 | wmod.filters = wmod.showwarning = object() |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 652 | self.assertTrue(wmod.filters is orig_filters) |
| 653 | self.assertTrue(wmod.showwarning is orig_showwarning) |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 654 | # Same test, but with recording disabled |
| 655 | with wmod.catch_warnings(module=wmod, record=False): |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 656 | wmod.filters = wmod.showwarning = object() |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 657 | self.assertTrue(wmod.filters is orig_filters) |
| 658 | self.assertTrue(wmod.showwarning is orig_showwarning) |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 659 | |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 660 | def test_catch_warnings_recording(self): |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 661 | wmod = self.module |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 662 | # Ensure warnings are recorded when requested |
| 663 | with wmod.catch_warnings(module=wmod, record=True) as w: |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 664 | self.assertEqual(w, []) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 665 | self.assertTrue(type(w) is list) |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 666 | wmod.simplefilter("always") |
| 667 | wmod.warn("foo") |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 668 | self.assertEqual(str(w[-1].message), "foo") |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 669 | wmod.warn("bar") |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 670 | self.assertEqual(str(w[-1].message), "bar") |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 671 | self.assertEqual(str(w[0].message), "foo") |
| 672 | self.assertEqual(str(w[1].message), "bar") |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 673 | del w[:] |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 674 | self.assertEqual(w, []) |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 675 | # Ensure warnings are not recorded when not requested |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 676 | orig_showwarning = wmod.showwarning |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 677 | with wmod.catch_warnings(module=wmod, record=False) as w: |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 678 | self.assertTrue(w is None) |
| 679 | self.assertTrue(wmod.showwarning is orig_showwarning) |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 680 | |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 681 | def test_catch_warnings_reentry_guard(self): |
| 682 | wmod = self.module |
| 683 | # Ensure catch_warnings is protected against incorrect usage |
| 684 | x = wmod.catch_warnings(module=wmod, record=True) |
| 685 | self.assertRaises(RuntimeError, x.__exit__) |
| 686 | with x: |
| 687 | self.assertRaises(RuntimeError, x.__enter__) |
| 688 | # Same test, but with recording disabled |
| 689 | x = wmod.catch_warnings(module=wmod, record=False) |
| 690 | self.assertRaises(RuntimeError, x.__exit__) |
| 691 | with x: |
| 692 | self.assertRaises(RuntimeError, x.__enter__) |
| 693 | |
| 694 | def test_catch_warnings_defaults(self): |
| 695 | wmod = self.module |
| 696 | orig_filters = wmod.filters |
| 697 | orig_showwarning = wmod.showwarning |
| 698 | # Ensure default behaviour is not to record warnings |
| 699 | with wmod.catch_warnings(module=wmod) as w: |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 700 | self.assertTrue(w is None) |
| 701 | self.assertTrue(wmod.showwarning is orig_showwarning) |
| 702 | self.assertTrue(wmod.filters is not orig_filters) |
| 703 | self.assertTrue(wmod.filters is orig_filters) |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 704 | if wmod is sys.modules['warnings']: |
| 705 | # Ensure the default module is this one |
| 706 | with wmod.catch_warnings() as w: |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 707 | self.assertTrue(w is None) |
| 708 | self.assertTrue(wmod.showwarning is orig_showwarning) |
| 709 | self.assertTrue(wmod.filters is not orig_filters) |
| 710 | self.assertTrue(wmod.filters is orig_filters) |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 711 | |
| 712 | def test_check_warnings(self): |
| 713 | # Explicit tests for the test.support convenience wrapper |
| 714 | wmod = self.module |
Florent Xicluna | 53b506be | 2010-03-18 20:00:57 +0000 | [diff] [blame] | 715 | if wmod is not sys.modules['warnings']: |
Zachary Ware | 9fe6d86 | 2013-12-08 00:20:35 -0600 | [diff] [blame] | 716 | self.skipTest('module to test is not loaded warnings module') |
Florent Xicluna | 53b506be | 2010-03-18 20:00:57 +0000 | [diff] [blame] | 717 | with support.check_warnings(quiet=False) as w: |
| 718 | self.assertEqual(w.warnings, []) |
| 719 | wmod.simplefilter("always") |
| 720 | wmod.warn("foo") |
| 721 | self.assertEqual(str(w.message), "foo") |
| 722 | wmod.warn("bar") |
| 723 | self.assertEqual(str(w.message), "bar") |
| 724 | self.assertEqual(str(w.warnings[0].message), "foo") |
| 725 | self.assertEqual(str(w.warnings[1].message), "bar") |
| 726 | w.reset() |
| 727 | self.assertEqual(w.warnings, []) |
| 728 | |
| 729 | with support.check_warnings(): |
| 730 | # defaults to quiet=True without argument |
| 731 | pass |
| 732 | with support.check_warnings(('foo', UserWarning)): |
| 733 | wmod.warn("foo") |
| 734 | |
| 735 | with self.assertRaises(AssertionError): |
| 736 | with support.check_warnings(('', RuntimeWarning)): |
| 737 | # defaults to quiet=False with argument |
| 738 | pass |
| 739 | with self.assertRaises(AssertionError): |
| 740 | with support.check_warnings(('foo', RuntimeWarning)): |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 741 | wmod.warn("foo") |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 742 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 743 | class CCatchWarningTests(CatchWarningTests, unittest.TestCase): |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 744 | module = c_warnings |
| 745 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 746 | class PyCatchWarningTests(CatchWarningTests, unittest.TestCase): |
Nick Coghlan | b130493 | 2008-07-13 12:25:08 +0000 | [diff] [blame] | 747 | module = py_warnings |
| 748 | |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 749 | |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 750 | class EnvironmentVariableTests(BaseTest): |
| 751 | |
| 752 | def test_single_warning(self): |
Antoine Pitrou | bb08b36 | 2014-01-29 23:44:05 +0100 | [diff] [blame] | 753 | rc, stdout, stderr = assert_python_ok("-c", |
| 754 | "import sys; sys.stdout.write(str(sys.warnoptions))", |
| 755 | PYTHONWARNINGS="ignore::DeprecationWarning") |
| 756 | self.assertEqual(stdout, b"['ignore::DeprecationWarning']") |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 757 | |
| 758 | def test_comma_separated_warnings(self): |
Antoine Pitrou | bb08b36 | 2014-01-29 23:44:05 +0100 | [diff] [blame] | 759 | rc, stdout, stderr = assert_python_ok("-c", |
| 760 | "import sys; sys.stdout.write(str(sys.warnoptions))", |
| 761 | PYTHONWARNINGS="ignore::DeprecationWarning,ignore::UnicodeWarning") |
| 762 | self.assertEqual(stdout, |
| 763 | b"['ignore::DeprecationWarning', 'ignore::UnicodeWarning']") |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 764 | |
| 765 | def test_envvar_and_command_line(self): |
Antoine Pitrou | bb08b36 | 2014-01-29 23:44:05 +0100 | [diff] [blame] | 766 | rc, stdout, stderr = assert_python_ok("-Wignore::UnicodeWarning", "-c", |
| 767 | "import sys; sys.stdout.write(str(sys.warnoptions))", |
| 768 | PYTHONWARNINGS="ignore::DeprecationWarning") |
| 769 | self.assertEqual(stdout, |
| 770 | b"['ignore::UnicodeWarning', 'ignore::DeprecationWarning']") |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 771 | |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 772 | @unittest.skipUnless(sys.getfilesystemencoding() != 'ascii', |
| 773 | 'requires non-ascii filesystemencoding') |
| 774 | def test_nonascii(self): |
Antoine Pitrou | bb08b36 | 2014-01-29 23:44:05 +0100 | [diff] [blame] | 775 | rc, stdout, stderr = assert_python_ok("-c", |
| 776 | "import sys; sys.stdout.write(str(sys.warnoptions))", |
| 777 | PYTHONIOENCODING="utf-8", |
| 778 | PYTHONWARNINGS="ignore:DeprecaciónWarning") |
| 779 | self.assertEqual(stdout, |
| 780 | "['ignore:DeprecaciónWarning']".encode('utf-8')) |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 781 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 782 | class CEnvironmentVariableTests(EnvironmentVariableTests, unittest.TestCase): |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 783 | module = c_warnings |
| 784 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 785 | class PyEnvironmentVariableTests(EnvironmentVariableTests, unittest.TestCase): |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 786 | module = py_warnings |
| 787 | |
| 788 | |
Victor Stinner | 7d79b8b | 2010-05-19 20:40:50 +0000 | [diff] [blame] | 789 | class BootstrapTest(unittest.TestCase): |
| 790 | def test_issue_8766(self): |
| 791 | # "import encodings" emits a warning whereas the warnings is not loaded |
Ezio Melotti | 42da663 | 2011-03-15 05:18:48 +0200 | [diff] [blame] | 792 | # or not completely loaded (warnings imports indirectly encodings by |
Victor Stinner | 7d79b8b | 2010-05-19 20:40:50 +0000 | [diff] [blame] | 793 | # importing linecache) yet |
| 794 | with support.temp_cwd() as cwd, support.temp_cwd('encodings'): |
Victor Stinner | 7d79b8b | 2010-05-19 20:40:50 +0000 | [diff] [blame] | 795 | # encodings loaded by initfsencoding() |
Antoine Pitrou | bb08b36 | 2014-01-29 23:44:05 +0100 | [diff] [blame] | 796 | assert_python_ok('-c', 'pass', PYTHONPATH=cwd) |
Victor Stinner | 7d79b8b | 2010-05-19 20:40:50 +0000 | [diff] [blame] | 797 | |
| 798 | # Use -W to load warnings module at startup |
Antoine Pitrou | bb08b36 | 2014-01-29 23:44:05 +0100 | [diff] [blame] | 799 | assert_python_ok('-c', 'pass', '-W', 'always', PYTHONPATH=cwd) |
Victor Stinner | 7d79b8b | 2010-05-19 20:40:50 +0000 | [diff] [blame] | 800 | |
Victor Stinner | d1b4899 | 2013-10-28 19:16:21 +0100 | [diff] [blame] | 801 | class FinalizationTest(unittest.TestCase): |
| 802 | def test_finalization(self): |
| 803 | # Issue #19421: warnings.warn() should not crash |
| 804 | # during Python finalization |
| 805 | code = """ |
| 806 | import warnings |
| 807 | warn = warnings.warn |
| 808 | |
| 809 | class A: |
| 810 | def __del__(self): |
| 811 | warn("test") |
| 812 | |
| 813 | a=A() |
| 814 | """ |
| 815 | rc, out, err = assert_python_ok("-c", code) |
| 816 | # note: "__main__" filename is not correct, it should be the name |
| 817 | # of the script |
| 818 | self.assertEqual(err, b'__main__:7: UserWarning: test') |
| 819 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 820 | |
| 821 | def setUpModule(): |
Christian Heimes | dae2a89 | 2008-04-19 00:55:37 +0000 | [diff] [blame] | 822 | py_warnings.onceregistry.clear() |
| 823 | c_warnings.onceregistry.clear() |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 824 | |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 825 | tearDownModule = setUpModule |
Raymond Hettinger | d6f6e50 | 2003-07-13 08:37:40 +0000 | [diff] [blame] | 826 | |
| 827 | if __name__ == "__main__": |
Ezio Melotti | 2688e81 | 2013-01-10 06:52:23 +0200 | [diff] [blame] | 828 | unittest.main() |