Пример #1
0
def test_validators():
    validation_tests = ({
        'validator':
        validate_bool,
        'success':
        chain(
            ((_, True) for _ in ('t', 'y', 'yes', 'on', 'true', '1', 1, True)),
            ((_, False)
             for _ in ('f', 'n', 'no', 'off', 'false', '0', 0, False))),
        'fail': ((_, ValueError) for _ in (
            'aardvark',
            2,
            -1,
            [],
        ))
    }, {
        'validator':
        validate_stringlist,
        'success':
        (('', []), ('a,b', ['a', 'b']), ('aardvark', ['aardvark']),
         ('aardvark, ', ['aardvark']), ('aardvark, ,', ['aardvark']),
         (['a', 'b'], ['a', 'b']), (('a', 'b'), ['a',
                                                 'b']), ((1, 2), ['1', '2'])),
        'fail': (
            (dict(), ValueError),
            (1, ValueError),
        )
    }, {
        'validator':
        validate_nseq_int(2),
        'success':
        ((_, [1, 2])
         for _ in ('1, 2', [1.5, 2.5], [1, 2], (1, 2), np.array((1, 2)))),
        'fail': ((_, ValueError) for _ in ('aardvark', ('a', 1), (1, 2, 3)))
    }, {
        'validator':
        validate_nseq_float(2),
        'success': ((_, [1.5, 2.5])
                    for _ in ('1.5, 2.5', [1.5, 2.5], [1.5, 2.5], (1.5, 2.5),
                              np.array((1.5, 2.5)))),
        'fail': ((_, ValueError) for _ in ('aardvark', ('a', 1), (1, 2, 3)))
    })

    for validator_dict in validation_tests:
        validator = validator_dict['validator']
        for arg, target in validator_dict['success']:
            yield _validation_test_helper, validator, arg, target
        for arg, error_type in validator_dict['fail']:
            yield _validation_fail_helper, validator, arg, error_type
Пример #2
0
def test_validators():
    validation_tests = (
        {'validator': validate_bool,
         'success': chain(((_, True) for _ in
                           ('t', 'y', 'yes', 'on', 'true', '1', 1, True)),
                           ((_, False) for _ in
                            ('f', 'n', 'no', 'off', 'false', '0', 0, False))),
        'fail': ((_, ValueError)
                 for _ in ('aardvark', 2, -1, [], ))},
        {'validator': validate_stringlist,
         'success': (('', []),
                     ('a,b', ['a', 'b']),
                     ('aardvark', ['aardvark']),
                     ('aardvark, ', ['aardvark']),
                     ('aardvark, ,', ['aardvark']),
                     (['a', 'b'], ['a', 'b']),
                     (('a', 'b'), ['a', 'b']),
                     ((1, 2), ['1', '2'])),
            'fail': ((dict(), AssertionError),
                     (1, AssertionError),)
            },
        {'validator': validate_nseq_int(2),
         'success': ((_, [1, 2])
                     for _ in ('1, 2', [1.5, 2.5], [1, 2],
                               (1, 2), np.array((1, 2)))),
         'fail': ((_, ValueError)
                  for _ in ('aardvark', ('a', 1),
                            (1, 2, 3)
                            ))
        },
        {'validator': validate_nseq_float(2),
         'success': ((_, [1.5, 2.5])
                     for _ in ('1.5, 2.5', [1.5, 2.5], [1.5, 2.5],
                               (1.5, 2.5), np.array((1.5, 2.5)))),
         'fail': ((_, ValueError)
                  for _ in ('aardvark', ('a', 1),
                            (1, 2, 3)
                            ))
        }

    )

    for validator_dict in validation_tests:
        validator = validator_dict['validator']
        for arg, target in validator_dict['success']:
            yield _validation_test_helper, validator, arg, target
        for arg, error_type in validator_dict['fail']:
            yield _validation_fail_helper, validator, arg, error_type
Пример #3
0
def test_validators():
    validation_tests = (
        {
            "validator": validate_bool,
            "success": chain(
                ((_, True) for _ in ("t", "y", "yes", "on", "true", "1", 1, True)),
                ((_, False) for _ in ("f", "n", "no", "off", "false", "0", 0, False)),
            ),
            "fail": ((_, ValueError) for _ in ("aardvark", 2, -1, [])),
        },
        {
            "validator": validate_stringlist,
            "success": (
                ("", []),
                ("a,b", ["a", "b"]),
                ("aardvark", ["aardvark"]),
                ("aardvark, ", ["aardvark"]),
                ("aardvark, ,", ["aardvark"]),
                (["a", "b"], ["a", "b"]),
                (("a", "b"), ["a", "b"]),
                ((1, 2), ["1", "2"]),
            ),
            "fail": ((dict(), ValueError), (1, ValueError)),
        },
        {
            "validator": validate_nseq_int(2),
            "success": ((_, [1, 2]) for _ in ("1, 2", [1.5, 2.5], [1, 2], (1, 2), np.array((1, 2)))),
            "fail": ((_, ValueError) for _ in ("aardvark", ("a", 1), (1, 2, 3))),
        },
        {
            "validator": validate_nseq_float(2),
            "success": (
                (_, [1.5, 2.5]) for _ in ("1.5, 2.5", [1.5, 2.5], [1.5, 2.5], (1.5, 2.5), np.array((1.5, 2.5)))
            ),
            "fail": ((_, ValueError) for _ in ("aardvark", ("a", 1), (1, 2, 3))),
        },
    )

    for validator_dict in validation_tests:
        validator = validator_dict["validator"]
        for arg, target in validator_dict["success"]:
            yield _validation_test_helper, validator, arg, target
        for arg, error_type in validator_dict["fail"]:
            yield _validation_fail_helper, validator, arg, error_type
Пример #4
0
def generate_validator_testcases(valid):
    validation_tests = (
        {'validator': validate_bool,
         'success': (*((_, True) for _ in
                       ('t', 'y', 'yes', 'on', 'true', '1', 1, True)),
                     *((_, False) for _ in
                       ('f', 'n', 'no', 'off', 'false', '0', 0, False))),
         'fail': ((_, ValueError)
                  for _ in ('aardvark', 2, -1, [], ))},
        {'validator': validate_stringlist,
         'success': (('', []),
                     ('a,b', ['a', 'b']),
                     ('aardvark', ['aardvark']),
                     ('aardvark, ', ['aardvark']),
                     ('aardvark, ,', ['aardvark']),
                     (['a', 'b'], ['a', 'b']),
                     (('a', 'b'), ['a', 'b']),
                     (iter(['a', 'b']), ['a', 'b']),
                     (np.array(['a', 'b']), ['a', 'b']),
                     ((1, 2), ['1', '2']),
                     (np.array([1, 2]), ['1', '2']),
                    ),
         'fail': ((dict(), ValueError),
                  (1, ValueError),
                 )
        },
        {'validator': validate_nseq_int(2),
         'success': ((_, [1, 2])
                     for _ in ('1, 2', [1.5, 2.5], [1, 2],
                               (1, 2), np.array((1, 2)))),
         'fail': ((_, ValueError)
                  for _ in ('aardvark', ('a', 1),
                            (1, 2, 3)
                            ))
        },
        {'validator': validate_nseq_float(2),
         'success': ((_, [1.5, 2.5])
                     for _ in ('1.5, 2.5', [1.5, 2.5], [1.5, 2.5],
                               (1.5, 2.5), np.array((1.5, 2.5)))),
         'fail': ((_, ValueError)
                  for _ in ('aardvark', ('a', 1),
                            (1, 2, 3)
                            ))
        },
        {'validator': validate_cycler,
         'success': (('cycler("color", "rgb")',
                      cycler("color", 'rgb')),
                     (cycler('linestyle', ['-', '--']),
                      cycler('linestyle', ['-', '--'])),
                     ("""(cycler("color", ["r", "g", "b"]) +
                          cycler("mew", [2, 3, 5]))""",
                      (cycler("color", 'rgb') +
                          cycler("markeredgewidth", [2, 3, 5]))),
                     ("cycler(c='rgb', lw=[1, 2, 3])",
                      cycler('color', 'rgb') + cycler('linewidth', [1, 2, 3])),
                     ("cycler('c', 'rgb') * cycler('linestyle', ['-', '--'])",
                      (cycler('color', 'rgb') *
                          cycler('linestyle', ['-', '--']))),
                     (cycler('ls', ['-', '--']),
                      cycler('linestyle', ['-', '--'])),
                     (cycler(mew=[2, 5]),
                      cycler('markeredgewidth', [2, 5])),
                    ),
         # This is *so* incredibly important: validate_cycler() eval's
         # an arbitrary string! I think I have it locked down enough,
         # and that is what this is testing.
         # TODO: Note that these tests are actually insufficient, as it may
         # be that they raised errors, but still did an action prior to
         # raising the exception. We should devise some additional tests
         # for that...
         'fail': ((4, ValueError),  # Gotta be a string or Cycler object
                  ('cycler("bleh, [])', ValueError),  # syntax error
                  ('Cycler("linewidth", [1, 2, 3])',
                      ValueError),  # only 'cycler()' function is allowed
                  ('1 + 2', ValueError),  # doesn't produce a Cycler object
                  ('os.system("echo Gotcha")', ValueError),  # os not available
                  ('import os', ValueError),  # should not be able to import
                  ('def badjuju(a): return a; badjuju(cycler("color", "rgb"))',
                      ValueError),  # Should not be able to define anything
                                    # even if it does return a cycler
                  ('cycler("waka", [1, 2, 3])', ValueError),  # not a property
                  ('cycler(c=[1, 2, 3])', ValueError),  # invalid values
                  ("cycler(lw=['a', 'b', 'c'])", ValueError),  # invalid values
                  (cycler('waka', [1, 3, 5]), ValueError),  # not a property
                  (cycler('color', ['C1', 'r', 'g']), ValueError)  # no CN
                 )
        },
        {'validator': validate_hatch,
         'success': (('--|', '--|'), ('\\oO', '\\oO'),
                     ('/+*/.x', '/+*/.x'), ('', '')),
         'fail': (('--_', ValueError),
                  (8, ValueError),
                  ('X', ValueError)),
        },
        {'validator': validate_colorlist,
         'success': (('r,g,b', ['r', 'g', 'b']),
                     (['r', 'g', 'b'], ['r', 'g', 'b']),
                     ('r, ,', ['r']),
                     (['', 'g', 'blue'], ['g', 'blue']),
                     ([np.array([1, 0, 0]), np.array([0, 1, 0])],
                         np.array([[1, 0, 0], [0, 1, 0]])),
                     (np.array([[1, 0, 0], [0, 1, 0]]),
                         np.array([[1, 0, 0], [0, 1, 0]])),
                    ),
         'fail': (('fish', ValueError),
                 ),
        },
        {'validator': validate_color,
         'success': (('None', 'none'),
                     ('none', 'none'),
                     ('AABBCC', '#AABBCC'),  # RGB hex code
                     ('AABBCC00', '#AABBCC00'),  # RGBA hex code
                     ('tab:blue', 'tab:blue'),  # named color
                     ('C12', 'C12'),  # color from cycle
                     ('(0, 1, 0)', [0.0, 1.0, 0.0]),  # RGB tuple
                     ((0, 1, 0), (0, 1, 0)),  # non-string version
                     ('(0, 1, 0, 1)', [0.0, 1.0, 0.0, 1.0]),  # RGBA tuple
                     ((0, 1, 0, 1), (0, 1, 0, 1)),  # non-string version
                     ('(0, 1, "0.5")', [0.0, 1.0, 0.5]),  # unusual but valid
                    ),
         'fail': (('tab:veryblue', ValueError),  # invalid name
                  ('(0, 1)', ValueError),  # tuple with length < 3
                  ('(0, 1, 0, 1, 0)', ValueError),  # tuple with length > 4
                  ('(0, 1, none)', ValueError),  # cannot cast none to float
                 ),
        },
        {'validator': validate_hist_bins,
         'success': (('auto', 'auto'),
                     ('fd', 'fd'),
                     ('10', 10),
                     ('1, 2, 3', [1, 2, 3]),
                     ([1, 2, 3], [1, 2, 3]),
                     (np.arange(15), np.arange(15))
                     ),
         'fail': (('aardvark', ValueError),
                  )
        },
        {'validator': validate_markevery,
         'success': ((None, None),
                     (1, 1),
                     (0.1, 0.1),
                     ((1, 1), (1, 1)),
                     ((0.1, 0.1), (0.1, 0.1)),
                     ([1, 2, 3], [1, 2, 3]),
                     (slice(2), slice(None, 2, None)),
                     (slice(1, 2, 3), slice(1, 2, 3))
                     ),
         'fail': (((1, 2, 3), TypeError),
                  ([1, 2, 0.3], TypeError),
                  (['a', 2, 3], TypeError),
                  ([1, 2, 'a'], TypeError),
                  ((0.1, 0.2, 0.3), TypeError),
                  ((0.1, 2, 3), TypeError),
                  ((1, 0.2, 0.3), TypeError),
                  ((1, 0.1), TypeError),
                  ((0.1, 1), TypeError),
                  (('abc'), TypeError),
                  ((1, 'a'), TypeError),
                  ((0.1, 'b'), TypeError),
                  (('a', 1), TypeError),
                  (('a', 0.1), TypeError),
                  ('abc', TypeError),
                  ('a', TypeError),
                  (object(), TypeError)
                  )
        },
        {'validator': _validate_linestyle,
         'success': (('-', '-'), ('solid', 'solid'),
                     ('--', '--'), ('dashed', 'dashed'),
                     ('-.', '-.'), ('dashdot', 'dashdot'),
                     (':', ':'), ('dotted', 'dotted'),
                     ('', ''), (' ', ' '),
                     ('None', 'none'), ('none', 'none'),
                     ('DoTtEd', 'dotted'),  # case-insensitive
                     (['1.23', '4.56'], (None, [1.23, 4.56])),
                     ([1.23, 456], (None, [1.23, 456.0])),
                     ([1, 2, 3, 4], (None, [1.0, 2.0, 3.0, 4.0])),
                     ),
         'fail': (('aardvark', ValueError),  # not a valid string
                  (b'dotted', ValueError),
                  ('dotted'.encode('utf-16'), ValueError),
                  ((None, [1, 2]), ValueError),  # (offset, dashes) != OK
                  ((0, [1, 2]), ValueError),  # idem
                  ((-1, [1, 2]), ValueError),  # idem
                  ([1, 2, 3], ValueError),  # sequence with odd length
                  (1.23, ValueError),  # not a sequence
                  )
        },
    )

    for validator_dict in validation_tests:
        validator = validator_dict['validator']
        if valid:
            for arg, target in validator_dict['success']:
                yield validator, arg, target
        else:
            for arg, error_type in validator_dict['fail']:
                yield validator, arg, error_type
