Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
rspec-graphql_response
Advanced tools
RSpec::GraphQLResponse provides a series of RSpec matchers, helper methods, and other configuration to help simplify
the testing of responses from the graphql-ruby
gem and the <GraphQLSchemaName>.execute
method.
There are a number of built-in helper methods and matchers that will allow you to skip the copy & paste work of executing
a GraphQL Schema .execute
. Additionally, there are custom matchers and other bits that will help simplify your work in
validating common peices of a graphql response.
Lastly, the work in this gem is geared toward customization for your own application's needs. Every API call used for building
the pieces of this gem are available to you, directly, in the API / Development
documentation, below.
Your app must have graphql-ruby
and rspec
. With that done, add this line to your application's Gemfile:
gem 'rspec-graphql_response'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rspec-graphql_response
The full documentation for RSpec::GraphQLResponse can be found in the /docs
folder.
Configuration:
Custom Matchers:
Context / Describe Helper Methods:
context
of a query or mutation's resolverSpec Helper Methods:
API / Development
it
or describe
/ context
blocksThere are only a couple of bits you need to get started:
RSpec::GraphQLResponse.configure
type: :graphql
in your RSpec.describe
callRSpec::GraphQLResponse.configure do |config|
config.graphql_schema = MyGraphQLSchema
end
RSpec.describe My::Cool::Thing, type: :graphql do
# ...
end
Beyond these two basic needs, understanding the reason for this gem's existence can be useful in figuring out what the gem does, and what methods and options are available.
Executing a GraphQL call from RSpec is not the most challening code to write:
let(:query) do
<<-GQL
query ListCharacters{
characters {
id
name
}
}
GQL
end
subject do
MySchema.execute(query)
end
it "does something" do
response = subject.to_h
# expect(response) ...
end
But copy & paste is often considered a design error, and this code is likely going to be littered throughout your spec files.
execute_graphql
To help reduce the copy & paste, RSpec::GraphQLResponse
has a built-in execute_graphql
method that looks for a query
variable
in your specs.
RSpec.describe Some::Thing, type: :graphql do
graphql_operation <<-GQL
query ListCharacters{
characters {
id
name
}
}
GQL
it "executes the query" do
response = execute_graphql.to_h
# expect(response) ...
end
end
response
The reduction in code is good, but the copy & paste of response = execute_graphql.to_h
will quickly become an issue in the same
way. The reduce this, RSpec::GraphQLResponse
provides a built-in response
helper.
RSpec.describe Some::Thing, type: :graphql do
graphql_operation <<-GQL
query ListCharacters{
characters {
id
name
}
}
GQL
it "executes the query" do
expect(response).to include(
"data" => {
"characters" => { ... }
}
)
end
end
response_data
Now that the GraphQL query has been executed and a response has been obtained, it's time to check for the results of a GraphQL
operation. In the previous example, the spec is expecting to find data
with characters
in the response hash. To reduce the
nested hash checking, use the built-in response_data
method to retrieve the characters
:
RSpec.describe Some::Thing, type: :graphql do
graphql_operation <<-GQL
query ListCharacters{
characters {
id
name
}
}
GQL
it "executes the query" do
expect(response_data :characters).to include(
# ...
)
end
end
Note the lack of response
use here. Internally, the response_data
method uses the response
to obtain the data requested. This
means the entire chain of operations from executing the GraphQL request, to converting the response into a hash, and digging
through the results to find the correction operation, has been handled behind the scenes. To see more examples of how to use
response_data
dig through your response check out it's full documenation here.
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/testdouble/rspec-graphql_response. 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.
Everyone interacting in the Rspec::GraphQLResponse project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
FAQs
Unknown package
We found that rspec-graphql_response demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.