mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 12:16:58 +03:00
Improved testing
This commit is contained in:
parent
a7b3d193eb
commit
0f66dba7e8
|
@ -46,6 +46,9 @@ class EnumTypeMeta(type):
|
||||||
meta_class = type('Meta', (object,), {'enum': enum, 'description': description})
|
meta_class = type('Meta', (object,), {'enum': enum, 'description': description})
|
||||||
return type(meta_class.enum.__name__, (Enum,), {'Meta': meta_class})
|
return type(meta_class.enum.__name__, (Enum,), {'Meta': meta_class})
|
||||||
|
|
||||||
|
def __str__(cls):
|
||||||
|
return cls._meta.name
|
||||||
|
|
||||||
|
|
||||||
class Enum(six.with_metaclass(EnumTypeMeta, UnmountedType)):
|
class Enum(six.with_metaclass(EnumTypeMeta, UnmountedType)):
|
||||||
pass
|
pass
|
||||||
|
|
|
@ -8,6 +8,9 @@ from ..union import Union
|
||||||
from ..scalars import String, Int, Boolean
|
from ..scalars import String, Int, Boolean
|
||||||
from ..field import Field
|
from ..field import Field
|
||||||
from ..structures import List
|
from ..structures import List
|
||||||
|
from ..enum import Enum
|
||||||
|
from ..inputobjecttype import InputObjectType
|
||||||
|
from ..structures import List, NonNull
|
||||||
|
|
||||||
from ..schema import Schema
|
from ..schema import Schema
|
||||||
|
|
||||||
|
@ -21,7 +24,7 @@ class Image(ObjectType):
|
||||||
class Author(ObjectType):
|
class Author(ObjectType):
|
||||||
id = String()
|
id = String()
|
||||||
name = String()
|
name = String()
|
||||||
pic = Field(Image) # width=Int(), height=Int()
|
pic = Field(Image, width=Int(), height=Int())
|
||||||
recent_article = Field(lambda: Article)
|
recent_article = Field(lambda: Article)
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,7 +37,7 @@ class Article(ObjectType):
|
||||||
|
|
||||||
|
|
||||||
class Query(ObjectType):
|
class Query(ObjectType):
|
||||||
article = Field(Article) # id=String()
|
article = Field(Article, id=String())
|
||||||
feed = List(Article)
|
feed = List(Article)
|
||||||
|
|
||||||
|
|
||||||
|
@ -43,7 +46,11 @@ class Mutation(ObjectType):
|
||||||
|
|
||||||
|
|
||||||
class Subscription(ObjectType):
|
class Subscription(ObjectType):
|
||||||
article_subscribe = Field(Article) # id=String()
|
article_subscribe = Field(Article, id=String())
|
||||||
|
|
||||||
|
|
||||||
|
class MyObjectType(ObjectType):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class MyInterface(Interface):
|
class MyInterface(Interface):
|
||||||
|
@ -55,6 +62,14 @@ class MyUnion(Union):
|
||||||
types = (Article, )
|
types = (Article, )
|
||||||
|
|
||||||
|
|
||||||
|
class MyEnum(Enum):
|
||||||
|
foo = 'foo'
|
||||||
|
|
||||||
|
|
||||||
|
class MyInputObjectType(InputObjectType):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def test_defines_a_query_only_schema():
|
def test_defines_a_query_only_schema():
|
||||||
blog_schema = Schema(Query)
|
blog_schema = Schema(Query)
|
||||||
|
|
||||||
|
@ -193,13 +208,13 @@ def test_stringifies_simple_types():
|
||||||
assert str(Article) == 'Article'
|
assert str(Article) == 'Article'
|
||||||
assert str(MyInterface) == 'MyInterface'
|
assert str(MyInterface) == 'MyInterface'
|
||||||
assert str(MyUnion) == 'MyUnion'
|
assert str(MyUnion) == 'MyUnion'
|
||||||
# assert str(EnumType) == 'Enum'
|
assert str(MyEnum) == 'MyEnum'
|
||||||
# assert str(InputObjectType) == 'InputObject'
|
assert str(MyInputObjectType) == 'MyInputObjectType'
|
||||||
# assert str(GraphQLNonNull(GraphQLInt)) == 'Int!'
|
assert str(NonNull(Int)) == 'Int!'
|
||||||
# assert str(GraphQLList(GraphQLInt)) == '[Int]'
|
assert str(List(Int)) == '[Int]'
|
||||||
# assert str(GraphQLNonNull(GraphQLList(GraphQLInt))) == '[Int]!'
|
assert str(NonNull(List(Int))) == '[Int]!'
|
||||||
# assert str(GraphQLList(GraphQLNonNull(GraphQLInt))) == '[Int!]'
|
assert str(List(NonNull(Int))) == '[Int!]'
|
||||||
# assert str(GraphQLList(GraphQLList(GraphQLInt))) == '[[Int]]'
|
assert str(List(List(Int))) == '[[Int]]'
|
||||||
|
|
||||||
|
|
||||||
# def test_identifies_input_types():
|
# def test_identifies_input_types():
|
||||||
|
|
Loading…
Reference in New Issue
Block a user