Пример #5
0
def generate_validator_testcases(valid):
    validation_tests = (
        {
            'validator':
            validate_bool,
            'success':
            chain(((_, True)
                   for _ in ('t', 'y', 'yes', 'on', 'true', '1', 1, True)),
                  ((_, False)
                   for _ in ('f', 'n', 'no', 'off', 'false', '0', 0, False))),
            'fail': ((_, ValueError) for _ in (
                'aardvark',
                2,
                -1,
                [],
            ))
        },
        {
            'validator':
            validate_stringlist,
            'success': (
                ('', []),
                ('a,b', ['a', 'b']),
                ('aardvark', ['aardvark']),
                ('aardvark, ', ['aardvark']),
                ('aardvark, ,', ['aardvark']),
                (['a', 'b'], ['a', 'b']),
                (('a', 'b'), ['a', 'b']),
                (iter(['a', 'b']), ['a', 'b']),
                (np.array(['a', 'b']), ['a', 'b']),
                ((1, 2), ['1', '2']),
                (np.array([1, 2]), ['1', '2']),
            ),
            'fail': (
                (dict(), ValueError),
                (1, ValueError),
            )
        },
        {
            'validator':
            validate_nseq_int(2),
            'success':
            ((_, [1, 2])
             for _ in ('1, 2', [1.5, 2.5], [1, 2], (1, 2), np.array((1, 2)))),
            'fail':
            ((_, ValueError) for _ in ('aardvark', ('a', 1), (1, 2, 3)))
        },
        {
            'validator':
            validate_nseq_float(2),
            'success':
            ((_, [1.5, 2.5])
             for _ in ('1.5, 2.5', [1.5, 2.5], [1.5, 2.5], (1.5, 2.5),
                       np.array((1.5, 2.5)))),
            'fail':
            ((_, ValueError) for _ in ('aardvark', ('a', 1), (1, 2, 3)))
        },
        {
            'validator':
            validate_cycler,
            'success': (
                ('cycler("color", "rgb")', cycler("color", 'rgb')),
                (cycler('linestyle',
                        ['-', '--']), cycler('linestyle', ['-', '--'])),
                ("""(cycler("color", ["r", "g", "b"]) +
                          cycler("mew", [2, 3, 5]))""",
                 (cycler("color", 'rgb') +
                  cycler("markeredgewidth", [2, 3, 5]))),
                ("cycler(c='rgb', lw=[1, 2, 3])",
                 cycler('color', 'rgb') + cycler('linewidth', [1, 2, 3])),
                ("cycler('c', 'rgb') * cycler('linestyle', ['-', '--'])",
                 (cycler('color', 'rgb') * cycler('linestyle', ['-', '--']))),
                (cycler('ls', ['-', '--']), cycler('linestyle', ['-', '--'])),
                (cycler(mew=[2, 5]), cycler('markeredgewidth', [2, 5])),
            ),
            # This is *so* incredibly important: validate_cycler() eval's
            # an arbitrary string! I think I have it locked down enough,
            # and that is what this is testing.
            # TODO: Note that these tests are actually insufficient, as it may
            # be that they raised errors, but still did an action prior to
            # raising the exception. We should devise some additional tests
            # for that...
            'fail': (
                (4, ValueError),  # Gotta be a string or Cycler object
                ('cycler("bleh, [])', ValueError),  # syntax error
                ('Cycler("linewidth", [1, 2, 3])',
                 ValueError),  # only 'cycler()' function is allowed
                ('1 + 2', ValueError),  # doesn't produce a Cycler object
                ('os.system("echo Gotcha")', ValueError),  # os not available
                ('import os', ValueError),  # should not be able to import
                ('def badjuju(a): return a; badjuju(cycler("color", "rgb"))',
                 ValueError),  # Should not be able to define anything
                # even if it does return a cycler
                ('cycler("waka", [1, 2, 3])', ValueError),  # not a property
                ('cycler(c=[1, 2, 3])', ValueError),  # invalid values
                ("cycler(lw=['a', 'b', 'c'])", ValueError),  # invalid values
                (cycler('waka', [1, 3, 5]), ValueError),  # not a property
                (cycler('color', ['C1', 'r', 'g']), ValueError)  # no CN
            )
        },
        {
            'validator':
            validate_hatch,
            'success':
            (('--|', '--|'), ('\\oO', '\\oO'), ('/+*/.x', '/+*/.x'), ('', '')),
            'fail': (('--_', ValueError), (8, ValueError), ('X', ValueError)),
        },
        {
            'validator':
            validate_colorlist,
            'success': (
                ('r,g,b', ['r', 'g', 'b']),
                (['r', 'g', 'b'], ['r', 'g', 'b']),
                ('r, ,', ['r']),
                (['', 'g', 'blue'], ['g', 'blue']),
                ([np.array([1, 0, 0]),
                  np.array([0, 1, 0])], np.array([[1, 0, 0], [0, 1, 0]])),
                (np.array([[1, 0, 0], [0, 1,
                                       0]]), np.array([[1, 0, 0], [0, 1, 0]])),
            ),
            'fail': (('fish', ValueError), ),
        },
        {
            'validator':
            validate_hist_bins,
            'success': (('auto', 'auto'), ('10', 10), ('1, 2, 3', [1, 2, 3]),
                        ([1, 2, 3], [1, 2,
                                     3]), (np.arange(15), np.arange(15))),
            'fail': (('aardvark', ValueError), )
        })

    for validator_dict in validation_tests:
        validator = validator_dict['validator']
        if valid:
            for arg, target in validator_dict['success']:
                yield validator, arg, target
        else:
            for arg, error_type in validator_dict['fail']:
                yield validator, arg, error_type
