mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Some tests for NestedExampleGroup
This commit is contained in:
parent
c68cd7e16a
commit
e1501c3416
1 changed files with 733 additions and 0 deletions
733
spec/nested_example_group_spec.cr
Normal file
733
spec/nested_example_group_spec.cr
Normal file
|
@ -0,0 +1,733 @@
|
||||||
|
require "./spec_helper"
|
||||||
|
|
||||||
|
def new_nested_group(hooks = Spectator::ExampleHooks.empty, parent : Spectator::ExampleGroup? = nil)
|
||||||
|
parent ||= Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
Spectator::NestedExampleGroup.new("what", parent, hooks).tap do |group|
|
||||||
|
parent.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
group.children = [] of Spectator::ExampleComponent
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe Spectator::NestedExampleGroup do
|
||||||
|
describe "#what" do
|
||||||
|
it "is the expected value" do
|
||||||
|
what = "foobar"
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new(what, root, Spectator::ExampleHooks.empty)
|
||||||
|
group.what.should eq(what)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#parent" do
|
||||||
|
it "is the expected value" do
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty)
|
||||||
|
group.parent.should eq(root)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#run_before_all_hooks" do
|
||||||
|
it "runs a single hook" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(before_all: ->{ called = true; nil })
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_before_all_hooks
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs multiple hooks" do
|
||||||
|
call_count = 0
|
||||||
|
hooks = new_hooks(before_all: [
|
||||||
|
->{ call_count += 1; nil },
|
||||||
|
->{ call_count += 2; nil },
|
||||||
|
->{ call_count += 3; nil },
|
||||||
|
])
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_before_all_hooks
|
||||||
|
call_count.should eq(6)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs hooks in the correct order" do
|
||||||
|
calls = [] of Symbol
|
||||||
|
hooks = new_hooks(before_all: [
|
||||||
|
->{ calls << :a; nil },
|
||||||
|
->{ calls << :b; nil },
|
||||||
|
->{ calls << :c; nil },
|
||||||
|
])
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_before_all_hooks
|
||||||
|
calls.should eq(%i[a b c])
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the parent hooks" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(before_all: ->{ called = true; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(hooks)
|
||||||
|
group = new_nested_group(parent: root)
|
||||||
|
group.run_before_all_hooks
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the parent hooks first" do
|
||||||
|
calls = [] of Symbol
|
||||||
|
root_hooks = new_hooks(before_all: ->{ calls << :a; nil })
|
||||||
|
group_hooks = new_hooks(before_all: ->{ calls << :b; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(root_hooks)
|
||||||
|
group = new_nested_group(group_hooks, root)
|
||||||
|
group.run_before_all_hooks
|
||||||
|
calls.should eq(%i[a b])
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the hooks once" do
|
||||||
|
call_count = 0
|
||||||
|
hooks = new_hooks(before_all: ->{ call_count += 1; nil })
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
2.times { group.run_before_all_hooks }
|
||||||
|
call_count.should eq(1)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#run_before_each_hooks" do
|
||||||
|
it "runs a single hook" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(before_each: ->{ called = true; nil })
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_before_each_hooks
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs multiple hooks" do
|
||||||
|
call_count = 0
|
||||||
|
hooks = new_hooks(before_each: [
|
||||||
|
->{ call_count += 1; nil },
|
||||||
|
->{ call_count += 2; nil },
|
||||||
|
->{ call_count += 3; nil },
|
||||||
|
])
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_before_each_hooks
|
||||||
|
call_count.should eq(6)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs hooks in the correct order" do
|
||||||
|
calls = [] of Symbol
|
||||||
|
hooks = new_hooks(before_each: [
|
||||||
|
->{ calls << :a; nil },
|
||||||
|
->{ calls << :b; nil },
|
||||||
|
->{ calls << :c; nil },
|
||||||
|
])
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_before_each_hooks
|
||||||
|
calls.should eq(%i[a b c])
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the parent hooks" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(before_each: ->{ called = true; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(hooks)
|
||||||
|
group = new_nested_group(parent: root)
|
||||||
|
group.run_before_each_hooks
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the parent hooks first" do
|
||||||
|
calls = [] of Symbol
|
||||||
|
root_hooks = new_hooks(before_each: ->{ calls << :a; nil })
|
||||||
|
group_hooks = new_hooks(before_each: ->{ calls << :b; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(root_hooks)
|
||||||
|
group = new_nested_group(group_hooks, root)
|
||||||
|
group.run_before_each_hooks
|
||||||
|
calls.should eq(%i[a b])
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the hooks multiple times" do
|
||||||
|
call_count = 0
|
||||||
|
hooks = new_hooks(before_each: ->{ call_count += 1; nil })
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
2.times { group.run_before_each_hooks }
|
||||||
|
call_count.should eq(2)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#run_after_all_hooks" do
|
||||||
|
# No children are used for most of these examples.
|
||||||
|
# That's because `[].all?` is always true.
|
||||||
|
# Which means that all examples are considered finished, since there are none.
|
||||||
|
it "runs a single hook" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(after_all: ->{ called = true; nil })
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_after_all_hooks
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs multiple hooks" do
|
||||||
|
call_count = 0
|
||||||
|
hooks = new_hooks(after_all: [
|
||||||
|
->{ call_count += 1; nil },
|
||||||
|
->{ call_count += 2; nil },
|
||||||
|
->{ call_count += 3; nil },
|
||||||
|
])
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_after_all_hooks
|
||||||
|
call_count.should eq(6)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs hooks in the correct order" do
|
||||||
|
calls = [] of Symbol
|
||||||
|
hooks = new_hooks(after_all: [
|
||||||
|
->{ calls << :a; nil },
|
||||||
|
->{ calls << :b; nil },
|
||||||
|
->{ calls << :c; nil },
|
||||||
|
])
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_after_all_hooks
|
||||||
|
calls.should eq(%i[a b c])
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the parent hooks" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(after_all: ->{ called = true; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(hooks)
|
||||||
|
group = new_nested_group(parent: root)
|
||||||
|
group.run_after_all_hooks
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the parent hooks last" do
|
||||||
|
calls = [] of Symbol
|
||||||
|
root_hooks = new_hooks(after_all: ->{ calls << :a; nil })
|
||||||
|
group_hooks = new_hooks(after_all: ->{ calls << :b; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(root_hooks)
|
||||||
|
group = new_nested_group(group_hooks, root)
|
||||||
|
group.run_after_all_hooks
|
||||||
|
calls.should eq(%i[b a])
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the hooks once" do
|
||||||
|
call_count = 0
|
||||||
|
hooks = new_hooks(after_all: ->{ call_count += 1; nil })
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
2.times { group.run_after_all_hooks }
|
||||||
|
call_count.should eq(1)
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with no examples finished" do
|
||||||
|
it "doesn't run the hooks" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(after_all: ->{ called = true; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, hooks)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
group.children = Array(Spectator::ExampleComponent).new(5) do
|
||||||
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty)
|
||||||
|
end
|
||||||
|
group.run_after_all_hooks
|
||||||
|
called.should be_false
|
||||||
|
end
|
||||||
|
|
||||||
|
it "doesn't run the parent hooks" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(after_all: ->{ called = true; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(hooks)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
group.children = Array(Spectator::ExampleComponent).new(5) do
|
||||||
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty)
|
||||||
|
end
|
||||||
|
group.run_after_all_hooks
|
||||||
|
called.should be_false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with some examples finished" do
|
||||||
|
it "doesn't run the hooks" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(after_all: ->{ called = true; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, hooks)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||||
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||||
|
Spectator::Internals::Harness.run(example) if i % 2 == 0
|
||||||
|
end
|
||||||
|
end
|
||||||
|
group.run_after_all_hooks
|
||||||
|
called.should be_false
|
||||||
|
end
|
||||||
|
|
||||||
|
it "doesn't run the parent hooks" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(after_all: ->{ called = true; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(hooks)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||||
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||||
|
Spectator::Internals::Harness.run(example) if i % 2 == 0
|
||||||
|
end
|
||||||
|
end
|
||||||
|
group.run_after_all_hooks
|
||||||
|
called.should be_false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#run_after_each_hooks" do
|
||||||
|
it "runs a single hook" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(after_each: ->{ called = true; nil })
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_after_each_hooks
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs multiple hooks" do
|
||||||
|
call_count = 0
|
||||||
|
hooks = new_hooks(after_each: [
|
||||||
|
->{ call_count += 1; nil },
|
||||||
|
->{ call_count += 2; nil },
|
||||||
|
->{ call_count += 3; nil },
|
||||||
|
])
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_after_each_hooks
|
||||||
|
call_count.should eq(6)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs hooks in the correct order" do
|
||||||
|
calls = [] of Symbol
|
||||||
|
hooks = new_hooks(after_each: [
|
||||||
|
->{ calls << :a; nil },
|
||||||
|
->{ calls << :b; nil },
|
||||||
|
->{ calls << :c; nil },
|
||||||
|
])
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
group.run_after_each_hooks
|
||||||
|
calls.should eq(%i[a b c])
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the parent hooks" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(after_each: ->{ called = true; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(hooks)
|
||||||
|
group = new_nested_group(parent: root)
|
||||||
|
group.run_after_each_hooks
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the parent hooks last" do
|
||||||
|
calls = [] of Symbol
|
||||||
|
root_hooks = new_hooks(after_each: ->{ calls << :a; nil })
|
||||||
|
group_hooks = new_hooks(after_each: ->{ calls << :b; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(root_hooks)
|
||||||
|
group = new_nested_group(group_hooks, root)
|
||||||
|
group.run_after_each_hooks
|
||||||
|
calls.should eq(%i[b a])
|
||||||
|
end
|
||||||
|
|
||||||
|
it "runs the hooks multiple times" do
|
||||||
|
call_count = 0
|
||||||
|
hooks = new_hooks(after_each: ->{ call_count += 1; nil })
|
||||||
|
group = new_nested_group(hooks)
|
||||||
|
2.times { group.run_after_each_hooks }
|
||||||
|
call_count.should eq(2)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#wrap_around_each_hooks" do
|
||||||
|
it "wraps the block" do
|
||||||
|
called = false
|
||||||
|
wrapper = new_nested_group.wrap_around_each_hooks do
|
||||||
|
called = true
|
||||||
|
end
|
||||||
|
wrapper.call
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "wraps a proc" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(around_each: ->(proc : ->) { called = true; nil })
|
||||||
|
wrapper = new_nested_group(hooks).wrap_around_each_hooks { }
|
||||||
|
wrapper.call
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "wraps multiple procs" 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 },
|
||||||
|
])
|
||||||
|
wrapper = new_nested_group(hooks).wrap_around_each_hooks { }
|
||||||
|
wrapper.call
|
||||||
|
call_count.should eq(6)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "wraps procs 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 },
|
||||||
|
])
|
||||||
|
wrapper = new_nested_group(hooks).wrap_around_each_hooks { }
|
||||||
|
wrapper.call
|
||||||
|
calls.should eq(%i[a b c])
|
||||||
|
end
|
||||||
|
|
||||||
|
it "wraps the parent hooks" do
|
||||||
|
called = false
|
||||||
|
hooks = new_hooks(around_each: ->(proc : ->) { called = true; nil })
|
||||||
|
root = Spectator::RootExampleGroup.new(hooks)
|
||||||
|
wrapper = new_nested_group(parent: root).wrap_around_each_hooks { }
|
||||||
|
wrapper.call
|
||||||
|
called.should be_true
|
||||||
|
end
|
||||||
|
|
||||||
|
it "wraps the parent hooks so they are outermost" 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)
|
||||||
|
wrapper = group.wrap_around_each_hooks { }
|
||||||
|
wrapper.call
|
||||||
|
calls.should eq(%i[a b])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#to_s" do
|
||||||
|
it "contains #what" do
|
||||||
|
group = new_nested_group
|
||||||
|
group.to_s.should contain(group.what)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "contains the parent's #to_s" do
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
parent = Spectator::NestedExampleGroup.new("PARENT", root, Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("GROUP", parent, Spectator::ExampleHooks.empty)
|
||||||
|
root.children = [parent.as(Spectator::ExampleComponent)]
|
||||||
|
parent.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
group.children = [] of Spectator::ExampleComponent
|
||||||
|
group.to_s.should contain(parent.to_s)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#children" do
|
||||||
|
it "raises an error when not set" do
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
expect_raises(Exception) { group.children }
|
||||||
|
end
|
||||||
|
|
||||||
|
it "returns the expected set" do
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
children = Array(Spectator::ExampleComponent).new(5) do
|
||||||
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty)
|
||||||
|
end
|
||||||
|
group.children = children
|
||||||
|
group.children.should eq(children)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#children=" do
|
||||||
|
it "raises an error trying to reset" do
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
children = Array(Spectator::ExampleComponent).new(5) do
|
||||||
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty)
|
||||||
|
end
|
||||||
|
group.children = children
|
||||||
|
expect_raises(Exception) { group.children = children }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#each" do
|
||||||
|
it "yields each child" do
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||||
|
if i % 2 == 0
|
||||||
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty)
|
||||||
|
else
|
||||||
|
Spectator::NestedExampleGroup.new(i.to_s, group, Spectator::ExampleHooks.empty).tap do |sub_group|
|
||||||
|
sub_group.children = [] of Spectator::ExampleComponent
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
group.to_a.should eq(group.children)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "doesn't yield children of children" do
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||||
|
if i % 2 == 0
|
||||||
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty)
|
||||||
|
else
|
||||||
|
Spectator::NestedExampleGroup.new(i.to_s, group, Spectator::ExampleHooks.empty).tap do |sub_group|
|
||||||
|
sub_group.children = Array(Spectator::ExampleComponent).new(5) do
|
||||||
|
PassingExample.new(sub_group, Spectator::Internals::SampleValues.empty)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
group.to_a.should eq(group.children)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#each : Iterator" do
|
||||||
|
it "iterates over each child" do
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||||
|
if i % 2 == 0
|
||||||
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty)
|
||||||
|
else
|
||||||
|
Spectator::NestedExampleGroup.new(i.to_s, group, Spectator::ExampleHooks.empty).tap do |sub_group|
|
||||||
|
sub_group.children = [] of Spectator::ExampleComponent
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
group.each.to_a.should eq(group.children)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "doesn't iterate over children of children" do
|
||||||
|
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty)
|
||||||
|
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty)
|
||||||
|
root.children = [group.as(Spectator::ExampleComponent)]
|
||||||
|
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||||
|
if i % 2 == 0
|
||||||
|
PassingExample.new(group, Spectator::Internals::SampleValues.empty)
|
||||||
|
else
|
||||||
|
Spectator::NestedExampleGroup.new(i.to_s, group, Spectator::ExampleHooks.empty).tap do |sub_group|
|
||||||
|
sub_group.children = Array(Spectator::ExampleComponent).new(5) do
|
||||||
|
PassingExample.new(sub_group, Spectator::Internals::SampleValues.empty)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
group.each.to_a.should eq(group.children)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#example_count" do
|
||||||
|
context "with no examples" do
|
||||||
|
it "is zero" do
|
||||||
|
new_nested_group.example_count.should eq(0)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with empty sub-groups" do
|
||||||
|
it "is zero" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with direct descendant examples" do
|
||||||
|
it "equals the number of examples" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with examples sub-groups" do
|
||||||
|
it "equals the total number of examples" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with examples at all levels" do
|
||||||
|
it "equals the total number of examples" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#[]" do
|
||||||
|
context "when empty" do
|
||||||
|
it "raises an error" do
|
||||||
|
group = new_nested_group
|
||||||
|
expect_raises(IndexError) { group[0] }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with direct descendant examples" do
|
||||||
|
context "given 0" do
|
||||||
|
it "returns the first example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "given -1" do
|
||||||
|
it "returns the last example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "given an in-bounds positive index" do
|
||||||
|
it "returns the expected example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "given an in-bounds negative index" do
|
||||||
|
it "returns the expected example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "an out-of-bounds positive index" do
|
||||||
|
it "raises an index error" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "an out-of-bounds negative index" do
|
||||||
|
it "raises an index error" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with examples only in sub-groups" do
|
||||||
|
context "given 0" do
|
||||||
|
it "returns the first example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "given -1" do
|
||||||
|
it "returns the last example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "given an in-bounds positive index" do
|
||||||
|
it "returns the expected example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "given an in-bounds negative index" do
|
||||||
|
it "returns the expected example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "an out-of-bounds positive index" do
|
||||||
|
it "raises an index error" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "an out-of-bounds negative index" do
|
||||||
|
it "raises an index error" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with examples at all levels" do
|
||||||
|
context "given 0" do
|
||||||
|
it "returns the first example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "given -1" do
|
||||||
|
it "returns the last example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "given an in-bounds positive index" do
|
||||||
|
it "returns the expected example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "given an in-bounds negative index" do
|
||||||
|
it "returns the expected example" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "an out-of-bounds positive index" do
|
||||||
|
it "raises an index error" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "an out-of-bounds negative index" do
|
||||||
|
it "raises an index error" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with only sub-groups and no examples" do
|
||||||
|
it "raises an index error" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#finished?" do
|
||||||
|
context "with no children" do
|
||||||
|
it "is true" do
|
||||||
|
new_nested_group.finished?.should be_true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with all unfinished children" do
|
||||||
|
it "is false" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with some finished children" do
|
||||||
|
it "is false" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with all finished children" do
|
||||||
|
it "is true" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with a sub-group" do
|
||||||
|
context "with no children" do
|
||||||
|
it "is true" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with all unfinished children" do
|
||||||
|
it "is false" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with some finished children" do
|
||||||
|
it "is false" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with all finished children" do
|
||||||
|
it "is true" do
|
||||||
|
# TODO
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue