File: PKG-INFO

package info (click to toggle)
python-parameterized 0.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 212 kB
  • sloc: python: 463; makefile: 5
file content (403 lines) | stat: -rw-r--r-- 14,326 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
Metadata-Version: 1.1
Name: parameterized
Version: 0.6.1
Summary: Parameterized testing with any Python test framework
Home-page: https://github.com/wolever/parameterized
Author: David Wolever
Author-email: david@wolever.net
License: FreeBSD
Description: Parameterized testing with any Python test framework
        ====================================================
        
        .. image:: https://travis-ci.org/wolever/parameterized.svg?branch=master
            :target: https://travis-ci.org/wolever/parameterized
        
        Parameterized testing in Python sucks.
        
        ``parameterized`` fixes that. For everything. Parameterized testing for nose,
        parameterized testing for py.test, parameterized testing for unittest.
        
        .. code:: python
        
            # test_math.py
            from nose.tools import assert_equal
            from parameterized import parameterized
        
            import unittest
            import math
        
            @parameterized([
                (2, 2, 4),
                (2, 3, 8),
                (1, 9, 1),
                (0, 9, 0),
            ])
            def test_pow(base, exponent, expected):
                assert_equal(math.pow(base, exponent), expected)
        
            class TestMathUnitTest(unittest.TestCase):
                @parameterized.expand([
                    ("negative", -1.5, -2.0),
                    ("integer", 1, 1.0),
                    ("large fraction", 1.6, 1),
                ])
                def test_floor(self, name, input, expected):
                    assert_equal(math.floor(input), expected)
        
        With nose (and nose2)::
        
            $ nosetests -v test_math.py
            test_math.test_pow(2, 2, 4) ... ok
            test_math.test_pow(2, 3, 8) ... ok
            test_math.test_pow(1, 9, 1) ... ok
            test_math.test_pow(0, 9, 0) ... ok
            test_floor_0_negative (test_math.TestMathUnitTest) ... ok
            test_floor_1_integer (test_math.TestMathUnitTest) ... ok
            test_floor_2_large_fraction (test_math.TestMathUnitTest) ... ok
        
            ----------------------------------------------------------------------
            Ran 7 tests in 0.002s
        
            OK
        
        As the package name suggests, nose is best supported and will be used for all
        further examples.
        
        With py.test (version 2.0 and above)::
        
            $ py.test -v test_math.py
            ============================== test session starts ==============================
            platform darwin -- Python 2.7.2 -- py-1.4.30 -- pytest-2.7.1
            collected 7 items
        
            test_math.py::test_pow::[0] PASSED
            test_math.py::test_pow::[1] PASSED
            test_math.py::test_pow::[2] PASSED
            test_math.py::test_pow::[3] PASSED
            test_math.py::TestMathUnitTest::test_floor_0_negative
            test_math.py::TestMathUnitTest::test_floor_1_integer
            test_math.py::TestMathUnitTest::test_floor_2_large_fraction
        
            =========================== 7 passed in 0.10 seconds ============================
        
        With unittest (and unittest2)::
        
            $ python -m unittest -v test_math
            test_floor_0_negative (test_math.TestMathUnitTest) ... ok
            test_floor_1_integer (test_math.TestMathUnitTest) ... ok
            test_floor_2_large_fraction (test_math.TestMathUnitTest) ... ok
        
            ----------------------------------------------------------------------
            Ran 3 tests in 0.000s
        
            OK
        
        (note: because unittest does not support test decorators, only tests created
        with ``@parameterized.expand`` will be executed)
        
        Installation
        ------------
        
        ::
        
            $ pip install parameterized
        
        
        Compatibility
        -------------
        
        `Yes`__.
        
        __ https://travis-ci.org/wolever/parameterized
        
        .. list-table::
           :header-rows: 1
           :stub-columns: 1
        
           * -
             - Py2.6
             - Py2.7
             - Py3.3
             - Py3.4
             - PyPy
           * - nose
             - yes
             - yes
             - yes
             - yes
             - yes
           * - nose2
             - yes
             - yes
             - yes
             - yes
             - yes
           * - py.test
             - yes
             - yes
             - yes
             - yes
             - yes
           * - | unittest
               | (``@parameterized.expand``)
             - yes
             - yes
             - yes
             - yes
             - yes
           * - | unittest2
               | (``@parameterized.expand``)
             - yes
             - yes
             - yes
             - yes
             - yes
        
        Dependencies
        ------------
        
        (this section left intentionally blank)
        
        
        Exhaustive Usage Examples
        --------------------------
        
        The ``@parameterized`` and ``@parameterized.expand`` decorators accept a list
        or iterable of tuples or ``param(...)``, or a callable which returns a list or
        iterable:
        
        .. code:: python
        
            from parameterized import parameterized, param
        
            # A list of tuples
            @parameterized([
                (2, 3, 5),
                (3, 5, 8),
            ])
            def test_add(a, b, expected):
                assert_equal(a + b, expected)
        
            # A list of params
            @parameterized([
                param("10", 10),
                param("10", 16, base=16),
            ])
            def test_int(str_val, expected, base=10):
                assert_equal(int(str_val, base=base), expected)
        
            # An iterable of params
            @parameterized(
                param.explicit(*json.loads(line))
                for line in open("testcases.jsons")
            )
            def test_from_json_file(...):
                ...
        
            # A callable which returns a list of tuples
            def load_test_cases():
                return [
                    ("test1", ),
                    ("test2", ),
                ]
            @parameterized(load_test_cases)
            def test_from_function(name):
                ...
        
        .. **
        
        Note that, when using an iterator or a generator, all the items will be loaded
        into memory before the start of the test run (we do this explicitly to ensure
        that generators are exhausted exactly once in multi-process or multi-threaded
        testing environments).
        
        The ``@parameterized`` decorator can be used test class methods, and standalone
        functions:
        
        .. code:: python
        
            from parameterized import parameterized
        
            class AddTest(object):
                @parameterized([
                    (2, 3, 5),
                ])
                def test_add(self, a, b, expected):
                    assert_equal(a + b, expected)
        
            @parameterized([
                (2, 3, 5),
            ])
            def test_add(a, b, expected):
                assert_equal(a + b, expected)
        
        
        And ``@parameterized.expand`` can be used to generate test methods in
        situations where test generators cannot be used (for example, when the test
        class is a subclass of ``unittest.TestCase``):
        
        .. code:: python
        
            import unittest
            from parameterized import parameterized
        
            class AddTestCase(unittest.TestCase):
                @parameterized.expand([
                    ("2 and 3", 2, 3, 5),
                    ("3 and 5", 2, 3, 5),
                ])
                def test_add(self, _, a, b, expected):
                    assert_equal(a + b, expected)
        
        Will create the test cases::
        
            $ nosetests example.py
            test_add_0_2_and_3 (example.AddTestCase) ... ok
            test_add_1_3_and_5 (example.AddTestCase) ... ok
        
            ----------------------------------------------------------------------
            Ran 2 tests in 0.001s
        
            OK
        
        Note that ``@parameterized.expand`` works by creating new methods on the test
        class. If the first parameter is a string, that string will be added to the end
        of the method name. For example, the test case above will generate the methods
        ``test_add_0_2_and_3`` and ``test_add_1_3_and_5``.
        
        The names of the test cases generated by ``@parameterized.expand`` can be
        customized using the ``testcase_func_name`` keyword argument. The value should
        be a function which accepts three arguments: ``testcase_func``, ``param_num``,
        and ``params``, and it should return the name of the test case.
        ``testcase_func`` will be the function to be tested, ``param_num`` will be the
        index of the test case parameters in the list of parameters, and ``param``
        (an instance of ``param``) will be the parameters which will be used.
        
        .. code:: python
        
            import unittest
            from parameterized import parameterized
        
            def custom_name_func(testcase_func, param_num, param):
                return "%s_%s" %(
                    testcase_func.__name__,
                    parameterized.to_safe_name("_".join(str(x) for x in param.args)),
                )
        
            class AddTestCase(unittest.TestCase):
                @parameterized.expand([
                    (2, 3, 5),
                    (2, 3, 5),
                ], testcase_func_name=custom_name_func)
                def test_add(self, a, b, expected):
                    assert_equal(a + b, expected)
        
        Will create the test cases::
        
            $ nosetests example.py
            test_add_1_2_3 (example.AddTestCase) ... ok
            test_add_2_3_5 (example.AddTestCase) ... ok
        
            ----------------------------------------------------------------------
            Ran 2 tests in 0.001s
        
            OK
        
        
        The ``param(...)`` helper class stores the parameters for one specific test
        case.  It can be used to pass keyword arguments to test cases:
        
        .. code:: python
        
            from parameterized import parameterized, param
        
            @parameterized([
                param("10", 10),
                param("10", 16, base=16),
            ])
            def test_int(str_val, expected, base=10):
                assert_equal(int(str_val, base=base), expected)
        
        
        If test cases have a docstring, the parameters for that test case will be
        appended to the first line of the docstring. This behavior can be controlled
        with the ``doc_func`` argument:
        
        .. code:: python
        
            from parameterized import parameterized
        
            @parameterized([
                (1, 2, 3),
                (4, 5, 9),
            ])
            def test_add(a, b, expected):
                """ Test addition. """
                assert_equal(a + b, expected)
        
            def my_doc_func(func, num, param):
                return "%s: %s with %s" %(num, func.__name__, param)
        
            @parameterized([
                (5, 4, 1),
                (9, 6, 3),
            ], doc_func=my_doc_func)
            def test_subtraction(a, b, expected):
                assert_equal(a - b, expected)
        
        ::
        
            $ nosetests example.py
            Test addition. [with a=1, b=2, expected=3] ... ok
            Test addition. [with a=4, b=5, expected=9] ... ok
            0: test_subtraction with param(*(5, 4, 1)) ... ok
            1: test_subtraction with param(*(9, 6, 3)) ... ok
        
            ----------------------------------------------------------------------
            Ran 4 tests in 0.001s
        
            OK
        
        
        Migrating from ``nose-parameterized`` to ``parameterized``
        ----------------------------------------------------------
        
        To migrate a codebase from ``nose-parameterized`` to ``parameterized``:
        
        1. Update your requirements file, replacing ``nose-parameterized`` with
           ``parameterized``.
        
        2. Replace all references to ``nose_parameterized`` with ``parameterized``::
        
            $ perl -pi -e 's/nose_parameterized/parameterized/g' your-codebase/
        
        3. You're done!
        
        
        FAQ
        ---
        
        What happened to ``nose-parameterized``?
            Originally only nose was supported. But now everything is supported, and it
            only made sense to change the name!
        
        What do you mean when you say "nose is best supported"?
            There are small caveates with ``py.test`` and ``unittest``: ``py.test``
            does not show the parameter values (ex, it will show ``test_add[0]``
            instead of ``test_add[1, 2, 3]``), and ``unittest``/``unittest2`` do not
            support test generators so ``@parameterized.expand`` must be used.
        
        Why not use ``@pytest.mark.parametrize``?
            Because spelling is difficult. Also, ``parameterized`` doesn't require you
            to repeat argument names, and (using ``param``) it supports optional
            keyword arguments.
        
        Why do I get an ``AttributeError: 'function' object has no attribute 'expand'`` with ``@parameterized.expand``?
            You've likely installed the ``parametrized`` (note the missing *e*)
            package. Use ``parameterized`` (with the *e*) instead and you'll be all
            set.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License