コード例 #1
0
def test_normalize_08():
    from swagger_py_codegen.jsonschema import normalize

    class A(object):
        def __init__(self, visible_property):
            self.visible_property = visible_property

    class B(object):
        def __init__(self, subobject):
            self.subobject = subobject

    schema = {
        'additionalProperties': {
            'required': ['subobject'],
            'properties': {
                'subobject': {
                    'type': 'string',
                    'description': 'Some string value'
                }
            }
        },
        'discriminator': 'response info',
        'type': 'object',
        'properties': {
            'visible_property': {
                'type': 'string',
                'description': 'This is a property that you can see'
            }
        }
    }

    data = A(visible_property='default property')
    data.additional_property1 = B('test1')
    data.additional_property2 = B('test2')
    result, errors = normalize(schema, data)
    assert errors == []
    assert result['visible_property'] == 'default property'
    assert result['additional_property1'] == {'subobject': 'test1'}
    assert result['additional_property2'] == {'subobject': 'test2'}

    default = {
        'visible_property': 'default visible property',
        'additional_property01': {'subobject': 'test01'},
        'additional_property02': {},
    }
    result, errors = normalize(schema, default)
    assert len(errors) == 1
    assert result['visible_property'] == 'default visible property'
    assert result['additional_property01'] == {'subobject': 'test01'}

    default = {
        'visible_property': 'default visible property',
        'additional_property01': {'subobject': 'test01'},
        'additional_property02': {'subobject': 'test02'},
    }
    result, errors = normalize(schema, default)
    assert errors == []
    assert result['visible_property'] == 'default visible property'
    assert result['additional_property01'] == {'subobject': 'test01'}
    assert result['additional_property02'] == {'subobject': 'test02'}
コード例 #2
0
def test_normalize_08():
    from swagger_py_codegen.jsonschema import normalize

    class A(object):
        def __init__(self, visible_property):
            self.visible_property = visible_property

    class B(object):
        def __init__(self, subobject):
            self.subobject = subobject

    schema = {
        'additionalProperties': {
            'required': ['subobject'],
            'properties': {
                'subobject': {
                    'type': 'string',
                    'description': 'Some string value'
                }
            }
        },
        'discriminator': 'response info',
        'type': 'object',
        'properties': {
            'visible_property': {
                'type': 'string',
                'description': 'This is a property that you can see'
            }
        }
    }

    data = A(visible_property='default property')
    data.additional_property1 = B('test1')
    data.additional_property2 = B('test2')
    result, errors = normalize(schema, data)
    assert errors == []
    assert result['visible_property'] == 'default property'
    assert result['additional_property1'] == {'subobject': 'test1'}
    assert result['additional_property2'] == {'subobject': 'test2'}

    default = {
        'visible_property': 'default visible property',
        'additional_property01': {'subobject': 'test01'},
        'additional_property02': {},
    }
    result, errors = normalize(schema, default)
    assert len(errors) == 1
    assert result['visible_property'] == 'default visible property'
    assert result['additional_property01'] == {'subobject': 'test01'}

    default = {
        'visible_property': 'default visible property',
        'additional_property01': {'subobject': 'test01'},
        'additional_property02': {'subobject': 'test02'},
    }
    result, errors = normalize(schema, default)
    assert errors == []
    assert result['visible_property'] == 'default visible property'
    assert result['additional_property01'] == {'subobject': 'test01'}
    assert result['additional_property02'] == {'subobject': 'test02'}
