1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
|
# frozen_string_literal: true
require "test_helper"
require "pathname"
class TestRequireInteraction < LoaderTest
def assert_required(str)
assert_equal true, require(str)
end
def assert_not_required(str)
assert_equal false, require(str)
end
test "our decorated require returns true or false as expected" do
on_teardown do
remove_const :User
delete_loaded_feature "user.rb"
end
files = [["user.rb", "class User; end"]]
with_files(files) do
with_load_path(".") do
assert_required "user"
assert_not_required "user"
end
end
end
test "our decorated require returns true or false as expected (Pathname)" do
on_teardown do
remove_const :User
delete_loaded_feature "user.rb"
end
files = [["user.rb", "class User; end"]]
pathname_for_user = Pathname.new("user")
with_files(files) do
with_load_path(".") do
assert_required pathname_for_user
assert_not_required pathname_for_user
end
end
end
test "autoloading makes require idempotent even with a relative path" do
files = [["user.rb", "class User; end"]]
with_setup(files, load_path: ".") do
assert User
assert_not_required "user"
end
end
test "a required top-level file is still detected as autoloadable" do
files = [["user.rb", "class User; end"]]
with_setup(files, load_path: ".") do
assert_required "user"
loader.unload
assert !Object.const_defined?(:User, false)
loader.setup
assert User
end
end
test "a required top-level file is still detected as autoloadable (Pathname)" do
files = [["user.rb", "class User; end"]]
with_setup(files, load_path: ".") do
assert_required Pathname.new("user")
assert User
loader.unload
assert !Object.const_defined?(:User, false)
loader.setup
assert User
end
end
test "require autovivifies as needed" do
files = [
["rd1/admin/user.rb", "class Admin::User; end"],
["rd2/admin/users_controller.rb", "class Admin::UsersController; end"]
]
with_setup(files, load_path: %w(rd1 rd2)) do
assert_required "admin/user"
assert Admin::User
assert Admin::UsersController
loader.unload
assert !Object.const_defined?(:Admin)
end
end
test "files deep down the current visited level are recognized as managed (implicit)" do
files = [["foo/bar/baz/zoo/woo.rb", "Foo::Bar::Baz::Zoo::Woo = 1"]]
with_setup(files, load_path: ".") do
assert_required "foo/bar/baz/zoo/woo"
assert loader.unloadable_cpath?("Foo::Bar::Baz::Zoo::Woo")
end
end
test "files deep down the current visited level are recognized as managed (explicit)" do
files = [
["foo/bar/baz/zoo.rb", "module Foo::Bar::Baz::Zoo; include Wadus; end"],
["foo/bar/baz/zoo/wadus.rb", "module Foo::Bar::Baz::Zoo::Wadus; end"],
["foo/bar/baz/zoo/woo.rb", "Foo::Bar::Baz::Zoo::Woo = 1"]
]
with_setup(files, load_path: ".") do
assert_required "foo/bar/baz/zoo/woo"
assert loader.unloadable_cpath?("Foo::Bar::Baz::Zoo::Wadus")
assert loader.unloadable_cpath?("Foo::Bar::Baz::Zoo::Woo")
end
end
test "require works well with explicit namespaces" do
files = [
["hotel.rb", "class Hotel; X = true; end"],
["hotel/pricing.rb", "class Hotel::Pricing; end"]
]
with_setup(files, load_path: ".") do
assert_required "hotel/pricing"
assert Hotel::Pricing
assert Hotel::X
end
end
test "you can autoload yourself in a required file" do
files = [
["my_gem.rb", <<-EOS],
loader = Zeitwerk::Loader.new
loader.push_dir(__dir__)
loader.enable_reloading
loader.setup
module MyGem; end
EOS
["my_gem/foo.rb", "class MyGem::Foo; end"]
]
with_files(files) do |cwd|
with_load_path(cwd) do
assert_required "my_gem"
end
end
end
test "does not autovivify while loading an explicit namespace, constant is not yet defined - file first" do
files = [
["hotel.rb", <<-EOS],
loader = Zeitwerk::Loader.new
loader.push_dir(__dir__)
loader.enable_reloading
loader.setup
Hotel.name
class Hotel
end
EOS
["hotel/pricing.rb", "class Hotel::Pricing; end"]
]
with_files(files) do |cwd|
iter = ->(dir, &block) do
if dir == cwd
block.call("hotel.rb")
block.call("hotel")
end
end
Dir.stub :foreach, iter do
e = assert_raises(NameError) do
with_load_path(cwd) do
assert_required "hotel"
end
end
assert_match %r/Hotel/, e.message
end
end
end
test "does not autovivify while loading an explicit namespace, constant is not yet defined - file last" do
files = [
["hotel.rb", <<-EOS],
loader = Zeitwerk::Loader.new
loader.push_dir(__dir__)
loader.enable_reloading
loader.setup
Hotel.name
class Hotel
end
EOS
["hotel/pricing.rb", "class Hotel::Pricing; end"]
]
with_files(files) do |cwd|
iter = ->(dir, &block) do
if dir == cwd
block.call("hotel")
block.call("hotel.rb")
end
end
Dir.stub :foreach, iter do
e = assert_raises(NameError) do
with_load_path(cwd) do
assert_required "hotel"
end
end
assert_match %r/Hotel/, e.message
end
end
end
end
|