summaryrefslogtreecommitdiff
path: root/test/units/module_utils/common/text/converters/test_json_encode_fallback.py
blob: 808bf4102477f763d0c653f3325e45582e285fe2 (plain)
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
# -*- coding: utf-8 -*-
# Copyright 2019, Andrew Klychkov @Andersson007 <aaklychkov@mail.ru>
# Simplified BSD License (see licenses/simplified_bsd.txt or https://opensource.org/licenses/BSD-2-Clause)

from __future__ import absolute_import, division, print_function
__metaclass__ = type

import pytest

from datetime import datetime, timedelta, tzinfo

from ansible.module_utils.common.text.converters import _json_encode_fallback


class timezone(tzinfo):
    """Simple timezone implementation for use until we drop Python 2.7 support."""
    def __init__(self, offset):
        self._offset = offset

    def utcoffset(self, dt):
        return self._offset


@pytest.mark.parametrize(
    'test_input,expected',
    [
        (set([1]), [1]),
        (datetime(2019, 5, 14, 13, 39, 38, 569047), '2019-05-14T13:39:38.569047'),
        (datetime(2019, 5, 14, 13, 47, 16, 923866), '2019-05-14T13:47:16.923866'),
        (datetime(2019, 6, 15, 14, 45, tzinfo=timezone(timedelta(0))), '2019-06-15T14:45:00+00:00'),
        (datetime(2019, 6, 15, 14, 45, tzinfo=timezone(timedelta(hours=1, minutes=40))), '2019-06-15T14:45:00+01:40'),
    ]
)
def test_json_encode_fallback(test_input, expected):
    """
    Test for passing expected objects to _json_encode_fallback().
    """
    assert _json_encode_fallback(test_input) == expected


@pytest.mark.parametrize(
    'test_input',
    [
        1,
        1.1,
        u'string',
        b'string',
        [1, 2],
        True,
        None,
        {1: 1},
        (1, 2),
    ]
)
def test_json_encode_fallback_default_behavior(test_input):
    """
    Test for _json_encode_fallback() default behavior.

    It must fail with TypeError.
    """
    with pytest.raises(TypeError, match='Cannot json serialize'):
        _json_encode_fallback(test_input)