コード例 #3
0
def test_normalize_06():
    from swagger_py_codegen.jsonschema import normalize

    schema = {
        'description':
        'A representation of a cat',
        'allOf': [{
            'discriminator': 'petType',
            'required': ['name', 'petType'],
            'type': 'object',
            'properties': {
                'petType': {
                    'type': 'string'
                },
                'name': {
                    'type': 'string'
                }
            }
        }, {
            'required': ['huntingSkill'],
            'type': 'object',
            'properties': {
                'huntingSkill': {
                    'default': 'lazy',
                    'enum': ['clueless', 'lazy', 'adventurous', 'aggressive'],
                    'type': 'string',
                    'description': 'The measured skill for hunting'
                }
            }
        }]
    }
    default = {'name': 'bob', 'petType': 'cat', 'huntingSkill': 'lazy'}
    result, errors = normalize(schema, default)
    assert errors == []
    assert result['name'] == 'bob'
    assert result['petType'] == 'cat'
    assert result['huntingSkill'] == 'lazy'

    default = {
        'name': 'bob',
        'petType': 'cat',
    }
    result, errors = normalize(schema, default)
    assert errors == []
    assert result['name'] == 'bob'
    assert result['petType'] == 'cat'
    assert result['huntingSkill'] == 'lazy'

    default = {'name': 'bob', 'huntingSkill': 'lazy'}
    result, errors = normalize(schema, default)
    assert errors
    assert len(errors) == 1
    assert result['huntingSkill'] == 'lazy'

    default = {'huntingSkill': 'lazy'}
    result, errors = normalize(schema, default)
    assert errors
    assert len(errors) == 2
    assert result['huntingSkill'] == 'lazy'
コード例 #4
0
def test_normalize_02():
    from swagger_py_codegen.jsonschema import normalize

    schema = {
        'required': ['id', 'name', 'gender', 'roles'],
        'type': 'object',
        'properties': {
            'id': { 'type': 'integer' },
            'name': { 'type': 'string' },
            'gender': { 'type': 'string', 'default': 'unknown' },
            'address': {
                'type': 'object',
                'properties': {
                    'city': { 'type': 'string', 'default': 'beijing' },
                    'country': { 'type': 'string', 'default': 'china'}
                }
            },
            'age': { 'type': 'integer' },
            'roles': {
                'type': 'array',
                'items': {
                    'type': 'string',
                    'default': 'user',
                    'enum': ['user', 'admin']
                }
            }
        }
    }
    default = {
        'id': 123,
        'name': 'bob',
        'gender': 'male',
        'address': {
            'city': 'shenzhen'
        },
        'roles': ['admin', 'user']
    }
    result, errors = normalize(schema, default)
    assert result['id'] == 123
    assert result['name'] == 'bob'
    assert result['address'] == {'city': 'shenzhen', 'country': 'china'}
    assert result['roles'] == ['admin', 'user']

    default = {
        'id': 123,
        'name': 'bob',
        'gender': 'male',
        'address': {
            'city': 'shenzhen'
        }
    }
    result, errors = normalize(schema, default)
    assert 'roles' not in list(result.keys())
    assert errors
コード例 #5
0
def test_normalize_02():
    from swagger_py_codegen.jsonschema import normalize

    schema = {
        'required': ['id', 'name', 'gender', 'roles'],
        'type': 'object',
        'properties': {
            'id': { 'type': 'integer' },
            'name': { 'type': 'string' },
            'gender': { 'type': 'string', 'default': 'unknown' },
            'address': {
                'type': 'object',
                'properties': {
                    'city': { 'type': 'string', 'default': 'beijing' },
                    'country': { 'type': 'string', 'default': 'china'}
                }
            },
            'age': { 'type': 'integer' },
            'roles': {
                'type': 'array',
                'items': {
                    'type': 'string',
                    'default': 'user',
                    'enum': ['user', 'admin']
                }
            }
        }
    }
    default = {
        'id': 123,
        'name': 'bob',
        'gender': 'male',
        'address': {
            'city': 'shenzhen'
        },
        'roles': ['admin', 'user']
    }
    result, errors = normalize(schema, default)
    assert result['id'] == 123
    assert result['name'] == 'bob'
    assert result['address'] == {'city': 'shenzhen', 'country': 'china'}
    assert result['roles'] == ['admin', 'user']

    default = {
        'id': 123,
        'name': 'bob',
        'gender': 'male',
        'address': {
            'city': 'shenzhen'
        }
    }
    result, errors = normalize(schema, default)
    assert 'roles' not in list(result.keys())
    assert errors
