hashr
Version, currently 0.1.06 versions
github.com/crystal-china/hashr
Hashr is a tiny library makes test on JSON response easier, and can also be used as a models object.
Nothing has been indexed for 0.1.0 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.
Installation
# Add this to your shard.yml
dependencies:
hashr:
github: crystal-china/hashr
version: ~> 0.1.0Then run:
shards installshard.yml
No shard.yml has been indexed for 0.1.0. You can read it on the repository.
Dependencies
Unknown: the shard.yml for this version has not been read yet.
README
This README is the one indexed from the repository at its latest ref, not from the tag for this version.
hashr
Hashr is a tiny class makes test on JSON response easier.
The name of hashr come from the awesome ruby gem hashr, though, AFAIK, use original code is not possible because Crystal very different with Ruby in some aspect.
This shard should only be used in spec.
Installation
-
Add the dependency to your
shard.yml:dependencies: hashr: github: crystal-china/hashr -
Run
shards install
Usage
Following is a example use graphql + spec-kemal
require "hashr"
require "../spec_helper"
describe "daily reports" do
it "query daily report" do
report = ReportFactory.create
post_json "/graphql", body: {query: "query { ... }"}
p! typeof(response.body) # => String
p! response.body # => "{\"data\":{\"reportQuery\":{\"target\":{\"targetTotalCount\":47,\"processedTotalCount\":44,\"qualifiedTotalCount\":40}}}}"
response_hash = Hash(String, JSON::Any).from_json(response.body) # => Get a hash like this:
# {"data" => {
# "reportQuery" => {
# "target" => {
# "targetTotalCount" => report.target_total_count,
# "processedTotalCount" => report.processed_total_count,
# "qualifiedTotalCount" => report.qualified_total_count
# }
# }
# }
# }
# Instead, verify on the entire response result, we can verify on specified field only.
parsed_response = Hashr.new(response)
# Use nice dot method call.
target = parsed_response.data.reportQuery.target
target.processedTotalCount.should eq report.processed_total_count
target.qualifiedTotalCount.should eq report.qualified_total_count
end
end
You can use Hashr as model object, like this:
it "use hashr as model object" do
contacts = [
{
id: 1,
first: "billy",
last: "zheng",
phone: "18612385678",
email: "billy@gmail.com",
},
{
id: 2,
first: "xuan",
last: "zheng",
phone: "18512345678",
email: "retired@qq.com",
},
]
models = contacts.map { |e| Hashr.new(e) }
models.each do |contact|
puts "#{contact.first}.#{contact.last}: phone: #{contact.phone}, email: #{contact.email}"
end
billy = models.first
billy.phone = "13012345678"
p billy.name # => 13012345678
Limit
For verify a value is nil, you have to use eq, be_nil not work because Crystal don't allow us redefine #nil? method on any object.
h = {"nilValue" => nil}.to_json
value = Hashr.new({"foo" => JSON.parse(h)})
value.foo.nilValue.should eq nil # => true
value.foo.nilValue.should be_nil # => false
Development
TODO: Write development instructions here
Contributing
- Fork it (https://github.com/crystal-china/hashr/fork)
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
Contributors
- Billy.Zheng - creator and maintainer
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.1.0- Tagged
- Jun 25, 2025
- Commit
152e21daf4d2- Indexed
- not yet
Dependents
No indexed shard depends on this one yet.
Repository
github.com/crystal-china/hashr
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 14, 2026
- Synced
- Aug 14, 2026
- Versions
- 6