Convenient rspec matchers for testing your graphql-ruby API/Schema.
gem 'rspec-graphql_matchers'
The matchers currently supported are:
expect(a_graphql_object).to have_a_field(field_name).that_returns(valid_type)
expect(a_graphql_object).to implement(interface_name, ...)
expect(a_mutation_type).to have_a_return_field(field_name).returning(valid_type)
expect(a_mutation_type).to have_an_input_field(field_name).of_type(valid_type)
expect(a_field).to be_of_type(valid_type)
expect(an_input).to accept_arguments(hash_of_arg_names_and_valid_types)
expect(an_input).to accept_arguments(hash_of_arg_names_and_valid_types)
Where a valid type for the expectation is either:
- A
GraphQL::ObjectType
object (ex:types.String
,!types.Int
,types[types.Int]
, or your own) - A String representation of a type:
"String!"
,"Int!"
,"[String]!"
(note the exclamation mark at the end, as required by the GraphQL specs.
Testing :property
, :hash_key
and metadata is also possible by chaining .with_property
, .with_hash_key
and .with_metadata
. For example:
expect(a_graphql_object).to have_a_field(field_name).with_property(property_name).with_metadata(metadata_hash)
expect(a_graphql_object).to have_a_field(field_name).with_hash_key(hash_key)
Given a GraphQL::ObjectType
defined as
PostType = GraphQL::ObjectType.define do
name "Post"
description "A blog post"
interfaces [GraphQL::Relay::Node.interface]
field :id, !types.ID,
property: :post_id
field :comments,
!types[types.String],
hash_key: :post_comments
field :isPublished,
admin_only: true
field :subposts, PostType do
type !PostType
argument :filter, types.String
argument :id, types.ID
end
end
describe PostType do
it 'defines a field id of type ID!' do
expect(subject).to have_field(:id).that_returns(!types.ID)
end
# Fluent alternatives
it { is_expected.to have_field(:id).of_type("ID!") }
it { is_expected.to have_a_field(:id).returning("ID!") }
end
describe PostType do
describe 'id' do
subject { PostType.fields['id'] }
it { is_expected.to be_of_type('ID!') }
it { is_expected.not_to be_of_type('Float!') }
end
describe 'subposts' do
subject { PostType.fields['subposts'] }
# You can use your type object directly when building expectations
it 'has type PostType' do
expect(subject).to be_of_type(!PostType)
end
# Or as usual, a literal String
it { is_expected.to be_of_type('Post!') }
end
end
Keep in mind that when using strings as type expectation you have to use the
type name (Post
) and not the constant name (PostType
).
Using your type objects directly has the advantage that if you decide to rename the type your specs won't break, as they would had you hardcoded it as a String.
You can also use the built-in graphql-ruby scalar types:
# ensure you have the GraphQL type definer available in your tests
types = GraphQL::Define::TypeDefiner.instance
describe PostType do
describe 'comments' do
subject { PostType.fields['comments'] }
it { is_expected.to be_of_type(!types[types.String]) }
it { is_expected.to be_of_type('[String]!') }
end
end
describe PostType do
it { is_expected.to have_a_field(:id).with_property(:post_id) }
it { is_expected.to have_a_field(:comments).with_hash_key(:post_comments) }
it { is_expected.to have_a_field(:isPublished).with_metadata(admin_only: true) }
end
describe PostType do
describe 'subposts' do
subject { PostType.fields['subposts'] }
let(:a_whole_bunch_of_args) do
{ filter: 'String', id: types.Int, pippo: 'Float', posts: PostType }
end
it 'accepts a filter and an id argument, of types String and ID' do
expect(subject).to accept_arguments(filter: types.String, id: types.ID)
end
# You can also test if a field does not accept args. Not quite useful :D.
it { is_expected.not_to accept_arguments(a_whole_bunch_of_args) }
end
end
The spec will only pass if all attributes/types specified in the hash are defined on the field.
For better fluency, accept_arguments
is also available in singular form, as
accept_argument
.
describe PostType do
it 'implements interface Node' do
expect(subject).to implement('Node')
end
# Accepts arguments as an array and type objects directly
it { is_expected.to implement(GraphQL::Relay::Node.interface) }
it { is_expected.not_to implement('OtherInterface') }
end
- New matchers!
- Send Bug reports, suggestions or any general question through the Issue tracker. Think of another matcher that could be useful? This is the place to ask, or...
- Pull requests are welcome through the usual procedure: fork the project, commit your changes and open the PR.
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.