Exemplo n.º 1
0
 def test_resource_object_constructor__with_relationships(self):
     ItemResponse = JsonApiResponse('item', ItemModel)
     item = ItemModel(name='pear', price=1.2, quantity=10)
     document = ItemResponse.resource_object(id='abc123',
                                             attributes=item,
                                             relationships={
                                                 'sold_at': {
                                                     'data': {
                                                         'type': 'store',
                                                         'id': 'def456'
                                                     }
                                                 }
                                             }).dict()
     assert document == {
         'id': 'abc123',
         'type': 'item',
         'attributes': {
             'name': 'pear',
             'price': 1.2,
             'quantity': 10,
         },
         'relationships': {
             'sold_at': {
                 'data': {
                     'id': 'def456',
                     'type': 'store',
                     'meta': None,
                 },
                 'links': None,
                 'meta': None,
             }
         }
     }
Exemplo n.º 2
0
 def test_resource_object_constructor__no_attributes(self):
     IdentifierResponse = JsonApiResponse('item', dict)
     document = IdentifierResponse.resource_object(id='abc123').dict()
     assert document == {
         'id': 'abc123',
         'type': 'item',
         'attributes': {},
         'relationships': None
     }
Exemplo n.º 3
0
    def test_response_constructed_with_resource_object__list(self):
        @dataclass
        class FakeDBItem:
            item_id: int
            name: str
            price: float
            quantity: int
            created_at: datetime = datetime.utcnow()

        ItemResponse = JsonApiResponse('item',
                                       ItemModelWithOrmMode,
                                       use_list=True)
        items = [
            FakeDBItem(item_id=1, name='apple', price=1.5, quantity=3),
            FakeDBItem(item_id=2, name='pear', price=1.2, quantity=10),
            FakeDBItem(item_id=3, name='orange', price=2.2, quantity=5)
        ]
        response = ItemResponse(data=[
            ItemResponse.resource_object(id=item.item_id, attributes=item)
            for item in items
        ])
        assert response.dict() == {
            'data': [
                {
                    'id': '1',
                    'type': 'item',
                    'attributes': {
                        'name': 'apple',
                        'price': 1.5,
                        'quantity': 3,
                    },
                },
                {
                    'id': '2',
                    'type': 'item',
                    'attributes': {
                        'name': 'pear',
                        'price': 1.2,
                        'quantity': 10,
                    },
                },
                {
                    'id': '3',
                    'type': 'item',
                    'attributes': {
                        'name': 'orange',
                        'price': 2.2,
                        'quantity': 5,
                    },
                },
            ]
        }
Exemplo n.º 4
0
 def test_resource_object_constructor__with_list_response(self):
     ItemResponse = JsonApiResponse('item', ItemModel, use_list=True)
     item = ItemModel(name='pear', price=1.2, quantity=10)
     document = ItemResponse.resource_object(id='abc123',
                                             attributes=item).dict()
     assert document == {
         'id': 'abc123',
         'type': 'item',
         'attributes': {
             'name': 'pear',
             'price': 1.2,
             'quantity': 10,
         },
         'relationships': None
     }
Exemplo n.º 5
0
 def test_response_constructed_with_resource_object(self):
     ItemResponse = JsonApiResponse('item', ItemModel)
     item = ItemModel(name='pear', price=1.2, quantity=10)
     data = ItemResponse.resource_object(id='abc123',
                                         attributes=item).dict()
     assert ItemResponse(data=data).dict() == {
         'data': {
             'id': 'abc123',
             'type': 'item',
             'attributes': {
                 'name': 'pear',
                 'price': 1.2,
                 'quantity': 10,
             },
         }
     }
Exemplo n.º 6
0
 def test_attributes_as_dict(self):
     MyResponse = JsonApiResponse('item', dict)
     obj_to_validate = {
         'data': {
             'id': '123',
             'type': 'item',
             'attributes': {}
         },
         'included': [{
             'id': '456',
             'type': 'not-an-item',
             'attributes': {}
         }]
     }
     my_response_object = MyResponse(**obj_to_validate)
     assert my_response_object.dict() == {
         'data': {
             'id': '123',
             'type': 'item',
             'attributes': {},
         },
         'included': [{
             'id': '456',
             'type': 'not-an-item',
             'attributes': {}
         }]
     }
Exemplo n.º 7
0
    def test_attributes_as_item_model__empty_dict(self):
        ItemResponse = JsonApiResponse('item', ItemModel)
        obj_to_validate = {
            'data': {
                'id': '123',
                'type': 'item',
                'attributes': {}
            }
        }
        with raises(ValidationError) as e:
            ItemResponse(**obj_to_validate)

        assert e.value.errors() == [
            {
                'loc': ('data', 'attributes', 'name'),
                'msg': 'field required',
                'type': 'value_error.missing'
            },
            {
                'loc': ('data', 'attributes', 'quantity'),
                'msg': 'field required',
                'type': 'value_error.missing'
            },
            {
                'loc': ('data', 'attributes', 'price'),
                'msg': 'field required',
                'type': 'value_error.missing'
            },
        ]
Exemplo n.º 8
0
 def test_resource_object_constructor__with_invalid_links(self):
     ItemResponse = JsonApiResponse('item', ItemModel)
     item = ItemModel(name='pear', price=1.2, quantity=10)
     with raises(ValidationError) as e:
         ItemResponse.resource_object(
             id='abc123',
             attributes=item,
             links='/items/abc123',
         )
     assert e.value.errors() == [
         {
             'loc': ('links', ),
             'msg': 'value is not a valid dict',
             'type': 'type_error.dict'
         },
     ]
Exemplo n.º 9
0
 def test_resource_object_constructor__with_invalid_relationship(self):
     ItemResponse = JsonApiResponse('item', ItemModel)
     item = ItemModel(name='pear', price=1.2, quantity=10)
     with raises(ValidationError) as e:
         ItemResponse.resource_object(
             id='abc123',
             attributes=item,
             relationships={'sold_at': {
                 'meta': 'rofl'
             }})
     assert e.value.errors() == [
         {
             'loc': ('relationships', 'sold_at', 'meta'),
             'msg': 'value is not a valid dict',
             'type': 'type_error.dict'
         },
     ]
Exemplo n.º 10
0
 def test_missing_attributes_dict(self):
     MyResponse = JsonApiResponse('item', dict)
     obj_to_validate = {'data': {'id': '123', 'type': 'item'}}
     my_response_object = MyResponse(**obj_to_validate)
     assert my_response_object.dict() == {
         'data': {
             'id': '123',
             'type': 'item',
             'attributes': {},
         }
     }
Exemplo n.º 11
0
    def test_missing_attributes_empty_model(self):
        class EmptyModel(BaseModel):
            pass

        MyResponse = JsonApiResponse('item', EmptyModel)
        obj_to_validate = {'data': {'id': '123', 'type': 'item'}}
        my_response_object = MyResponse(**obj_to_validate)
        assert my_response_object.dict() == {
            'data': {
                'id': '123',
                'type': 'item',
                'attributes': {},
            }
        }
        assert isinstance(my_response_object.data.attributes, EmptyModel)
Exemplo n.º 12
0
 def test_list_item_model(self):
     ItemResponse = JsonApiResponse('item', ItemModel, use_list=True)
     obj_to_validate = {
         'data': [
             {
                 'id': '123',
                 'type': 'item',
                 'attributes': {
                     'name': 'apple',
                     'quantity': 10,
                     'price': 1.20
                 },
             },
             {
                 'id': '321',
                 'type': 'item',
                 'attributes': {
                     'name': 'banana',
                     'quantity': 20,
                     'price': 2.34
                 },
             },
         ],
     }
     my_response_obj = ItemResponse(**obj_to_validate)
     assert my_response_obj.dict() == {
         'data': [
             {
                 'id': '123',
                 'type': 'item',
                 'attributes': {
                     'name': 'apple',
                     'quantity': 10,
                     'price': 1.20,
                 },
             },
             {
                 'id': '321',
                 'type': 'item',
                 'attributes': {
                     'name': 'banana',
                     'quantity': 20,
                     'price': 2.34,
                 },
             },
         ],
     }
Exemplo n.º 13
0
 def test_attributes_as_item_model(self):
     ItemResponse = JsonApiResponse('item', ItemModel)
     obj_to_validate = {
         'data': {
             'id': '123',
             'type': 'item',
             'attributes': {
                 'name': 'apple',
                 'quantity': 10,
                 'price': 1.20
             },
             'relationships': {
                 'store': {
                     'links': {
                         'related': '/stores/123',
                     },
                 },
             },
             'links': {
                 'self': '/items/123',
             },
         }
     }
     my_response_obj = ItemResponse(**obj_to_validate)
     assert my_response_obj.dict() == {
         'data': {
             'id': '123',
             'type': 'item',
             'attributes': {
                 'name': 'apple',
                 'quantity': 10,
                 'price': 1.20,
             },
             'relationships': {
                 'store': {
                     'links': {
                         'related': '/stores/123',
                     },
                 },
             },
             'links': {
                 'self': '/items/123',
             },
         },
     }
Exemplo n.º 14
0
    def test_attributes_required(self):
        ItemResponse = JsonApiResponse('item', ItemModel)
        obj_to_validate = {
            'data': {
                'id': '123',
                'type': 'item',
                'attributes': None
            }
        }
        with raises(ValidationError) as e:
            ItemResponse(**obj_to_validate)

        assert e.value.errors() == [
            {
                'loc': ('data', 'attributes'),
                'msg': 'none is not an allowed value',
                'type': 'type_error.none.not_allowed',
            },
        ]
Exemplo n.º 15
0
    def test_type_invalid_string(self):
        MyResponse = JsonApiResponse('item', dict)
        obj_to_validate = {
            'data': {
                'id': '123',
                'type': 'not_an_item',
                'attributes': {}
            }
        }
        with raises(ValidationError) as e:
            MyResponse(**obj_to_validate)

        assert e.value.errors() == [
            {
                'loc': ('data', 'type'),
                'msg': "unexpected value; permitted: 'item'",
                'type': 'value_error.const',
                'ctx': {
                    'given': 'not_an_item',
                    'permitted': ('item', )
                },
            },
        ]
Exemplo n.º 16
0
    quantity: int
    price: float
    id: str = str(uuid4().hex)
    created_at: datetime = datetime.now()


# Define our Item Request/Response schema
class Item(BaseModel):
    name: str
    quantity: int
    price: float


ITEM_TYPE_NAME = 'item'
ItemRequest = JsonApiRequest(ITEM_TYPE_NAME, Item)
ItemResponse = JsonApiResponse(ITEM_TYPE_NAME, Item)


def marshal_item(item: ItemData) -> dict:
    return {
        'id': item.id,
        'type': ITEM_TYPE_NAME,
        'attributes': {
            'name': item.name,
            'quantity': item.quantity,
            'price': item.price,
        },
    }


# Simple post method logic