コード例 #6
0
def test_normalize_05():
    from swagger_py_codegen.jsonschema import normalize

    class Pet(object):
        def __init__(self, name, petType):
            self.name = name
            self.petType = petType

    class Cat(Pet):
        def __init__(self, huntingSkill, **kwargs):
            if kwargs:
                super(Cat, self).__init__(**kwargs)
            self.huntingSkill = huntingSkill

    schema = {
        'description':
        'A representation of a cat',
        'allOf': [{
            'discriminator': 'petType',
            'required': ['name', 'petType'],
            'type': 'object',
            'properties': {
                'petType': {
                    'type': 'string'
                },
                'name': {
                    'type': 'string'
                }
            }
        }, {
            'required': ['huntingSkill'],
            'type': 'object',
            'properties': {
                'huntingSkill': {
                    'default': 'lazy',
                    'enum': ['clueless', 'lazy', 'adventurous', 'aggressive'],
                    'type': 'string',
                    'description': 'The measured skill for hunting'
                }
            }
        }]
    }

    result, errors = normalize(
        schema, Cat(huntingSkill='lazy', name='bob', petType='cat'))
    assert errors == []
    assert result['name'] == 'bob'
    assert result['petType'] == 'cat'
    assert result['huntingSkill'] == 'lazy'

    result, errors = normalize(schema, Cat(huntingSkill='lazy'))
    assert result['huntingSkill'] == 'lazy'
    assert errors
    assert len(errors) == 2
コード例 #7
0
def test_normalize_09():
    from swagger_py_codegen.jsonschema import normalize

    class A(object):
        def __init__(self, visible_property):
            self.visible_property = visible_property

    schema = {
        'additionalProperties': {},
        'discriminator': 'response info',
        'type': 'object',
        'properties': {
            'visible_property': {
                'type': 'string',
                'description': 'This is a property that you can see'
            },
            'aps': {
                'additionalProperties': True,
            }
        }
    }

    data = A(visible_property='the property you see')
    data.aps = A('aps')
    data.additional_property1 = 'string'
    data.additional_property2 = 123
    data.aps.additional_property1 = 'aps.string'
    data.aps.additional_property2 = 1234
    result, errors = normalize(schema, data)
    assert errors == []
    assert result['visible_property'] == 'the property you see'
    assert result['additional_property1'] == 'string'
    assert result['additional_property2'] == 123
    assert result['aps']['additional_property1'] == 'aps.string'
    assert result['aps']['additional_property2'] == 1234

    default = {
        'visible_property': 'default visible property',
        'additional_property01': 'test01',
        'additional_property02': 123,
        'aps': {
            'additional_property01': 'aps.test01',
            'additional_property02': 1234,
        }
    }
    result, errors = normalize(schema, default)
    assert errors == []
    assert result['visible_property'] == 'default visible property'
    assert result['additional_property01'] == 'test01'
    assert result['additional_property02'] == 123
    assert result['aps']['additional_property01'] == 'aps.test01'
    assert result['aps']['additional_property02'] == 1234