Пример #6
0
def generate_validator_testcases(valid):
    validation_tests = (
        {
            'validator':
            validate_bool,
            'success':
            chain(((_, True)
                   for _ in ('t', 'y', 'yes', 'on', 'true', '1', 1, True)),
                  ((_, False)
                   for _ in ('f', 'n', 'no', 'off', 'false', '0', 0, False))),
            'fail': ((_, ValueError) for _ in (
                'aardvark',
                2,
                -1,
                [],
            ))
        },
        {
            'validator':
            validate_stringlist,
            'success': (
                ('', []),
                ('a,b', ['a', 'b']),
                ('aardvark', ['aardvark']),
                ('aardvark, ', ['aardvark']),
                ('aardvark, ,', ['aardvark']),
                (['a', 'b'], ['a', 'b']),
                (('a', 'b'), ['a', 'b']),
                (iter(['a', 'b']), ['a', 'b']),
                (np.array(['a', 'b']), ['a', 'b']),
                ((1, 2), ['1', '2']),
                (np.array([1, 2]), ['1', '2']),
            ),
            'fail': (
                (dict(), ValueError),
                (1, ValueError),
            )
        },
        {
            'validator':
            validate_nseq_int(2),
            'success':
            ((_, [1, 2])
             for _ in ('1, 2', [1.5, 2.5], [1, 2], (1, 2), np.array((1, 2)))),
            'fail':
            ((_, ValueError) for _ in ('aardvark', ('a', 1), (1, 2, 3)))
        },
        {
            'validator':
            validate_nseq_float(2),
            'success':
            ((_, [1.5, 2.5])
             for _ in ('1.5, 2.5', [1.5, 2.5], [1.5, 2.5], (1.5, 2.5),
                       np.array((1.5, 2.5)))),
            'fail':
            ((_, ValueError) for _ in ('aardvark', ('a', 1), (1, 2, 3)))
        },
        {
            'validator':
            validate_cycler,
            'success': (
                ('cycler("color", "rgb")', cycler("color", 'rgb')),
                (cycler('linestyle',
                        ['-', '--']), cycler('linestyle', ['-', '--'])),
                ("""(cycler("color", ["r", "g", "b"]) +
                          cycler("mew", [2, 3, 5]))""",
                 (cycler("color", 'rgb') +
                  cycler("markeredgewidth", [2, 3, 5]))),
                ("cycler(c='rgb', lw=[1, 2, 3])",
                 cycler('color', 'rgb') + cycler('linewidth', [1, 2, 3])),
                ("cycler('c', 'rgb') * cycler('linestyle', ['-', '--'])",
                 (cycler('color', 'rgb') * cycler('linestyle', ['-', '--']))),
                (cycler('ls', ['-', '--']), cycler('linestyle', ['-', '--'])),
                (cycler(mew=[2, 5]), cycler('markeredgewidth', [2, 5])),
            ),
            # This is *so* incredibly important: validate_cycler() eval's
            # an arbitrary string! I think I have it locked down enough,
            # and that is what this is testing.
            # TODO: Note that these tests are actually insufficient, as it may
            # be that they raised errors, but still did an action prior to
            # raising the exception. We should devise some additional tests
            # for that...
            'fail': (
                (4, ValueError),  # Gotta be a string or Cycler object
                ('cycler("bleh, [])', ValueError),  # syntax error
                ('Cycler("linewidth", [1, 2, 3])',
                 ValueError),  # only 'cycler()' function is allowed
                ('1 + 2', ValueError),  # doesn't produce a Cycler object
                ('os.system("echo Gotcha")', ValueError),  # os not available
                ('import os', ValueError),  # should not be able to import
                ('def badjuju(a): return a; badjuju(cycler("color", "rgb"))',
                 ValueError),  # Should not be able to define anything
                # even if it does return a cycler
                ('cycler("waka", [1, 2, 3])', ValueError),  # not a property
                ('cycler(c=[1, 2, 3])', ValueError),  # invalid values
                ("cycler(lw=['a', 'b', 'c'])", ValueError),  # invalid values
                (cycler('waka', [1, 3, 5]), ValueError),  # not a property
                (cycler('color', ['C1', 'r', 'g']), ValueError)  # no CN
            )
        },
        {
            'validator':
            validate_hatch,
            'success':
            (('--|', '--|'), ('\\oO', '\\oO'), ('/+*/.x', '/+*/.x'), ('', '')),
            'fail': (('--_', ValueError), (8, ValueError), ('X', ValueError)),
        },
        {
            'validator':
            validate_colorlist,
            'success': (
                ('r,g,b', ['r', 'g', 'b']),
                (['r', 'g', 'b'], ['r', 'g', 'b']),
                ('r, ,', ['r']),
                (['', 'g', 'blue'], ['g', 'blue']),
                ([np.array([1, 0, 0]),
                  np.array([0, 1, 0])], np.array([[1, 0, 0], [0, 1, 0]])),
                (np.array([[1, 0, 0], [0, 1,
                                       0]]), np.array([[1, 0, 0], [0, 1, 0]])),
            ),
            'fail': (('fish', ValueError), ),
        },
        {
            'validator':
            validate_color,
            'success': (
                ('None', 'none'),
                ('none', 'none'),
                ('AABBCC', '#AABBCC'),  # RGB hex code
                ('AABBCC00', '#AABBCC00'),  # RGBA hex code
                ('tab:blue', 'tab:blue'),  # named color
                ('C0', 'C0'),  # color from cycle
                ('(0, 1, 0)', [0.0, 1.0, 0.0]),  # RGB tuple
                ((0, 1, 0), (0, 1, 0)),  # non-string version
                ('(0, 1, 0, 1)', [0.0, 1.0, 0.0, 1.0]),  # RGBA tuple
                ((0, 1, 0, 1), (0, 1, 0, 1)),  # non-string version
                ('(0, 1, "0.5")', [0.0, 1.0, 0.5]),  # unusual but valid
            ),
            'fail': (
                ('tab:veryblue', ValueError),  # invalid name
                ('C123', ValueError),  # invalid RGB(A) code and cycle index
                ('(0, 1)', ValueError),  # tuple with length < 3
                ('(0, 1, 0, 1, 0)', ValueError),  # tuple with length > 4
                ('(0, 1, none)', ValueError),  # cannot cast none to float
            ),
        },
        {
            'validator':
            validate_hist_bins,
            'success': (('auto', 'auto'), ('10', 10), ('1, 2, 3', [1, 2, 3]),
                        ([1, 2, 3], [1, 2,
                                     3]), (np.arange(15), np.arange(15))),
            'fail': (('aardvark', ValueError), )
        })

    # The behavior of _validate_linestyle depends on the version of Python.
    # ASCII-compliant bytes arguments should pass on Python 2 because of the
    # automatic conversion between bytes and strings. Python 3 does not
    # perform such a conversion, so the same cases should raise an exception.
    #
    # Common cases:
    ls_test = {
        'validator':
        _validate_linestyle,
        'success': (
            ('-', '-'),
            ('solid', 'solid'),
            ('--', '--'),
            ('dashed', 'dashed'),
            ('-.', '-.'),
            ('dashdot', 'dashdot'),
            (':', ':'),
            ('dotted', 'dotted'),
            ('', ''),
            (' ', ' '),
            ('None', 'none'),
            ('none', 'none'),
            ('DoTtEd', 'dotted'),  # case-insensitive
            (['1.23', '4.56'], (None, [1.23, 4.56])),
            ([1.23, 456], (None, [1.23, 456.0])),
            ([1, 2, 3, 4], (None, [1.0, 2.0, 3.0, 4.0])),
        ),
        'fail': (
            ('aardvark', ValueError),  # not a valid string
            ('dotted'.encode('utf-16'), ValueError),  # even on PY2
            ((None, [1, 2]), ValueError),  # (offset, dashes) != OK
            ((0, [1, 2]), ValueError),  # idem
            ((-1, [1, 2]), ValueError),  # idem
            ([1, 2, 3], ValueError),  # sequence with odd length
            (1.23, ValueError),  # not a sequence
        )
    }
    # Add some cases of bytes arguments that Python 2 can convert silently:
    ls_bytes_args = (b'dotted', 'dotted'.encode('ascii'))
    if six.PY3:
        ls_test['fail'] += tuple((arg, ValueError) for arg in ls_bytes_args)
    else:
        ls_test['success'] += tuple((arg, 'dotted') for arg in ls_bytes_args)
    # Update the validation test sequence.
    validation_tests += (ls_test, )

    for validator_dict in validation_tests:
        validator = validator_dict['validator']
        if valid:
            for arg, target in validator_dict['success']:
                yield validator, arg, target
        else:
            for arg, error_type in validator_dict['fail']:
                yield validator, arg, error_type
