Esempio n. 1
0
def test_safe_list():
    client = Client('http://mock.com/')
    test_list = ['1', '1.2', 'string', 'True', ['1', '2'],
                 {'key': 'value'}, '10/10/2010']
    expected_list = [1, 1.2, 'string', True, [1, 2], {'key': 'value'},
                     datetime.date(2010, 10, 10)]
    assert client._safe(test_list) == expected_list
Esempio n. 2
0
def test_safe_element():
    client = Client('http://mock.com/')
    assert type(client._safe('1')) == int
    assert type(client._safe('1.2')) == float
    assert type(client._safe('string')) == str
    assert type(client._safe('10:20')) == datetime.time
    assert type(client._safe('10:20:40')) == datetime.time
    assert type(client._safe('10/10/2010')) == datetime.date
    assert type(client._safe('10/10/2010 10:10')) == datetime.datetime
    assert type(client._safe('10/10/2010 10:10:20')) == datetime.datetime
Esempio n. 3
0
def test_client_get():
    responses.add(responses.GET, 'http://mock.com/path',
                  body='data', status=200)
    response = Client('http://mock.com/')._get('path')

    assert len(responses.calls) == 1
    assert response == 'data'
Esempio n. 4
0
def test_client_get_error_404():
    responses.add(responses.GET, 'http://mock.com/path',
                  body='not found', status=404)
    with pytest.raises(ClientError, message='[404]: None'):
        Client('http://mock.com/')._get('path')

    assert len(responses.calls) == 1
Esempio n. 5
0
def test_client_get_error_500():
    responses.add(responses.GET, 'http://mock.com/path',
                  body='service unavailable', status=503)
    with pytest.raises(ClientServerError):
        Client('http://mock.com/')._get('path')

    assert len(responses.calls) == 1
Esempio n. 6
0
def test_make_dict_from_tree():
    xml_string = """
    <parent>
        <child>Test1</child>
        <child>Test2</child>
        <child>Test3</child>
    </parent>
    """
    expected_dict = {
        'parent': {
            'child': ['Test1', 'Test2', 'Test3']
        }
    }
    client = Client('http://mock.com/')
    etree = ElementTree(fromstring(xml_string))
    result_dict = client._make_dict_from_tree(etree.getroot())
    assert result_dict == expected_dict
Esempio n. 7
0
def test_xml_attributes_to_list():
    xml_string = """
    <parent>
        <child id="1" description="test 1"/>
        <child id="2" description="test 2"/>
        <child id="3" description="test 3"/>
        <child id="4" description="test 4"/>
    </parent>
    """
    expected_list = [
        {'id': '1', 'description': 'test 1'},
        {'id': '2', 'description': 'test 2'},
        {'id': '3', 'description': 'test 3'},
        {'id': '4', 'description': 'test 4'},
    ]
    client = Client('http://mock.com/')
    result_list = client._xml_attributes_to_list(xml_string, 'child')
    assert result_list == expected_list
Esempio n. 8
0
def test_safe_datetime_element():
    client = Client('http://mock.com/')
    assert isinstance(client._safe_element('10:30'), datetime.time)
    assert isinstance(client._safe_element('10:30:40'), datetime.time)
    assert isinstance(client._safe_element('10/10/2000'), datetime.date)
    assert isinstance(client._safe_element('10/10/2000 10:00'),
                      datetime.datetime)
    assert isinstance(client._safe_element('10/10/2000 10:00:12'),
                      datetime.datetime)
Esempio n. 9
0
def test_tree_attributes_to_list():
    xml_string = """
    <grandparent>
        <parent>
            <child id="1" description="test 1"/>
            <child id="2" description="test 2"/>
            <child id="3" description="test 3"/>
            <child id="4" description="test 4"/>
        </parent>
    </grandparent>
    """
    expected_list = [
        {'id': '1', 'description': 'test 1'},
        {'id': '2', 'description': 'test 2'},
        {'id': '3', 'description': 'test 3'},
        {'id': '4', 'description': 'test 4'},
    ]
    element_tree = ElementTree(fromstring(xml_string))
    client = Client('http://mock.com/')
    result_list = client._tree_attributes_to_list(element_tree, 'parent')
    assert result_list == expected_list
Esempio n. 10
0
def test_safe_dict():
    client = Client('http://mock.com/')
    test_dict = {
        'int': '1',
        'float': '1.2',
        'str': 'string',
        'bool': 'True',
        'list': ['1', '2'],
        'dict': {'key': 'value'},
        'date': '10/10/2010',
    }
    expected_dict = {
        'int': 1,
        'float': 1.2,
        'str': 'string',
        'bool': True,
        'list': [1, 2],
        'dict': {'key': 'value'},
        'date': datetime.date(2010, 10, 10),
    }
    assert client._safe(test_dict) == expected_dict
Esempio n. 11
0
def test_safe_str_element():
    client = Client('http://mock.com/')
    assert type(client._safe_element('String')) == str
Esempio n. 12
0
def test_safe_float_element():
    client = Client('http://mock.com/')
    assert type(client._safe_element('1.2')) == float
Esempio n. 13
0
def test_safe_int_element():
    client = Client('http://mock.com/')
    assert type(client._safe_element('1')) == int
Esempio n. 14
0
def test_safe_bool_element():
    client = Client('http://mock.com/')
    assert type(client._safe_element('True')) == bool
    assert type(client._safe_element('False')) == bool
    assert type(client._safe_element('true')) == bool
    assert type(client._safe_element('false')) == bool
Esempio n. 15
0
def test_safe_list_element():
    client = Client('http://mock.com/')
    assert type(client._safe_element([1, 2])) == list
Esempio n. 16
0
def test_safe_dict_element():
    client = Client('http://mock.com/')
    assert type(client._safe_element({'key1': 'value'})) == dict
Esempio n. 17
0
def test_client_instance():
    client = Client('host', timeout=10)
    assert client.host == 'host'
    assert client.timeout == 10
Esempio n. 18
0
def test_make_dict_from_empty_tree():
    etree = ElementTree()
    client = Client('http://mock.com/')
    expected_dict = {}
    assert client._make_dict_from_tree(etree.getroot()) == expected_dict