コード例 #8
0
def test_normalize_09():
    from swagger_py_codegen.jsonschema import normalize

    class A(object):
        def __init__(self, visible_property):
            self.visible_property = visible_property

    schema = {
        'additionalProperties': {},
        'discriminator': 'response info',
        'type': 'object',
        'properties': {
            'visible_property': {
                'type': 'string',
                'description': 'This is a property that you can see'
            },
            'aps': {
                'additionalProperties': True,
            }
        }
    }

    data = A(visible_property='the property you see')
    data.aps = A('aps')
    data.additional_property1 = 'string'
    data.additional_property2 = 123
    data.aps.additional_property1 = 'aps.string'
    data.aps.additional_property2 = 1234
    result, errors = normalize(schema, data)
    assert errors == []
    assert result['visible_property'] == 'the property you see'
    assert result['additional_property1'] == 'string'
    assert result['additional_property2'] == 123
    assert result['aps']['additional_property1'] == 'aps.string'
    assert result['aps']['additional_property2'] == 1234

    default = {
        'visible_property': 'default visible property',
        'additional_property01': 'test01',
        'additional_property02': 123,
        'aps': {
            'additional_property01': 'aps.test01',
            'additional_property02': 1234,
        }
    }
    result, errors = normalize(schema, default)
    assert errors == []
    assert result['visible_property'] == 'default visible property'
    assert result['additional_property01'] == 'test01'
    assert result['additional_property02'] == 123
    assert result['aps']['additional_property01'] == 'aps.test01'
    assert result['aps']['additional_property02'] == 1234
コード例 #9
0
def test_normalize_05():
    from swagger_py_codegen.jsonschema import normalize
    class Pet(object):
        def __init__(self, name, petType):
            self.name = name
            self.petType = petType

    class Cat(Pet):
        def __init__(self, huntingSkill, **kwargs):
            if kwargs:
                super(Cat, self).__init__(**kwargs)
            self.huntingSkill = huntingSkill

    schema = {
        'description': 'A representation of a cat',
        'allOf': [
            {
                'discriminator': 'petType',
                'required': ['name', 'petType'],
                'type': 'object',
                'properties': {
                    'petType': {'type': 'string'},
                    'name': {'type': 'string'}
                }
            },
            {
                'required': ['huntingSkill'],
                'type': 'object',
                'properties': {
                    'huntingSkill': {
                        'default': 'lazy',
                        'enum': ['clueless', 'lazy', 'adventurous', 'aggressive'],
                        'type': 'string',
                        'description': 'The measured skill for hunting'
                    }
                }
            }
        ]
    }

    result, errors = normalize(schema, Cat(huntingSkill='lazy', name='bob', petType='cat'))
    assert errors == []
    assert result['name'] == 'bob'
    assert result['petType'] == 'cat'
    assert result['huntingSkill'] == 'lazy'

    result, errors = normalize(schema, Cat(huntingSkill='lazy'))
    assert result['huntingSkill'] == 'lazy'
    assert errors
    assert len(errors) == 2
コード例 #10
0
def test_normalize_01():
    from swagger_py_codegen.jsonschema import normalize

    class User:
        def __init__(self):
            self.id = 123
            self.name = 'somename'
            self.password = '******'
            self.address = object()

        @property
        def age(self):
            return 18

    schema = {
        'required': ['id', 'name', 'gender', 'roles'],
        'type': 'object',
        'properties': {
            'id': { 'type': 'integer' },
            'name': { 'type': 'string' },
            'gender': { 'type': 'string', 'default': 'unknown' },
            'address': {
                'type': 'object',
                'properties': {
                    'city': { 'type': 'string', 'default': 'beijing' },
                    'country': { 'type': 'string', 'default': 'china'}
                }
            },
            'age': { 'type': 'integer' },
            'roles': {
                'type': 'array',
                'items': {
                    'type': 'string',
                    'default': 'user',
                    'enum': ['user', 'admin']
                },
                'default': ['user']
            }
        }
    }

    user, errors = normalize(schema, User())

    assert not errors
    assert 'password' not in user
    assert user['gender'] == 'unknown'
    assert user['address']['city'] == 'beijing'
    assert user['age'] == 18
    assert user['roles'] == ['user']

    schema = {
        'type': 'array',
        'items': schema
    }
    users, errors = normalize(schema, [User()])
    user = users.pop()
    assert not errors
    assert 'password' not in user
    assert user['gender'] == 'unknown'
    assert user['address']['city'] == 'beijing'
    assert user['age'] == 18
    assert user['roles'] == ['user']

    del schema['items']['properties']['roles']['default']
    users, errors = normalize(schema, [User()])
    user = users.pop()
    assert 'roles' not in list(user.keys())
    assert errors

    user = User()
    user.roles = ['admin']
    results, errors = normalize(schema, [user])
    result = results.pop()
    assert result['roles'] == ['admin']
