2015-09-26 09:48:53 +03:00
|
|
|
from pytest import raises
|
|
|
|
|
|
|
|
import graphene
|
|
|
|
from graphene import relay
|
|
|
|
|
2015-09-26 13:36:00 +03:00
|
|
|
schema = graphene.Schema()
|
2015-09-26 09:48:53 +03:00
|
|
|
|
2015-10-03 08:17:51 +03:00
|
|
|
|
2015-09-26 09:48:53 +03:00
|
|
|
class OtherNode(relay.Node):
|
|
|
|
name = graphene.StringField()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_node(cls, id):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def test_field_no_contributed_raises_error():
|
|
|
|
with raises(Exception) as excinfo:
|
|
|
|
class Part(relay.Node):
|
|
|
|
x = graphene.StringField()
|
|
|
|
|
|
|
|
assert 'get_node' in str(excinfo.value)
|
|
|
|
|
|
|
|
|
2015-10-01 11:54:52 +03:00
|
|
|
def test_node_should_have_same_connection_always():
|
|
|
|
s = object()
|
2015-10-21 07:32:15 +03:00
|
|
|
connection1 = relay.Connection.for_node(OtherNode)
|
|
|
|
connection2 = relay.Connection.for_node(OtherNode)
|
2015-10-01 11:54:52 +03:00
|
|
|
|
|
|
|
assert connection1 == connection2
|
2015-09-26 09:48:53 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_node_should_have_id_field():
|
|
|
|
assert 'id' in OtherNode._meta.fields_map
|