Пример #7
0
def generate_validator_testcases(valid):
    validation_tests = (
        {
            'validator':
            validate_bool,
            'success':
            (*((_, True)
               for _ in ('t', 'y', 'yes', 'on', 'true', '1', 1, True)),
             *((_, False)
               for _ in ('f', 'n', 'no', 'off', 'false', '0', 0, False))),
            'fail': ((_, ValueError) for _ in (
                'aardvark',
                2,
                -1,
                [],
            ))
        },
        {
            'validator':
            validate_stringlist,
            'success': (
                ('', []),
                ('a,b', ['a', 'b']),
                ('aardvark', ['aardvark']),
                ('aardvark, ', ['aardvark']),
                ('aardvark, ,', ['aardvark']),
                (['a', 'b'], ['a', 'b']),
                (('a', 'b'), ['a', 'b']),
                (iter(['a', 'b']), ['a', 'b']),
                (np.array(['a', 'b']), ['a', 'b']),
                ((1, 2), ['1', '2']),
                (np.array([1, 2]), ['1', '2']),
            ),
            'fail': (
                (set(), ValueError),
                (1, ValueError),
            )
        },
        {
            'validator':
            validate_nseq_int(2),
            'success':
            ((_, [1, 2])
             for _ in ('1, 2', [1.5, 2.5], [1, 2], (1, 2), np.array((1, 2)))),
            'fail':
            ((_, ValueError) for _ in ('aardvark', ('a', 1), (1, 2, 3)))
        },
        {
            'validator':
            validate_nseq_float(2),
            'success':
            ((_, [1.5, 2.5])
             for _ in ('1.5, 2.5', [1.5, 2.5], [1.5, 2.5], (1.5, 2.5),
                       np.array((1.5, 2.5)))),
            'fail':
            ((_, ValueError) for _ in ('aardvark', ('a', 1), (1, 2, 3)))
        },
        {
            'validator':
            validate_cycler,
            'success': (
                ('cycler("color", "rgb")', cycler("color", 'rgb')),
                (cycler('linestyle',
                        ['-', '--']), cycler('linestyle', ['-', '--'])),
                ("""(cycler("color", ["r", "g", "b"]) +
                          cycler("mew", [2, 3, 5]))""",
                 (cycler("color", 'rgb') +
                  cycler("markeredgewidth", [2, 3, 5]))),
                ("cycler(c='rgb', lw=[1, 2, 3])",
                 cycler('color', 'rgb') + cycler('linewidth', [1, 2, 3])),
                ("cycler('c', 'rgb') * cycler('linestyle', ['-', '--'])",
                 (cycler('color', 'rgb') * cycler('linestyle', ['-', '--']))),
                (cycler('ls', ['-', '--']), cycler('linestyle', ['-', '--'])),
                (cycler(mew=[2, 5]), cycler('markeredgewidth', [2, 5])),
            ),
            # This is *so* incredibly important: validate_cycler() eval's
            # an arbitrary string! I think I have it locked down enough,
            # and that is what this is testing.
            # TODO: Note that these tests are actually insufficient, as it may
            # be that they raised errors, but still did an action prior to
            # raising the exception. We should devise some additional tests
            # for that...
            'fail': (
                (4, ValueError),  # Gotta be a string or Cycler object
                ('cycler("bleh, [])', ValueError),  # syntax error
                ('Cycler("linewidth", [1, 2, 3])',
                 ValueError),  # only 'cycler()' function is allowed
                ('1 + 2', ValueError),  # doesn't produce a Cycler object
                ('os.system("echo Gotcha")', ValueError),  # os not available
                ('import os', ValueError),  # should not be able to import
                ('def badjuju(a): return a; badjuju(cycler("color", "rgb"))',
                 ValueError),  # Should not be able to define anything
                # even if it does return a cycler
                ('cycler("waka", [1, 2, 3])', ValueError),  # not a property
                ('cycler(c=[1, 2, 3])', ValueError),  # invalid values
                ("cycler(lw=['a', 'b', 'c'])", ValueError),  # invalid values
                (cycler('waka', [1, 3, 5]), ValueError),  # not a property
                (cycler('color', ['C1', 'r', 'g']), ValueError)  # no CN
            )
        },
        {
            'validator':
            validate_hatch,
            'success':
            (('--|', '--|'), ('\\oO', '\\oO'), ('/+*/.x', '/+*/.x'), ('', '')),
            'fail': (('--_', ValueError), (8, ValueError), ('X', ValueError)),
        },
        {
            'validator':
            validate_colorlist,
            'success': (
                ('r,g,b', ['r', 'g', 'b']),
                (['r', 'g', 'b'], ['r', 'g', 'b']),
                ('r, ,', ['r']),
                (['', 'g', 'blue'], ['g', 'blue']),
                ([np.array([1, 0, 0]),
                  np.array([0, 1, 0])], np.array([[1, 0, 0], [0, 1, 0]])),
                (np.array([[1, 0, 0], [0, 1,
                                       0]]), np.array([[1, 0, 0], [0, 1, 0]])),
            ),
            'fail': (('fish', ValueError), ),
        },
        {
            'validator':
            validate_color,
            'success': (
                ('None', 'none'),
                ('none', 'none'),
                ('AABBCC', '#AABBCC'),  # RGB hex code
                ('AABBCC00', '#AABBCC00'),  # RGBA hex code
                ('tab:blue', 'tab:blue'),  # named color
                ('C12', 'C12'),  # color from cycle
                ('(0, 1, 0)', (0.0, 1.0, 0.0)),  # RGB tuple
                ((0, 1, 0), (0, 1, 0)),  # non-string version
                ('(0, 1, 0, 1)', (0.0, 1.0, 0.0, 1.0)),  # RGBA tuple
                ((0, 1, 0, 1), (0, 1, 0, 1)),  # non-string version
            ),
            'fail': (
                ('tab:veryblue', ValueError),  # invalid name
                ('(0, 1)', ValueError),  # tuple with length < 3
                ('(0, 1, 0, 1, 0)', ValueError),  # tuple with length > 4
                ('(0, 1, none)', ValueError),  # cannot cast none to float
                ('(0, 1, "0.5")', ValueError),  # last one not a float
            ),
        },
        {
            'validator':
            validate_hist_bins,
            'success':
            (('auto', 'auto'), ('fd', 'fd'), ('10', 10), ('1, 2, 3', [1, 2,
                                                                      3]),
             ([1, 2, 3], [1, 2, 3]), (np.arange(15), np.arange(15))),
            'fail': (('aardvark', ValueError), )
        },
        {
            'validator':
            validate_markevery,
            'success':
            ((None, None), (1, 1), (0.1, 0.1), ((1, 1), (1, 1)),
             ((0.1, 0.1), (0.1, 0.1)), ([1, 2, 3], [1, 2, 3]),
             (slice(2), slice(None, 2, None)), (slice(1, 2, 3), slice(1, 2,
                                                                      3))),
            'fail':
            (((1, 2, 3), TypeError), ([1, 2,
                                       0.3], TypeError), (['a', 2,
                                                           3], TypeError),
             ([1, 2, 'a'], TypeError), ((0.1, 0.2, 0.3), TypeError),
             ((0.1, 2, 3), TypeError), ((1, 0.2, 0.3), TypeError),
             ((1, 0.1), TypeError), ((0.1, 1), TypeError),
             (('abc'), TypeError), ((1, 'a'), TypeError),
             ((0.1, 'b'), TypeError), (('a', 1), TypeError), (('a', 0.1),
                                                              TypeError),
             ('abc', TypeError), ('a', TypeError), (object(), TypeError))
        },
        {
            'validator':
            _validate_linestyle,
            'success': (
                ('-', '-'),
                ('solid', 'solid'),
                ('--', '--'),
                ('dashed', 'dashed'),
                ('-.', '-.'),
                ('dashdot', 'dashdot'),
                (':', ':'),
                ('dotted', 'dotted'),
                ('', ''),
                (' ', ' '),
                ('None', 'none'),
                ('none', 'none'),
                ('DoTtEd', 'dotted'),  # case-insensitive
                ('1, 3', (None, (1, 3))),
                ([1.23, 456], (None, [1.23, 456.0])),
                ([1, 2, 3, 4], (None, [1.0, 2.0, 3.0, 4.0])),
                ((None, [1, 2]), (None, [1, 2])),
                ((0, [1, 2]), (0, [1, 2])),
                ((-1, [1, 2]), (-1, [1, 2])),
            ),
            'fail': (
                ('aardvark', ValueError),  # not a valid string
                (b'dotted', ValueError),
                ('dotted'.encode('utf-16'), ValueError),
                ([1, 2, 3], ValueError),  # sequence with odd length
                (1.23, ValueError),  # not a sequence
                (("a", [1, 2]), ValueError),  # wrong explicit offset
                ((1, [1, 2, 3]), ValueError),  # odd length sequence
                (([1, 2], 1), ValueError),  # inverted offset/onoff
            )
        },
    )

    for validator_dict in validation_tests:
        validator = validator_dict['validator']
        if valid:
            for arg, target in validator_dict['success']:
                yield validator, arg, target
        else:
            for arg, error_type in validator_dict['fail']:
                yield validator, arg, error_type
