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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
|
# frozen_string_literal: true
require "rubygems"
require "fileutils"
require "tmpdir"
require 'rdoc/rubygems_hook'
require "test/unit"
class TestRDocRubygemsHook < Test::Unit::TestCase
def setup
@a = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "a"
s.version = 2
s.rdoc_options = %w[--main MyTitle]
s.extra_rdoc_files = %w[README]
end
@tempdir = File.realpath(Dir.mktmpdir("test_rubygems_hook_"))
@orig_envs = %w[
GEM_VENDOR
GEMRC
XDG_CACHE_HOME
XDG_CONFIG_HOME
XDG_DATA_HOME
SOURCE_DATE_EPOCH
BUNDLER_VERSION
HOME
RDOCOPT
].map {|e| [e, ENV.delete(e)]}.to_h
ENV["HOME"] = @tempdir
Gem.configuration = nil
@a.instance_variable_set(:@doc_dir, File.join(@tempdir, "doc"))
@a.instance_variable_set(:@gem_dir, File.join(@tempdir, "a-2"))
@a.instance_variable_set(:@full_gem_path, File.join(@tempdir, "a-2"))
@a.loaded_from = File.join(@tempdir, 'a-2', 'a-2.gemspec')
FileUtils.mkdir_p File.join(@tempdir, 'a-2', 'lib')
FileUtils.touch File.join(@tempdir, 'a-2', 'lib', 'a.rb')
FileUtils.touch File.join(@tempdir, 'a-2', 'README')
@hook = RDoc::RubygemsHook.new @a
begin
RDoc::RubygemsHook.load_rdoc
rescue Gem::DocumentError => e
omit e.message
end
@old_ui = Gem::DefaultUserInteraction.ui
Gem::DefaultUserInteraction.ui = Gem::SilentUI.new
end
def teardown
ui = Gem::DefaultUserInteraction.ui
Gem::DefaultUserInteraction.ui = @old_ui
FileUtils.rm_rf @tempdir
ui.close
ENV.update(@orig_envs)
end
def test_initialize
refute @hook.generate_rdoc
assert @hook.generate_ri
rdoc = RDoc::RubygemsHook.new @a, false, false
refute rdoc.generate_rdoc
refute rdoc.generate_ri
end
def test_delete_legacy_args
args = %w[
--inline-source
--one-file
--promiscuous
-p
]
@hook.delete_legacy_args args
assert_empty args
end
def test_document
options = RDoc::Options.new
options.files = []
rdoc = @hook.new_rdoc
rdoc.store = RDoc::Store.new
@hook.instance_variable_set :@rdoc, rdoc
@hook.instance_variable_set :@file_info, []
@hook.document 'darkfish', options, @a.doc_dir('rdoc')
assert @hook.rdoc_installed?
end
def test_generate
FileUtils.mkdir_p @a.doc_dir
FileUtils.mkdir_p File.join(@a.gem_dir, 'lib')
@hook.generate
refute @hook.rdoc_installed?
assert @hook.ri_installed?
rdoc = @hook.instance_variable_get :@rdoc
refute rdoc.options.hyperlink_all
assert_equal Pathname(@a.full_gem_path), rdoc.options.root
assert_equal %w[README lib], rdoc.options.files.sort
assert_equal 'MyTitle', rdoc.store.main
end
def test_generate_all
@hook.generate_rdoc = true
@hook.generate_ri = true
FileUtils.mkdir_p @a.doc_dir
FileUtils.mkdir_p File.join(@a.gem_dir, 'lib')
@hook.generate
assert @hook.rdoc_installed?
assert @hook.ri_installed?
rdoc = @hook.instance_variable_get :@rdoc
refute rdoc.options.hyperlink_all
assert_equal Pathname(@a.full_gem_path), rdoc.options.root
assert_equal %w[README lib], rdoc.options.files.sort
assert_equal 'MyTitle', rdoc.store.main
end
def test_generate_configuration_rdoc_array
Gem.configuration[:rdoc] = %w[-A]
FileUtils.mkdir_p @a.doc_dir
FileUtils.mkdir_p File.join(@a.gem_dir, 'lib')
@hook.generate
rdoc = @hook.instance_variable_get :@rdoc
assert rdoc.options.hyperlink_all
end
def test_generate_configuration_rdoc_string
Gem.configuration[:rdoc] = '-A'
FileUtils.mkdir_p @a.doc_dir
FileUtils.mkdir_p File.join(@a.gem_dir, 'lib')
@hook.generate
rdoc = @hook.instance_variable_get :@rdoc
assert rdoc.options.hyperlink_all
end
def test_generate_default_gem
Gem::Deprecate.skip_during do
if Gem.respond_to?(:default_specifications_dir)
klass = Gem
else
klass = Gem::Specification
end
@a.loaded_from = File.join klass.default_specifications_dir, 'a.gemspec'
end
@hook.generate
refute @hook.rdoc_installed?
refute @hook.ri_installed?
end
def test_generate_disabled
@hook.generate_rdoc = false
@hook.generate_ri = false
@hook.generate
refute @hook.rdoc_installed?
refute @hook.ri_installed?
end
def test_generate_force
FileUtils.mkdir_p @a.doc_dir 'ri'
FileUtils.mkdir_p @a.doc_dir 'rdoc'
FileUtils.mkdir_p File.join(@a.gem_dir, 'lib')
@hook.force = true
@hook.generate
assert_path_not_exist File.join(@a.doc_dir('rdoc'), 'index.html')
assert_path_exist File.join(@a.doc_dir('ri'), 'cache.ri')
end
def test_generate_no_overwrite
FileUtils.mkdir_p @a.doc_dir 'ri'
FileUtils.mkdir_p @a.doc_dir 'rdoc'
FileUtils.mkdir_p File.join(@a.gem_dir, 'lib')
@hook.generate
assert_path_not_exist File.join(@a.doc_dir('rdoc'), 'index.html')
assert_path_not_exist File.join(@a.doc_dir('ri'), 'cache.ri')
end
def test_new_rdoc
assert_kind_of RDoc::RDoc, @hook.new_rdoc
end
def test_rdoc_installed?
refute @hook.rdoc_installed?
FileUtils.mkdir_p @a.doc_dir 'rdoc'
assert @hook.rdoc_installed?
end
def test_remove
FileUtils.mkdir_p @a.doc_dir 'rdoc'
FileUtils.mkdir_p @a.doc_dir 'ri'
@hook.remove
refute @hook.rdoc_installed?
refute @hook.ri_installed?
assert_path_exist @a.doc_dir
end
def test_remove_unwritable
omit 'chmod not supported' if Gem.win_platform?
omit "assumes that euid is not root" if Process.euid == 0
FileUtils.mkdir_p @a.base_dir
FileUtils.chmod 0, @a.base_dir
e = assert_raise Gem::FilePermissionError do
@hook.remove
end
assert_equal @a.base_dir, e.directory
ensure
FileUtils.chmod(0755, @a.base_dir) if File.directory?(@a.base_dir)
end
def test_ri_installed?
refute @hook.ri_installed?
FileUtils.mkdir_p @a.doc_dir 'ri'
assert @hook.ri_installed?
end
def test_setup
@hook.setup
assert_path_exist @a.doc_dir
end
def test_setup_unwritable
omit 'chmod not supported' if Gem.win_platform?
omit "assumes that euid is not root" if Process.euid == 0
FileUtils.mkdir_p @a.doc_dir
FileUtils.chmod 0, @a.doc_dir
e = assert_raise Gem::FilePermissionError do
@hook.setup
end
assert_equal @a.doc_dir, e.directory
ensure
if File.exist? @a.doc_dir
FileUtils.chmod 0755, @a.doc_dir
FileUtils.rm_r @a.doc_dir
end
end
end
|