コード例 #11
0
def test_normalize_06():
    from swagger_py_codegen.jsonschema import normalize

    schema = {
        'description': 'A representation of a cat',
        'allOf': [
            {
                'discriminator': 'petType',
                'required': ['name', 'petType'],
                'type': 'object',
                'properties': {
                    'petType': {'type': 'string'},
                    'name': {'type': 'string'}
                }
            },
            {
                'required': ['huntingSkill'],
                'type': 'object',
                'properties': {
                    'huntingSkill': {
                        'default': 'lazy',
                        'enum': ['clueless', 'lazy', 'adventurous', 'aggressive'],
                        'type': 'string',
                        'description': 'The measured skill for hunting'
                    }
                }
            }
        ]
    }
    default = {
        'name': 'bob',
        'petType': 'cat',
        'huntingSkill': 'lazy'
    }
    result, errors = normalize(schema, default)
    assert errors == []
    assert result['name'] == 'bob'
    assert result['petType'] == 'cat'
    assert result['huntingSkill'] == 'lazy'

    default = {
        'name': 'bob',
        'petType': 'cat',
    }
    result, errors = normalize(schema, default)
    assert errors == []
    assert result['name'] == 'bob'
    assert result['petType'] == 'cat'
    assert result['huntingSkill'] == 'lazy'

    default = {
        'name': 'bob',
        'huntingSkill': 'lazy'
    }
    result, errors = normalize(schema, default)
    assert errors
    assert len(errors) == 1
    assert result['huntingSkill'] == 'lazy'

    default = {
        'huntingSkill': 'lazy'
    }
    result, errors = normalize(schema, default)
    assert errors
    assert len(errors) == 2
    assert result['huntingSkill'] == 'lazy'
コード例 #12
0
def test_normalize_01():
    from swagger_py_codegen.jsonschema import normalize

    class User:
        def __init__(self):
            self.id = 123
            self.name = 'somename'
            self.password = '******'
            self.address = object()

        @property
        def age(self):
            return 18

    schema = {
        'required': ['id', 'name', 'gender', 'roles'],
        'type': 'object',
        'properties': {
            'id': { 'type': 'integer' },
            'name': { 'type': 'string' },
            'gender': { 'type': 'string', 'default': 'unknown' },
            'address': {
                'type': 'object',
                'properties': {
                    'city': { 'type': 'string', 'default': 'beijing' },
                    'country': { 'type': 'string', 'default': 'china'}
                }
            },
            'age': { 'type': 'integer' },
            'roles': {
                'type': 'array',
                'items': {
                    'type': 'string',
                    'default': 'user',
                    'enum': ['user', 'admin']
                },
                'default': ['user']
            }
        }
    }

    user, errors = normalize(schema, User())

    assert not errors
    assert 'password' not in user
    assert user['gender'] == 'unknown'
    assert user['address']['city'] == 'beijing'
    assert user['age'] == 18
    assert user['roles'] == ['user']

    schema = {
        'type': 'array',
        'items': schema
    }
    users, errors = normalize(schema, [User()])
    user = users.pop()
    assert not errors
    assert 'password' not in user
    assert user['gender'] == 'unknown'
    assert user['address']['city'] == 'beijing'
    assert user['age'] == 18
    assert user['roles'] == ['user']

    del schema['items']['properties']['roles']['default']
    users, errors = normalize(schema, [User()])
    user = users.pop()
    assert 'roles' not in list(user.keys())
    assert errors

    user = User()
    user.roles = ['admin']
    results, errors = normalize(schema, [user])
    result = results.pop()
    assert result['roles'] == ['admin']