mocks
mocks
General purpose mocking library for Crystal.
Installation
Add it to shard.yml
:
dependencies:
mocks:
github: waterlink/mocks.cr
version: 0.2.0
Usage
require "mocks"
Partial double
class Example
def say_hello(name)
"hey, #{name}"
end
end
create_mock Example do
mock say_hello(name)
# or
# mock instance.say_hello(name)
end
example = Example.new
allow(example).to receive(say_hello("world")).and_return("hello, world!")
example.say_hello("world") #=> "hello, world!"
example.say_hello("john") #=> "hey, john"
If you want to mock operators or setters, syntax is pretty straightforward:
# setter
mock instance.greeting = value
# or
mock instance.greeting=(value)
# equals
mock instance == other
# or
mock instance.==(other)
Class methods
Just use mock self.method_name(args..)
create_mock Example do
mock self.hello_world(greeting)
end
allow(Example).to receive(self.hello_world("aloha")).and_return("aloha (as 'hello'), world!")
Example.hello_world("hey") # => "hey, world!" (original was called)
Example.hello_world("aloha") # => "aloha (as 'hello'), world!" (mock was called)
Double
Caution: doubles require return types.
create_double "OtherExample" do
mock say_hello(name) as String
mock greetings_count as Int64
# For setters and operators this is the only syntax allowed:
# ( parenthesis are mandatory not to confuse Crystal's parser )
mock (instance.greeting = value), String
mock (instance == other), Bool
end
example = double("OtherExample", returns(say_hello("world"), "hello world!"))
allow(example).to receive(instance.greeting=("hey")).and_return("hey")
example.say_hello("world") #=> "hello world!"
example.say_hello("john") #=> Mocks::UnexpectedMethodCall: #<Mocks::Doubles::OtherExample:0x109498F00> received unexpected method call say_hello["john"]
Instance double
After defining Example
's mock with create_mock
you can use it as an instance_double
:
example = instance_double(Example, returns(say_hello("world"), "hello, world!"))
allow(example).to receive(say_hello("sarah")).and_return("Hey, Sarah!")
example.say_hello("world") #=> "hello world!"
example.say_hello("sarah") #=> "Hey, Sarah!"
example.say_hello("john") #=> Mocks::UnexpectedMethodCall: #<Mocks::InstanceDoubles::Example:0x109498F00> received unexpected method call say_hello["john"]
Class double
After defining Example
's mock with create_mock
you can use it as a class_double
:
example_class = class_double(Example, returns(self.hello_world("aloha"), "aloha, world!"))
allow(example_class).to receive(self.hello_world("hi")).and_return("hey, world!")
example_class.hello_world("aloha") # => "aloha, world!"
example_class.hello_world("hi") # => "hey, world!"
example_class.hello_world("halo") # => Mocks::UnexpectedMethodCall: Mocks::InstanceDoubles::Example received unexpected method call self.hello_world["halo"]
.new
It returns normal instance_double
:
example_class = class_double(Example)
example_class.new # => #<Mocks::InstanceDoubles::Example:0x109498F00>
Development
After cloning the project:
cd mocks.cr
crystal deps # install dependencies
crystal spec # run specs
Just use normal TDD development style.
Contributing
- Fork it ( https://github.com/waterlink/mocks.cr/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
- waterlink Oleksii Fedorov - creator, maintainer