module Athena::Spec::Methods
#
Namespace for common/helpful testing methods.
This module can be included into your spec_helper
in order
to allow your specs to use them all. This module is also
included into ASPEC::TestCase
by default to allow using them
within your unit tests as well.
May be reopened to add additional application specific helpers.
Extended modules
Athena::Spec::Methods
Direct including types
Athena::Spec::TestCase
Methods#
#assert_error(message : String, code : String, *, codegen : Bool = false, line : Int32 = __LINE__, file : String = __FILE__) : Nil
#
Executes the provided Crystal code asserts it errors with the provided message. The main purpose of this method is to test compile time errors.
ASPEC::Methods.assert_error "can't instantiate abstract class Foo", <<-CR
abstract class Foo; end
Foo.new
CR
Note
When files are required within the code, they are relative to the file calling this method.
By default this method does not perform any codegen; meaning it only validates that the code can be successfully compiled, excluding any runtime exceptions.
The codegen option can be used to enable codegen, thus allowing runtime logic to also be tested. This can be helpful in order to test something in isolation, without affecting other test cases.
#assert_success(code : String, *, codegen : Bool = false, line : Int32 = __LINE__, file : String = __FILE__) : Nil
#
Similar to .assert_error
, but asserts the provided Crystal code successfully compiles.
ASPEC::Methods.assert_success <<-CR
puts 2 + 2
CR
Note
When files are required within the code, they are relative to the file calling this method.
By default this method does not perform any codegen; meaning it only validates that the code can be successfully compiled, excluding any runtime exceptions.
The codegen option can be used to enable codegen, thus allowing runtime logic to also be tested. This can be helpful in order to test something in isolation, without affecting other test cases.
#run_executable(path : String, args : Array(String) = [] of String, & : String, String, Process::Status -> ) : Nil
#
Runs the executable at the given path, optionally with the provided args.
The standard output, error output, and status of the execution are yielded.
require "athena-spec"
ASPEC::Methods.run_executable "/usr/bin/ls" do |output, error, status|
output # => "docs\n" + "LICENSE\n" + "README.md\n" + "shard.yml\n" + "spec\n" + "src\n"
error # => ""
status # => #<Process::Status:0x7f7bc9befb70 @exit_status=0>
end
#run_executable(path : String, input : IO, args : Array(String) = [] of String, & : String, String, Process::Status -> ) : Nil
#
Runs the executable at the given path, with the given input, optionally with the provided args.
The standard output, error output, and status of the execution are yielded.
require "athena-spec"
input = IO::Memory.new %({"id":1})
ASPEC::Methods.run_executable "jq", input, [".", "-c"] do |output, error, status|
output # => "{\"id\":1}\n"
error # => ""
status # => #<Process::Status:0x7f26ec698b70 @exit_status=0>
end
invalid_input = IO::Memory.new %({"id"1})
ASPEC::Methods.run_executable "jq", invalid_input, [".", "-c"] do |output, error, status|
output # => ""
error # => "parse error: Expected separator between values at line 1, column 7\n"
status # => #<Process::Status:0x7f0217496900 @exit_status=1024>
end