Some initial work on runnable example tests

This commit is contained in:
Michael Miller 2018-12-05 20:25:05 -07:00
parent 06230f128d
commit 2ce599d6a4
1 changed files with 568 additions and 0 deletions

View File

@ -0,0 +1,568 @@
require "./spec_helper"
def new_runnable_example(group : Spectator::ExampleGroup? = nil)
PassingExample.new(group || new_root_group, Spectator::Internals::SampleValues.empty)
end
def run_example(example_type : Spectator::Example.class, hooks : Spectator::ExampleHooks? = nil)
group = new_root_group(hooks || Spectator::ExampleHooks.empty)
run_example(example_type, group)
end
def run_example(example_type : Spectator::Example.class, group : Spectator::ExampleGroup? = nil)
example = example_type.new(group || new_root_group, Spectator::Internals::SampleValues.empty)
Spectator::Internals::Harness.run(example)
end
describe Spectator::RunnableExample do
describe "#run" do
context "with a passing test" do
it "returns a successful result" do
run_example(PassingExample).should be_a(Spectator::SuccessfulResult)
end
{% for hook_type in %i[before_all before_each] %}
context "{{hook_type.id}} hooks" do
it "runs a hook" do
called = false
hooks = new_hooks({{hook_type.id}}: ->{ called = true; nil })
run_example(PassingExample, hooks)
called.should be_true
end
it "runs multiple hooks" do
call_count = 0
hooks = new_hooks({{hook_type.id}}: [
->{ call_count += 1; nil },
->{ call_count += 2; nil },
->{ call_count += 3; nil },
])
run_example(PassingExample, hooks)
call_count.should eq(6)
end
it "runs them in the correct order" do
calls = [] of Symbol
hooks = new_hooks({{hook_type.id}}: [
->{ calls << :a; nil },
->{ calls << :b; nil },
->{ calls << :c; nil },
])
run_example(PassingExample, hooks)
calls.should eq(\%i[a b c])
end
it "runs parent group hooks" do
called = false
hooks = new_hooks({{hook_type.id}}: -> { called = true; nil })
root = Spectator::RootExampleGroup.new(hooks)
group = new_nested_group(parent: root)
run_example(PassingExample, group)
called.should be_true
end
it "runs parent group hooks first" do
calls = [] of Symbol
root_hooks = new_hooks({{hook_type.id}}: -> { calls << :a; nil })
group_hooks = new_hooks({{hook_type.id}}: -> { calls << :b; nil })
root = Spectator::RootExampleGroup.new(root_hooks)
group = new_nested_group(group_hooks, root)
run_example(PassingExample, group)
calls.should eq(\%i[a b])
end
end
{% end %}
{% for hook_type in %i[after_all after_each] %}
context "{{hook_type.id}} hooks" do
it "runs a hook" do
called = false
hooks = new_hooks({{hook_type.id}}: ->{ called = true; nil })
run_example(PassingExample, hooks)
called.should be_true
end
it "runs multiple hooks" do
call_count = 0
hooks = new_hooks({{hook_type.id}}: [
->{ call_count += 1; nil },
->{ call_count += 2; nil },
->{ call_count += 3; nil },
])
run_example(PassingExample, hooks)
call_count.should eq(6)
end
it "runs them in the correct order" do
calls = [] of Symbol
hooks = new_hooks({{hook_type.id}}: [
->{ calls << :a; nil },
->{ calls << :b; nil },
->{ calls << :c; nil },
])
run_example(PassingExample, hooks)
calls.should eq(\%i[a b c])
end
it "runs parent group hooks" do
called = false
hooks = new_hooks({{hook_type.id}}: -> { called = true; nil })
root = Spectator::RootExampleGroup.new(hooks)
group = new_nested_group(parent: root)
run_example(PassingExample, group)
called.should be_true
end
it "runs parent group hooks last" do
calls = [] of Symbol
root_hooks = new_hooks({{hook_type.id}}: -> { calls << :a; nil })
group_hooks = new_hooks({{hook_type.id}}: -> { calls << :b; nil })
root = Spectator::RootExampleGroup.new(root_hooks)
group = new_nested_group(group_hooks, root)
run_example(PassingExample, group)
calls.should eq(\%i[b a])
end
end
{% end %}
context "around_each hooks" do
it "runs a hook" do
called = false
hooks = new_hooks(around_each: ->(proc : ->) { called = true; proc.call })
run_example(PassingExample, hooks)
called.should be_true
end
it "runs multiple hooks" do
call_count = 0
hooks = new_hooks(around_each: [
->(proc : ->) { call_count += 1; proc.call },
->(proc : ->) { call_count += 2; proc.call },
->(proc : ->) { call_count += 3; proc.call },
])
run_example(PassingExample, hooks)
call_count.should eq(6)
end
it "runs them in the correct order" do
calls = [] of Symbol
hooks = new_hooks(around_each: [
->(proc : ->) { calls << :a; proc.call },
->(proc : ->) { calls << :b; proc.call },
->(proc : ->) { calls << :c; proc.call },
])
run_example(PassingExample, hooks)
calls.should eq(%i[a b c])
end
it "runs parent group hooks" do
called = false
hooks = new_hooks(around_each: ->(proc : ->) { called = true; proc.call })
root = Spectator::RootExampleGroup.new(hooks)
group = new_nested_group(parent: root)
run_example(PassingExample, group)
called.should be_true
end
it "runs parent group hooks first" do
calls = [] of Symbol
root_hooks = new_hooks(around_each: ->(proc : ->) { calls << :a; proc.call })
group_hooks = new_hooks(around_each: ->(proc : ->) { calls << :b; proc.call })
root = Spectator::RootExampleGroup.new(root_hooks)
group = new_nested_group(group_hooks, root)
run_example(PassingExample, group)
calls.should eq(%i[a b])
end
end
context "when an error is raised in a before_all hook" do
pending "returns an errored result" do
hooks = new_hooks(before_all: ->{ raise "oops"; nil })
result = run_example(PassingExample, hooks)
result.should be_a(Spectator::ErroredResult)
end
pending "passes along the exception" do
exception = Exception.new("oops")
hooks = new_hooks(before_all: ->{ raise exception; nil })
result = run_example(PassingExample, hooks)
result.as(Spectator::ErroredResult).error.should eq(exception)
end
pending "doesn't run the test code" do
end
pending "doesn't run any additional hooks" do
end
end
end
context "with a failing test" do
it "returns a failed result" do
run_example(FailingExample).should be_a(Spectator::FailedResult)
end
{% for hook_type in %i[before_all before_each] %}
context "{{hook_type.id}} hooks" do
it "runs a hook" do
called = false
hooks = new_hooks({{hook_type.id}}: ->{ called = true; nil })
run_example(FailingExample, hooks)
called.should be_true
end
it "runs multiple hooks" do
call_count = 0
hooks = new_hooks({{hook_type.id}}: [
->{ call_count += 1; nil },
->{ call_count += 2; nil },
->{ call_count += 3; nil },
])
run_example(FailingExample, hooks)
call_count.should eq(6)
end
it "runs them in the correct order" do
calls = [] of Symbol
hooks = new_hooks({{hook_type.id}}: [
->{ calls << :a; nil },
->{ calls << :b; nil },
->{ calls << :c; nil },
])
run_example(FailingExample, hooks)
calls.should eq(\%i[a b c])
end
it "runs parent group hooks" do
called = false
hooks = new_hooks({{hook_type.id}}: -> { called = true; nil })
root = Spectator::RootExampleGroup.new(hooks)
group = new_nested_group(parent: root)
run_example(FailingExample, group)
called.should be_true
end
it "runs parent group hooks first" do
calls = [] of Symbol
root_hooks = new_hooks({{hook_type.id}}: -> { calls << :a; nil })
group_hooks = new_hooks({{hook_type.id}}: -> { calls << :b; nil })
root = Spectator::RootExampleGroup.new(root_hooks)
group = new_nested_group(group_hooks, root)
run_example(FailingExample, group)
calls.should eq(\%i[a b])
end
end
{% end %}
{% for hook_type in %i[after_all after_each] %}
context "{{hook_type.id}} hooks" do
it "runs a hook" do
called = false
hooks = new_hooks({{hook_type.id}}: ->{ called = true; nil })
run_example(FailingExample, hooks)
called.should be_true
end
it "runs multiple hooks" do
call_count = 0
hooks = new_hooks({{hook_type.id}}: [
->{ call_count += 1; nil },
->{ call_count += 2; nil },
->{ call_count += 3; nil },
])
run_example(FailingExample, hooks)
call_count.should eq(6)
end
it "runs them in the correct order" do
calls = [] of Symbol
hooks = new_hooks({{hook_type.id}}: [
->{ calls << :a; nil },
->{ calls << :b; nil },
->{ calls << :c; nil },
])
run_example(FailingExample, hooks)
calls.should eq(\%i[a b c])
end
it "runs parent group hooks" do
called = false
hooks = new_hooks({{hook_type.id}}: -> { called = true; nil })
root = Spectator::RootExampleGroup.new(hooks)
group = new_nested_group(parent: root)
run_example(FailingExample, group)
called.should be_true
end
it "runs parent group hooks last" do
calls = [] of Symbol
root_hooks = new_hooks({{hook_type.id}}: -> { calls << :a; nil })
group_hooks = new_hooks({{hook_type.id}}: -> { calls << :b; nil })
root = Spectator::RootExampleGroup.new(root_hooks)
group = new_nested_group(group_hooks, root)
run_example(FailingExample, group)
calls.should eq(\%i[b a])
end
end
{% end %}
context "around_each hooks" do
it "runs a hook" do
called = false
hooks = new_hooks(around_each: ->(proc : ->) { called = true; proc.call })
run_example(FailingExample, hooks)
called.should be_true
end
it "runs multiple hooks" do
call_count = 0
hooks = new_hooks(around_each: [
->(proc : ->) { call_count += 1; proc.call },
->(proc : ->) { call_count += 2; proc.call },
->(proc : ->) { call_count += 3; proc.call },
])
run_example(FailingExample, hooks)
call_count.should eq(6)
end
it "runs them in the correct order" do
calls = [] of Symbol
hooks = new_hooks(around_each: [
->(proc : ->) { calls << :a; proc.call },
->(proc : ->) { calls << :b; proc.call },
->(proc : ->) { calls << :c; proc.call },
])
run_example(FailingExample, hooks)
calls.should eq(%i[a b c])
end
it "runs parent group hooks" do
called = false
hooks = new_hooks(around_each: ->(proc : ->) { called = true; proc.call })
root = Spectator::RootExampleGroup.new(hooks)
group = new_nested_group(parent: root)
run_example(FailingExample, group)
called.should be_true
end
it "runs parent group hooks first" do
calls = [] of Symbol
root_hooks = new_hooks(around_each: ->(proc : ->) { calls << :a; proc.call })
group_hooks = new_hooks(around_each: ->(proc : ->) { calls << :b; proc.call })
root = Spectator::RootExampleGroup.new(root_hooks)
group = new_nested_group(group_hooks, root)
run_example(FailingExample, group)
calls.should eq(%i[a b])
end
end
end
context "with an errored test" do
it "returns an errored result" do
run_example(ErroredExample).should be_a(Spectator::ErroredResult)
end
{% for hook_type in %i[before_all before_each] %}
context "{{hook_type.id}} hooks" do
it "runs a hook" do
called = false
hooks = new_hooks({{hook_type.id}}: ->{ called = true; nil })
run_example(ErroredExample, hooks)
called.should be_true
end
it "runs multiple hooks" do
call_count = 0
hooks = new_hooks({{hook_type.id}}: [
->{ call_count += 1; nil },
->{ call_count += 2; nil },
->{ call_count += 3; nil },
])
run_example(ErroredExample, hooks)
call_count.should eq(6)
end
it "runs them in the correct order" do
calls = [] of Symbol
hooks = new_hooks({{hook_type.id}}: [
->{ calls << :a; nil },
->{ calls << :b; nil },
->{ calls << :c; nil },
])
run_example(ErroredExample, hooks)
calls.should eq(\%i[a b c])
end
it "runs parent group hooks" do
called = false
hooks = new_hooks({{hook_type.id}}: -> { called = true; nil })
root = Spectator::RootExampleGroup.new(hooks)
group = new_nested_group(parent: root)
run_example(ErroredExample, group)
called.should be_true
end
it "runs parent group hooks first" do
calls = [] of Symbol
root_hooks = new_hooks({{hook_type.id}}: -> { calls << :a; nil })
group_hooks = new_hooks({{hook_type.id}}: -> { calls << :b; nil })
root = Spectator::RootExampleGroup.new(root_hooks)
group = new_nested_group(group_hooks, root)
run_example(ErroredExample, group)
calls.should eq(\%i[a b])
end
end
{% end %}
{% for hook_type in %i[after_all after_each] %}
context "{{hook_type.id}} hooks" do
it "runs a hook" do
called = false
hooks = new_hooks({{hook_type.id}}: ->{ called = true; nil })
run_example(ErroredExample, hooks)
called.should be_true
end
it "runs multiple hooks" do
call_count = 0
hooks = new_hooks({{hook_type.id}}: [
->{ call_count += 1; nil },
->{ call_count += 2; nil },
->{ call_count += 3; nil },
])
run_example(ErroredExample, hooks)
call_count.should eq(6)
end
it "runs them in the correct order" do
calls = [] of Symbol
hooks = new_hooks({{hook_type.id}}: [
->{ calls << :a; nil },
->{ calls << :b; nil },
->{ calls << :c; nil },
])
run_example(ErroredExample, hooks)
calls.should eq(\%i[a b c])
end
it "runs parent group hooks" do
called = false
hooks = new_hooks({{hook_type.id}}: -> { called = true; nil })
root = Spectator::RootExampleGroup.new(hooks)
group = new_nested_group(parent: root)
run_example(ErroredExample, group)
called.should be_true
end
it "runs parent group hooks last" do
calls = [] of Symbol
root_hooks = new_hooks({{hook_type.id}}: -> { calls << :a; nil })
group_hooks = new_hooks({{hook_type.id}}: -> { calls << :b; nil })
root = Spectator::RootExampleGroup.new(root_hooks)
group = new_nested_group(group_hooks, root)
run_example(ErroredExample, group)
calls.should eq(\%i[b a])
end
end
{% end %}
context "around_each hooks" do
it "runs a hook" do
called = false
hooks = new_hooks(around_each: ->(proc : ->) { called = true; proc.call })
run_example(ErroredExample, hooks)
called.should be_true
end
it "runs multiple hooks" do
call_count = 0
hooks = new_hooks(around_each: [
->(proc : ->) { call_count += 1; proc.call },
->(proc : ->) { call_count += 2; proc.call },
->(proc : ->) { call_count += 3; proc.call },
])
run_example(ErroredExample, hooks)
call_count.should eq(6)
end
it "runs them in the correct order" do
calls = [] of Symbol
hooks = new_hooks(around_each: [
->(proc : ->) { calls << :a; proc.call },
->(proc : ->) { calls << :b; proc.call },
->(proc : ->) { calls << :c; proc.call },
])
run_example(ErroredExample, hooks)
calls.should eq(%i[a b c])
end
it "runs parent group hooks" do
called = false
hooks = new_hooks(around_each: ->(proc : ->) { called = true; proc.call })
root = Spectator::RootExampleGroup.new(hooks)
group = new_nested_group(parent: root)
run_example(ErroredExample, group)
called.should be_true
end
it "runs parent group hooks first" do
calls = [] of Symbol
root_hooks = new_hooks(around_each: ->(proc : ->) { calls << :a; proc.call })
group_hooks = new_hooks(around_each: ->(proc : ->) { calls << :b; proc.call })
root = Spectator::RootExampleGroup.new(root_hooks)
group = new_nested_group(group_hooks, root)
run_example(ErroredExample, group)
calls.should eq(%i[a b])
end
end
end
end
describe "#finished?" do
it "is initially false" do
new_runnable_example.finished?.should be_false
end
it "is true after #run is called" do
example = new_runnable_example
Spectator::Internals::Harness.run(example)
example.finished?.should be_true
end
end
describe "#group" do
it "is the expected value" do
group = new_root_group
example = new_runnable_example(group)
example.group.should eq(group)
end
end
describe "#example_count" do
it "is one" do
new_runnable_example.example_count.should eq(1)
end
end
describe "#[]" do
it "returns self" do
example = new_runnable_example
example[0].should eq(example)
end
end
describe "#to_s" do
it "contains #what" do
example = new_runnable_example
example.to_s.should contain(example.what)
end
it "contains the group's #what" do
group = new_nested_group
example = new_runnable_example(group)
example.to_s.should contain(group.what)
end
end
end