Skip to main content

No project description provided

Project description

Compare For Testing Overview

Installation

Install from PyPi:

pip install compare-for-testing

Importing

from compare_for_testing import compare  # For compare of 2 objects

Example

json_1 = {
    'a': 1,
    'b': 2,
    'empty': '',
}

json_2 = {
    'aa': True,
    'b': 4,
    'empty': '!empty',
    'empty_failed': '!empty',
}
result = compare(json_2, json_1)

{
    'aa': {'Хотели': True, 'Получили': "Поля 'aa' нет в ответе"},
    'b': {'Хотели': 4, 'Получили': 2},
    'empty_failed': {'Хотели': '!empty', 'Получили': "Поля 'empty_failed' нет в ответе"}
}
json_1 = {

    'c': [
        {
            'sub_a': 1,
            'sub_b': 3
        },
        {
            'sub_a': 2,
            'sub_b': 4
        },
        {
            'sub_a': 3,
            'sub_b': 5,
            'sub_c': {
                'name': 'test',
                'id': 5,
            }
        },
    ],
}

json_2 = {

    'c': [
        {
            'sub_a': 11,
            'sub_b': 43
        },
        {
            'sub_a': 21,
            'sub_b': 4
        },
        {
            'sub_a': '!not_empty',
            'sub_b': '!empty',
            'sub_c': {
                'name': 'test',
                'name2': 'test',
            }
        },
        {
            'sub_a': '!not_empty',
            'sub_b': 8,
            'sub_c': {
                'name': 'test',
            }
        },
    ],
}
result = compare(json_2, json_1)

{
    'c': {
        0: {
            'sub_a': {'Хотели': 11, 'Получили': 1},
            'sub_b': {'Хотели': 43, 'Получили': 3}
        },
        1: {
            'sub_a': {'Хотели': 21, 'Получили': 2}
        },
        2: {
            'sub_b': {'Хотели': '!empty', 'Получили': 5},
            'sub_c': {
                'name2': {'Хотели': 'test', 'Получили': "Поля 'name2' нет в ответе"}
            }
        },
        3: {
            'Хотели': {'sub_a': '!not_empty', 'sub_b': 8, 'sub_c': {'name': 'test'}},
            'Получили': None
        }
    }
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

compare_for_testing-1.2.1.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

compare_for_testing-1.2.1-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page