Пример #8
0
            try_and_error(validate_none, validate_float),
            'fmt key to mask values less than a certain threshold'
        ],
        'plotter.baseplotter.maskgreater': [
            None,
            try_and_error(validate_none, validate_float),
            'fmt key to mask values greater than a certain threshold'
        ],
        'plotter.baseplotter.maskgeq': [
            None,
            try_and_error(validate_none, validate_float),
            'fmt key to mask values greater than or equal to a certain threshold'
        ],
        'plotter.baseplotter.maskbetween': [
            None,
            try_and_error(validate_none, validate_nseq_float(2)),
            'fmt key to mask values between a certain range'
        ],

        # density plotter
        'plotter.density.coord': [
            None,
            try_and_error(validate_none, validate_dataarray, validate_str,
                          validate_stringlist),
            'Alternative x-coordinate to use for DensityPlotter'
        ],
        'plotter.density.xrange': [
            'minmax', validate_limits,
            'The histogram limits of the density plot'
        ],
        'plotter.density.yrange': [
Пример #9
0
def test_validators():
    validation_tests = (
        {'validator': validate_bool,
         'success': chain(((_, True) for _ in
                           ('t', 'y', 'yes', 'on', 'true', '1', 1, True)),
                           ((_, False) for _ in
                            ('f', 'n', 'no', 'off', 'false', '0', 0, False))),
        'fail': ((_, ValueError)
                 for _ in ('aardvark', 2, -1, [], ))},
        {'validator': validate_stringlist,
         'success': (('', []),
                     ('a,b', ['a', 'b']),
                     ('aardvark', ['aardvark']),
                     ('aardvark, ', ['aardvark']),
                     ('aardvark, ,', ['aardvark']),
                     (['a', 'b'], ['a', 'b']),
                     (('a', 'b'), ['a', 'b']),
                     (iter(['a', 'b']), ['a', 'b']),
                     (np.array(['a', 'b']), ['a', 'b']),
                     ((1, 2), ['1', '2']),
                     (np.array([1, 2]), ['1', '2']),
                    ),
         'fail': ((dict(), ValueError),
                  (1, ValueError),
                 )
        },
        {'validator': validate_nseq_int(2),
         'success': ((_, [1, 2])
                     for _ in ('1, 2', [1.5, 2.5], [1, 2],
                               (1, 2), np.array((1, 2)))),
         'fail': ((_, ValueError)
                  for _ in ('aardvark', ('a', 1),
                            (1, 2, 3)
                            ))
        },
        {'validator': validate_nseq_float(2),
         'success': ((_, [1.5, 2.5])
                     for _ in ('1.5, 2.5', [1.5, 2.5], [1.5, 2.5],
                               (1.5, 2.5), np.array((1.5, 2.5)))),
         'fail': ((_, ValueError)
                  for _ in ('aardvark', ('a', 1),
                            (1, 2, 3)
                            ))
        },
        {'validator': validate_cycler,
         'success': (('cycler("color", "rgb")',
                      cycler("color", 'rgb')),
                     (cycler('linestyle', ['-', '--']),
                      cycler('linestyle', ['-', '--'])),
                     ("""(cycler("color", ["r", "g", "b"]) +
                          cycler("mew", [2, 3, 5]))""",
                      (cycler("color", 'rgb') +
                          cycler("markeredgewidth", [2, 3, 5]))),
                     ("cycler(c='rgb', lw=[1, 2, 3])",
                      cycler('color', 'rgb') + cycler('linewidth', [1, 2, 3])),
                     ("cycler('c', 'rgb') * cycler('linestyle', ['-', '--'])",
                      (cycler('color', 'rgb') *
                          cycler('linestyle', ['-', '--']))),
                     (cycler('ls', ['-', '--']),
                      cycler('linestyle', ['-', '--'])),
                     (cycler(mew=[2, 5]),
                      cycler('markeredgewidth', [2, 5])),
                    ),
         # This is *so* incredibly important: validate_cycler() eval's
         # an arbitrary string! I think I have it locked down enough,
         # and that is what this is testing.
         # TODO: Note that these tests are actually insufficient, as it may
         # be that they raised errors, but still did an action prior to
         # raising the exception. We should devise some additional tests
         # for that...
         'fail': ((4, ValueError),  # Gotta be a string or Cycler object
                  ('cycler("bleh, [])', ValueError),  # syntax error
                  ('Cycler("linewidth", [1, 2, 3])',
                      ValueError),  # only 'cycler()' function is allowed
                  ('1 + 2', ValueError),  # doesn't produce a Cycler object
                  ('os.system("echo Gotcha")', ValueError),  # os not available
                  ('import os', ValueError),  # should not be able to import
                  ('def badjuju(a): return a; badjuju(cycler("color", "rgb"))',
                      ValueError),  # Should not be able to define anything
                                    # even if it does return a cycler
                  ('cycler("waka", [1, 2, 3])', ValueError),  # not a property
                  ('cycler(c=[1, 2, 3])', ValueError),  # invalid values
                  ("cycler(lw=['a', 'b', 'c'])", ValueError),  # invalid values
                  (cycler('waka', [1, 3, 5]), ValueError),  # not a property
                  (cycler('color', ['C1', 'r', 'g']), ValueError)  # no CN
                 )
        },
        {'validator': validate_hatch,
         'success': (('--|', '--|'), ('\\oO', '\\oO'),
                     ('/+*/.x', '/+*/.x'), ('', '')),
         'fail': (('--_', ValueError),
                  (8, ValueError),
                  ('X', ValueError)),
        },
        {'validator': validate_colorlist,
         'success': (('r,g,b', ['r', 'g', 'b']),
                     (['r', 'g', 'b'], ['r', 'g', 'b']),
                     ('r, ,', ['r']),
                     (['', 'g', 'blue'], ['g', 'blue']),
                     ([np.array([1, 0, 0]), np.array([0, 1, 0])],
                         np.array([[1, 0, 0], [0, 1, 0]])),
                     (np.array([[1, 0, 0], [0, 1, 0]]),
                         np.array([[1, 0, 0], [0, 1, 0]])),
                    ),
         'fail': (('fish', ValueError),
                 ),
        },
        {'validator': validate_hist_bins,
         'success': (('auto', 'auto'),
                     ('10', 10),
                     ('1, 2, 3', [1, 2, 3]),
                     ([1, 2, 3], [1, 2, 3]),
                     (np.arange(15), np.arange(15))
                     ),
         'fail': (('aardvark', ValueError),
                  )
         }
    )

    for validator_dict in validation_tests:
        validator = validator_dict['validator']
        for arg, target in validator_dict['success']:
            yield _validation_test_helper, validator, arg, target
        for arg, error_type in validator_dict['fail']:
            yield _validation_fail_helper, validator, arg, error_type
Пример #10
0
def generate_validator_testcases(valid):
    validation_tests = (
        {'validator': validate_bool,
         'success': chain(((_, True) for _ in
                           ('t', 'y', 'yes', 'on', 'true', '1', 1, True)),
                           ((_, False) for _ in
                            ('f', 'n', 'no', 'off', 'false', '0', 0, False))),
        'fail': ((_, ValueError)
                 for _ in ('aardvark', 2, -1, [], ))},
        {'validator': validate_stringlist,
         'success': (('', []),
                     ('a,b', ['a', 'b']),
                     ('aardvark', ['aardvark']),
                     ('aardvark, ', ['aardvark']),
                     ('aardvark, ,', ['aardvark']),
                     (['a', 'b'], ['a', 'b']),
                     (('a', 'b'), ['a', 'b']),
                     (iter(['a', 'b']), ['a', 'b']),
                     (np.array(['a', 'b']), ['a', 'b']),
                     ((1, 2), ['1', '2']),
                     (np.array([1, 2]), ['1', '2']),
                    ),
         'fail': ((dict(), ValueError),
                  (1, ValueError),
                 )
        },
        {'validator': validate_nseq_int(2),
         'success': ((_, [1, 2])
                     for _ in ('1, 2', [1.5, 2.5], [1, 2],
                               (1, 2), np.array((1, 2)))),
         'fail': ((_, ValueError)
                  for _ in ('aardvark', ('a', 1),
                            (1, 2, 3)
                            ))
        },
        {'validator': validate_nseq_float(2),
         'success': ((_, [1.5, 2.5])
                     for _ in ('1.5, 2.5', [1.5, 2.5], [1.5, 2.5],
                               (1.5, 2.5), np.array((1.5, 2.5)))),
         'fail': ((_, ValueError)
                  for _ in ('aardvark', ('a', 1),
                            (1, 2, 3)
                            ))
        },
        {'validator': validate_cycler,
         'success': (('cycler("color", "rgb")',
                      cycler("color", 'rgb')),
                     (cycler('linestyle', ['-', '--']),
                      cycler('linestyle', ['-', '--'])),
                     ("""(cycler("color", ["r", "g", "b"]) +
                          cycler("mew", [2, 3, 5]))""",
                      (cycler("color", 'rgb') +
                          cycler("markeredgewidth", [2, 3, 5]))),
                     ("cycler(c='rgb', lw=[1, 2, 3])",
                      cycler('color', 'rgb') + cycler('linewidth', [1, 2, 3])),
                     ("cycler('c', 'rgb') * cycler('linestyle', ['-', '--'])",
                      (cycler('color', 'rgb') *
                          cycler('linestyle', ['-', '--']))),
                     (cycler('ls', ['-', '--']),
                      cycler('linestyle', ['-', '--'])),
                     (cycler(mew=[2, 5]),
                      cycler('markeredgewidth', [2, 5])),
                    ),
         # This is *so* incredibly important: validate_cycler() eval's
         # an arbitrary string! I think I have it locked down enough,
         # and that is what this is testing.
         # TODO: Note that these tests are actually insufficient, as it may
         # be that they raised errors, but still did an action prior to
         # raising the exception. We should devise some additional tests
         # for that...
         'fail': ((4, ValueError),  # Gotta be a string or Cycler object
                  ('cycler("bleh, [])', ValueError),  # syntax error
                  ('Cycler("linewidth", [1, 2, 3])',
                      ValueError),  # only 'cycler()' function is allowed
                  ('1 + 2', ValueError),  # doesn't produce a Cycler object
                  ('os.system("echo Gotcha")', ValueError),  # os not available
                  ('import os', ValueError),  # should not be able to import
                  ('def badjuju(a): return a; badjuju(cycler("color", "rgb"))',
                      ValueError),  # Should not be able to define anything
                                    # even if it does return a cycler
                  ('cycler("waka", [1, 2, 3])', ValueError),  # not a property
                  ('cycler(c=[1, 2, 3])', ValueError),  # invalid values
                  ("cycler(lw=['a', 'b', 'c'])", ValueError),  # invalid values
                  (cycler('waka', [1, 3, 5]), ValueError),  # not a property
                  (cycler('color', ['C1', 'r', 'g']), ValueError)  # no CN
                 )
        },
        {'validator': validate_hatch,
         'success': (('--|', '--|'), ('\\oO', '\\oO'),
                     ('/+*/.x', '/+*/.x'), ('', '')),
         'fail': (('--_', ValueError),
                  (8, ValueError),
                  ('X', ValueError)),
        },
        {'validator': validate_colorlist,
         'success': (('r,g,b', ['r', 'g', 'b']),
                     (['r', 'g', 'b'], ['r', 'g', 'b']),
                     ('r, ,', ['r']),
                     (['', 'g', 'blue'], ['g', 'blue']),
                     ([np.array([1, 0, 0]), np.array([0, 1, 0])],
                         np.array([[1, 0, 0], [0, 1, 0]])),
                     (np.array([[1, 0, 0], [0, 1, 0]]),
                         np.array([[1, 0, 0], [0, 1, 0]])),
                    ),
         'fail': (('fish', ValueError),
                 ),
        },
        {'validator': validate_hist_bins,
         'success': (('auto', 'auto'),
                     ('10', 10),
                     ('1, 2, 3', [1, 2, 3]),
                     ([1, 2, 3], [1, 2, 3]),
                     (np.arange(15), np.arange(15))
                     ),
         'fail': (('aardvark', ValueError),
                  )
         }
    )

    # The behavior of _validate_linestyle depends on the version of Python.
    # ASCII-compliant bytes arguments should pass on Python 2 because of the
    # automatic conversion between bytes and strings. Python 3 does not
    # perform such a conversion, so the same cases should raise an exception.
    #
    # Common cases:
    ls_test = {'validator': _validate_linestyle,
               'success': (('-', '-'), ('solid', 'solid'),
                           ('--', '--'), ('dashed', 'dashed'),
                           ('-.', '-.'), ('dashdot', 'dashdot'),
                           (':', ':'), ('dotted', 'dotted'),
                           ('', ''), (' ', ' '),
                           ('None', 'none'), ('none', 'none'),
                           ('DoTtEd', 'dotted'),  # case-insensitive
                           (['1.23', '4.56'], (None, [1.23, 4.56])),
                           ([1.23, 456], (None, [1.23, 456.0])),
                           ([1, 2, 3, 4], (None, [1.0, 2.0, 3.0, 4.0])),
                          ),
               'fail': (('aardvark', ValueError),  # not a valid string
                        ('dotted'.encode('utf-16'), ValueError),  # even on PY2
                        ((None, [1, 2]), ValueError),  # (offset, dashes) != OK
                        ((0, [1, 2]), ValueError),  # idem
                        ((-1, [1, 2]), ValueError),  # idem
                        ([1, 2, 3], ValueError),  # sequence with odd length
                        (1.23, ValueError),  # not a sequence
                       )
                }
    # Add some cases of bytes arguments that Python 2 can convert silently:
    ls_bytes_args = (b'dotted', 'dotted'.encode('ascii'))
    if six.PY3:
        ls_test['fail'] += tuple((arg, ValueError) for arg in ls_bytes_args)
    else:
        ls_test['success'] += tuple((arg, 'dotted') for arg in ls_bytes_args)
    # Update the validation test sequence.
    validation_tests += (ls_test,)

    for validator_dict in validation_tests:
        validator = validator_dict['validator']
        if valid:
            for arg, target in validator_dict['success']:
                yield validator, arg, target
        else:
            for arg, error_type in validator_dict['fail']:
                yield validator, arg, error_type
Пример #11
0
}

# MetaVarsAttr defaults
default_meta_vars = {
    'type': ['N', validate_elab_type],
    'vals': [DataFrame(), validate_df],
    'des': [u'', unicode],
    'munit': ['', validate_munit],
    'elab': [None, validate_elab],
    'rlp': [None, validate_rlp], # to be removed
    'label': [u'', unicode],
}

# MetaGraph defaults
default_meta_graph = {
    'size' : [(3.2, 2.0), rcsetup.validate_nseq_float(2)],
    'fontsize': [12.0, rcsetup.validate_float],
    'title': [u'', unicode],
    'caption': [u'', unicode],
    'legend': [True, validate_bool],
    'footnote': [u'', unicode],
}

# MetaVarsAttrGraph defaults
default_meta_graph_vars = {
    'type': ['plot', validate_graph_type],
    'label': [u'', unicode],
    'ticklabels': [Series(), validate_ticks],
    'ax': ['sx', validate_ax],
    'color': ['#34e5ac', rcsetup.validate_color],
    'cumulate': [None, validate_cumulate],