Description
👓 What did you see?
Constructed a pair of namespaced worlds, in which one internally used the other to manage some common resources. Both worlds were observed to be defined and non-nil
within test steps. Within each world instance however, the other world were observed to be defined, but nil
.
✅ What did you expect to see?
Expected either:
- neither world to have the other defined as a local
- both worlds to have the other defined, and set to the correct global instance
📦 Which tool/library version are you using?
- ruby-cucumber, v8.0.0.rc.1
- ruby, v3.0.0
- Ubuntu 20.04 LTS, running kernel 5.4.0
🔬 How could we reproduce it?
- Create the following feature file
Feature: Namespaced worlds can access each other
Scenario: World A can access the instance of World B
Given the test step sees world B as non nil
Then the instance of world A sees the instance of world B the same as the test step sees world B
Scenario: World B can access the instance of World A
Given the test step sees world A as non nil
Then the instance of world B sees the instance of world A the same as the test step sees world A
- Create the following step definition
module WorldA
def observe_b
world_b
end
end
module WorldB
def observe_a
world_a
end
end
World(world_a: WorldA, world_b: WorldB)
Given /^the test step sees world A as non nil$/ do
expect(world_a).to_not be nil
end
Given /^the test step sees world B as non nil$/ do
expect(world_b).to_not be nil
end
Then /^the instance of world A sees the instance of world B the same as the test step sees world B$/ do
expect(world_a.observe_b).to be world_b
end
Then /^the instance of world B sees the instance of world A the same as the test step sees world A$/ do
expect(world_b.observe_a).to be world_a
end
- Run the tests, and observe the following results:
$ cucumber --quiet
Feature: Namespaced worlds can access each other
Scenario: World A can access the instance of World B
Given the test step sees world B as non nil
Then the instance of world A sees the instance of world B the same as the test step sees world B
expected #<Object:49460> => #<Object:0x0000557415f3f640>
got #<NilClass:8> => nil
Compared using equal?, which compares object identity,
but expected and actual are not the same object. Use
`expect(actual).to eq(expected)` if you don't care about
object identity in this example.
(RSpec::Expectations::ExpectationNotMetError)
./features/step_definitions/namespaced_world.rb:24:in `/^the instance of world A sees the instance of world B the same as the test step sees world B$/'
features/namespaced_world.feature:4:in `the instance of world A sees the instance of world B the same as the test step sees world B'
Scenario: World B can access the instance of World A
Given the test step sees world A as non nil
Then the instance of world B sees the instance of world A the same as the test step sees world A
expected #<Object:49480> => #<Object:0x0000557416096ea8>
got #<NilClass:8> => nil
Compared using equal?, which compares object identity,
but expected and actual are not the same object. Use
`expect(actual).to eq(expected)` if you don't care about
object identity in this example.
(RSpec::Expectations::ExpectationNotMetError)
./features/step_definitions/namespaced_world.rb:28:in `/^the instance of world B sees the instance of world A the same as the test step sees world A$/'
features/namespaced_world.feature:8:in `the instance of world B sees the instance of world A the same as the test step sees world A'
Failing Scenarios:
cucumber features/namespaced_world.feature:2
cucumber features/namespaced_world.feature:6
2 scenarios (2 failed)
4 steps (2 failed, 2 passed)
📚 Any additional context?
This issue arose while looking at factoring out common behaviours from some namespaced worlds to one consolidated spot. The intent was to have all of the other worlds access the common world to get access to the shared behaviour. This appeared to be a valid refactoring, since with non-namespaced worlds, each world is able to access the other methods introduced by the others.
There does not appear to be any documentation indicating that this should or should not be possible.
This text was originally generated from a template, then edited by hand. You can modify the template here.