Example #1
0
    def test_handles_nested_types(self):
        InnerType = create_obj_type_mock(String())
        OuterType = create_obj_type_mock(Field(InnerType))
        data = {'field': {'field': 'innerValue'}}
        stitched = stitch(OuterType)(data)

        assert stitched.resolve_field(None).resolve_field(None) == 'innerValue'
Example #2
0
    def test_handles_non_null_list_of_non_null_nested_type(self):
        InnerType = create_obj_type_mock(Field(String))
        OuterType = create_obj_type_mock(NonNull(List(NonNull(InnerType))))
        data = {'field': [{'field': 'a'}, {'field': 'b'}]}
        stitched = stitch(OuterType)(data)

        outer = stitched.resolve_field(None)
        print(outer)
        assert [x.resolve_field(None) for x in outer] == ['a', 'b']
Example #3
0
    def test_handles_interfaces(self):
        class TestInterface(Interface):
            field = String()
        OrigType = create_obj_type_mock(String(), interfaces=[TestInterface])

        assert stitch(OrigType)._meta.interfaces == [TestInterface]
Example #4
0
    def test_handles_non_null(self):
        OrigType = create_obj_type_mock(NonNull(String))
        data = {'field': 'value'}
        stitched = stitch(OrigType)(data)

        assert stitched.resolve_field(None) == 'value'
Example #5
0
    def test_handles_non_null_list_of_non_null(self):
        OrigType = create_obj_type_mock(NonNull(List(NonNull(String))))
        data = {'field': ['foo', 'bar', 'baz']}
        stitched = stitch(OrigType)(data)

        assert stitched.resolve_field(None) == data['field']
Example #6
0
    def test_stitching_converts_to_dict_initializable_type(self):
        OrigType = create_obj_type_mock(String())
        data = {'field': 'value'}
        stitched = stitch(OrigType)(data)

        assert stitched.resolve_field(None) == 'value'
Example #7
0
 def resolve_stitched(self, info):
     return stitch(B)({'node': {'field': 'value'}})
Example #8
0
        class Root(ObjectType):
            stitched = Field(stitch(B))

            def resolve_stitched(self, info):
                return stitch(B)({'node': {'field': 'value'}})
Example #9
0
 def test_handles_self_referential_types(self):
     OrigType = create_obj_type_mock(Field(lambda: OrigType))
     stitched = stitch(OrigType)
     assert stitched.field.type is stitched
Example #10
0
DummyObjType = create_obj_type_mock(String())

def assert_field_types_are_equal(actual, expected):
    if isinstance(expected, type):
        assert actual is expected
    else:
        assert type(actual) == type(expected)
        if hasattr(expected, 'type'):
            assert_field_types_are_equal(actual.type, expected.type)
        elif hasattr(expected, 'of_type'):
            assert_field_types_are_equal(actual.of_type, expected.of_type)


@pytest.mark.parametrize('input_type,expected', [
    (Field(DummyObjType), Field(stitch(DummyObjType))),
    (List(DummyObjType), List(stitch(DummyObjType))),
    (NonNull(DummyObjType), NonNull(stitch(DummyObjType))),
    (NonNull(List(NonNull(DummyObjType))),
        NonNull(List(NonNull(stitch(DummyObjType))))),
    (String(), String())
])
def test_to_stitched_type(input_type, expected):
    assert_field_types_are_equal(to_stitched_type(input_type), expected)


class TestStitch(object):
    def test_stitching_converts_to_dict_initializable_type(self):
        OrigType = create_obj_type_mock(String())
        data = {'field': 'value'}
        stitched = stitch(OrigType)(data)