Ruby library to check json schema changes.
JsonStatham allows to check the structure changes in a json. It allows to check that the keys are always the same and that the value classes are identical. You can also observe the differences in execution time of your block.
You can use this library when you want to change your serialization system. For example if you want to migrate from fast_jsonapi to another library.
Install the gem and add to the application's Gemfile by executing:
$ bundle add json_statham
If bundler is not being used to manage dependencies, install the gem by executing:
$ gem install json_statham
Configure the schemas_path
.
JsonStatham.configure do |config|
config.schemas_path = "schemas"
end
Now you can extend JsonStatham
to use .stathamnize
method.
Example:
module Foo
extend JsonStatham
def self.call(hash)
result = stathamnize("foo") { hash }
result.success?
end
end
Running Foo.call({ foo: :bar })
will create a new file foo.json in a schemas directory. This file contain the json schema and execution duration.
Example:
{"schema":{"bar":"symbol"},"duration":2.9999937396496534e-06}
It returns a JsonStatham::Result
object.
You can execute success?
or failure?
on JsonStatham::Result.
Running Foo.call
a second time with a new hash schema and store_schema = false
will not create a new file and result a failure.
Available configuration attributes:
JsonStatham.configure do |config|
config.schemas_path = "schemas"
config.store_schema = true
config.raise_ratio = 10
end
Required attributes:
schemas_path
String. The path where the json files will be read and created.
Optional attributes:
-
store_schema
Boolean, default tofalse
. It allows to create or not a new file. -
raise_ratio
Integer, default tonil
. The ratio of increase in execution time. This allows to raise an error when the execution of the block takes longer than expected.
extend JsonStatham
in your spec_helper.
RSpec.configure do |config|
config.include JsonStatham
end
Given a UserSerializer:
class UserSerializer
attr_reader :user
def initialize(user)
@user = user
end
def to_h
{ id: user.id, full_name: user.full_name, email: user.email }
end
end
You can thenuse stathamnize with different traits in your spec file.
RSpec.describe UserSerializer do
describe "Schema" do
subject { stathamnize(trait) { serializer } }
context "Given a valid user" do
let(:serializer) { UserSerializer.new(user).to_h }
let(:trait) { "user_serializer/valid-user" }
let(:user) { create(:user, :valid) }
it "has a valid schema" do
expect(subject.success?).to eq(true)
end
end
context "Given an invalid user" do
let(:serializer) { UserSerializer.new(user).to_h }
let(:trait) { "user_serializer/invalid-user" }
let(:user) { create(:user, :invalid) }
it "has a valid schema" do
expect(subject.success?).to eq(true)
end
end
end
end
Or you can create a shared example
RSpec.shared_examples 'a serializer' do |schema_name|
describe "#as_json" do
subject do
stathamnize("#{serializer_path}/#{schema_name}") do
described_class.new(record).as_json
end
end
let(:serializer_path) { described_class.name.underscore }
it "returns #{schema_name} object as json" do
expect(subject.success?).to eq(true)
end
end
end
Then you can use it inside your specs
require "spec_helper"
RSpec.describe FooSerializer do
it_behaves_like "a serializer", "foo" do
let(:record) { create(:foo) }
end
FactoryBot.factories[:foo].definition.defined_traits.map(&:name).each do |trait|
it_behaves_like "a serializer", trait do
let(:record) { create(:foo, trait) }
end
end
end
Run the generator:
$ rails g json_statham:install
This will create a new initializer at config/initializers/json_statham.rb.
After running your tests to generate the json files you can now run rails json_statham
.
$ rails json_statham
This will show you a list of your json files ordered by duration.
+------------------------------------------------------------------------+-----------------------+
| File path | Duration |
+------------------------------------------------------------------------+-----------------------+
| schemas/user_serializer/valid_user.json | 0.5460864380002022 |
| schemas/user_serializer/invalid_user.json | 0.2532647902998724 |
| schemas/post_serializer/published.json | 0.2153625870094402 |
| schemas/post_serializer/draft.json | 0.1238838530000066 |
+------------------------------------------------------------------------+-----------------------+
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 the created tag, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/victorauthiat/json_statham. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the JsonStatham project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.