Class: Gem::TestCase

Inherits:
MiniTest::Unit::TestCase
  • Object
show all
Includes:
DefaultUserInteraction
Defined in:
lib/rubygems/test_case.rb

Overview

RubyGemTestCase provides a variety of methods for testing rubygems and gem-related behavior in a sandbox. Through RubyGemTestCase you can install and uninstall gems, fetch remote gems through a stub fetcher and be assured your normal set of gems is not affected.

Tests are always run at a safe level of 1.

Direct Known Subclasses

InstallerTestCase, Package::TarTestCase

Defined Under Namespace

Classes: SpecFetcherSetup, StaticSet

Constant Summary collapse

PRIVATE_KEY_PASSPHRASE =

:stopdoc: only available in RubyGems tests

'Foo bar'
@@project_dir =
Dir.pwd.untaint
@@initial_reset =
false
@@ruby =
rubybin
@@good_rake =
"#{rubybin} #{File.expand_path('../../../test/rubygems/good_rake.rb', __FILE__)}"
@@bad_rake =
"#{rubybin} #{File.expand_path('../../../test/rubygems/bad_rake.rb', __FILE__)}"

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from DefaultUserInteraction

ui, #ui, ui=, #ui=, use_ui, #use_ui

Instance Attribute Details

#fetcherObject

:nodoc:



89
90
91
# File 'lib/rubygems/test_case.rb', line 89

def fetcher
  @fetcher
end

#gem_repoObject

:nodoc:



91
92
93
# File 'lib/rubygems/test_case.rb', line 91

def gem_repo
  @gem_repo
end

#uriObject

:nodoc:



93
94
95
# File 'lib/rubygems/test_case.rb', line 93

def uri
  @uri
end

Class Method Details

.cert_path(cert_name) ⇒ Object

Returns the path to the certificate named cert_name from test/rubygems/.



1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
# File 'lib/rubygems/test_case.rb', line 1374

def self.cert_path cert_name
  if 32 == (Time.at(2**32) rescue 32) then
    cert_file =
      File.expand_path "../../../test/rubygems/#{cert_name}_cert_32.pem",
                       __FILE__

    return cert_file if File.exist? cert_file
  end

  File.expand_path "../../../test/rubygems/#{cert_name}_cert.pem", __FILE__
end

.key_path(key_name) ⇒ Object

Returns the path to the key named key_name from test/rubygems



1400
1401
1402
# File 'lib/rubygems/test_case.rb', line 1400

def self.key_path key_name
  File.expand_path "../../../test/rubygems/#{key_name}_key.pem", __FILE__
end

.load_cert(cert_name) ⇒ Object

Loads certificate named cert_name from test/rubygems/.



1362
1363
1364
1365
1366
1367
1368
# File 'lib/rubygems/test_case.rb', line 1362

def self.load_cert cert_name
  cert_file = cert_path cert_name

  cert = File.read cert_file

  OpenSSL::X509::Certificate.new cert
end

.load_key(key_name, passphrase = nil) ⇒ Object

Loads an RSA private key named key_name with passphrase in test/rubygems/



1389
1390
1391
1392
1393
1394
1395
# File 'lib/rubygems/test_case.rb', line 1389

def self.load_key key_name, passphrase = nil
  key_file = key_path key_name

  key = File.read key_file

  OpenSSL::PKey::RSA.new key, passphrase
end

.make_commandObject

Returns the make command for the current platform. For versions of Ruby built on MS Windows with VC++ or Borland it will return ‘nmake’. On all other platforms, including Cygwin, it will return ‘make’.



1104
1105
1106
# File 'lib/rubygems/test_case.rb', line 1104

def self.make_command
  ENV["make"] || (vc_windows? ? 'nmake' : 'make')
end

.process_based_portObject

Allows tests to use a random (but controlled) port number instead of a hardcoded one. This helps CI tools when running parallels builds on the same builder slave.



1137
1138
1139
# File 'lib/rubygems/test_case.rb', line 1137

def self.process_based_port
  @@process_based_port ||= 8000 + $$ % 1000
end

.rubybinObject

Finds the path to the Ruby executable



1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
# File 'lib/rubygems/test_case.rb', line 1170

def self.rubybin
  ruby = ENV["RUBY"]
  return ruby if ruby
  ruby = "ruby"
  rubyexe = "#{ruby}.exe"

  3.times do
    if File.exist? ruby and File.executable? ruby and !File.directory? ruby
      return File.expand_path(ruby)
    end
    if File.exist? rubyexe and File.executable? rubyexe
      return File.expand_path(rubyexe)
    end
    ruby = File.join("..", ruby)
  end

  begin
    require "rbconfig"
    File.join(RbConfig::CONFIG["bindir"],
              RbConfig::CONFIG["ruby_install_name"] +
              RbConfig::CONFIG["EXEEXT"])
  rescue LoadError
    "ruby"
  end
end

.vc_windows?Boolean

Returns whether or not we’re on a version of Ruby built with VC++ (or Borland) versus Cygwin, Mingw, etc.

Returns:

  • (Boolean)


1087
1088
1089
# File 'lib/rubygems/test_case.rb', line 1087

def self.vc_windows?
  RUBY_PLATFORM.match('mswin')
end

.win_platform?Boolean

Is this test being run on a Windows platform?

Returns:

  • (Boolean)


1072
1073
1074
# File 'lib/rubygems/test_case.rb', line 1072

def self.win_platform?
  Gem.win_platform?
end

Instance Method Details

#add_to_fetcher(spec, path = nil, repo = @gem_repo) ⇒ Object

Add spec to @fetcher serving the data in the file path. repo indicates which repo to make spec appear to be in.



964
965
966
967
# File 'lib/rubygems/test_case.rb', line 964

def add_to_fetcher(spec, path=nil, repo=@gem_repo)
  path ||= spec.cache_file
  @fetcher.data["#{@gem_repo}gems/#{spec.file_name}"] = read_binary(path)
end

#all_spec_namesObject



557
558
559
# File 'lib/rubygems/test_case.rb', line 557

def all_spec_names
  Gem::Specification.map(&:full_name)
end

#assert_activate(expected, *specs) ⇒ Object



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/rubygems/test_case.rb', line 95

def assert_activate expected, *specs
  specs.each do |spec|
    case spec
    when String then
      Gem::Specification.find_by_name(spec).activate
    when Gem::Specification then
      spec.activate
    else
      flunk spec.inspect
    end
  end

  loaded = Gem.loaded_specs.values.map(&:full_name)

  assert_equal expected.sort, loaded.sort if expected
end

#assert_contains_make_command(target, output, msg = nil) ⇒ Object



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
# File 'lib/rubygems/test_case.rb', line 169

def assert_contains_make_command(target, output, msg = nil)
  if output.match(/\n/)
    msg = message(msg) {
      'Expected output containing make command "%s": %s' % [
        ('%s %s' % [make_command, target]).rstrip,
        output.inspect
      ]
    }
  else
    msg = message(msg) {
      'Expected make command "%s": %s' % [
        ('%s %s' % [make_command, target]).rstrip,
        output.inspect
      ]
    }
  end

  assert scan_make_command_lines(output).any? { |line|
    make = parse_make_command_line(line)

    if make[:targets].include?(target)
      yield make, line if block_given?
      true
    else
      false
    end
  }, msg
end

#assert_path_exists(path, msg = nil) ⇒ Object

TODO: move to minitest



113
114
115
116
# File 'lib/rubygems/test_case.rb', line 113

def assert_path_exists path, msg = nil
  msg = message(msg) { "Expected path '#{path}' to exist" }
  assert File.exist?(path), msg
end

#build_rake_in(good = true) ⇒ Object

Allows the proper version of rake to be used for the test.



1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
# File 'lib/rubygems/test_case.rb', line 1151

def build_rake_in(good=true)
  gem_ruby = Gem.ruby
  Gem.ruby = @@ruby
  env_rake = ENV["rake"]
  rake = (good ? @@good_rake : @@bad_rake)
  ENV["rake"] = rake
  yield rake
ensure
  Gem.ruby = gem_ruby
  if env_rake
    ENV["rake"] = env_rake
  else
    ENV.delete("rake")
  end
end

#common_installer_setupObject



372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
# File 'lib/rubygems/test_case.rb', line 372

def common_installer_setup
  common_installer_teardown

  Gem.post_build do |installer|
    @post_build_hook_arg = installer
    true
  end

  Gem.post_install do |installer|
    @post_install_hook_arg = installer
  end

  Gem.post_uninstall do |uninstaller|
    @post_uninstall_hook_arg = uninstaller
  end

  Gem.pre_install do |installer|
    @pre_install_hook_arg = installer
    true
  end

  Gem.pre_uninstall do |uninstaller|
    @pre_uninstall_hook_arg = uninstaller
  end
end

#common_installer_teardownObject



398
399
400
401
402
403
404
405
406
407
# File 'lib/rubygems/test_case.rb', line 398

def common_installer_teardown
  Gem.post_build_hooks.clear
  Gem.post_install_hooks.clear
  Gem.done_installing_hooks.clear
  Gem.post_reset_hooks.clear
  Gem.post_uninstall_hooks.clear
  Gem.pre_install_hooks.clear
  Gem.pre_reset_hooks.clear
  Gem.pre_uninstall_hooks.clear
end

#create_tmpdirObject

creates a temporary directory with hax TODO: deprecate and remove



508
509
510
511
512
513
514
# File 'lib/rubygems/test_case.rb', line 508

def create_tmpdir
  tmpdir = nil
  Dir.chdir Dir.tmpdir do tmpdir = Dir.pwd end # HACK OSX /private/tmp
  tmpdir = File.join tmpdir, "test_rubygems_#{$$}"
  FileUtils.mkdir_p tmpdir
  return tmpdir
end

#dep(name, *requirements) ⇒ Object

Construct a new Gem::Dependency.



1203
1204
1205
# File 'lib/rubygems/test_case.rb', line 1203

def dep name, *requirements
  Gem::Dependency.new name, *requirements
end

#dependency_request(dep, from_name, from_version, parent = nil) ⇒ Object

Constructs a Gem::Resolver::DependencyRequest from a Gem::Dependency dep, a from_name and from_version requesting the dependency and a parent DependencyRequest



1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
# File 'lib/rubygems/test_case.rb', line 1212

def dependency_request dep, from_name, from_version, parent = nil
  remote = Gem::Source.new @uri

  unless parent then
    parent_dep = dep from_name, from_version
    parent = Gem::Resolver::DependencyRequest.new parent_dep, nil
  end

  spec = Gem::Resolver::IndexSpecification.new \
    nil, from_name, from_version, remote, Gem::Platform::RUBY
  activation = Gem::Resolver::ActivationRequest.new spec, parent

  Gem::Resolver::DependencyRequest.new dep, activation
end

#enable_shared(value) ⇒ Object

Sets the ENABLE_SHARED entry in RbConfig::CONFIG to value and restores the original value when the block ends



122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/rubygems/test_case.rb', line 122

def enable_shared value
  enable_shared = RbConfig::CONFIG['ENABLE_SHARED']
  RbConfig::CONFIG['ENABLE_SHARED'] = value

  yield
ensure
  if enable_shared then
    RbConfig::CONFIG['enable_shared'] = enable_shared
  else
    RbConfig::CONFIG.delete 'enable_shared'
  end
end

#git_gem(name = 'a', version = 1) ⇒ Object

A git_gem is used with a gem dependencies file. The gem created here has no files, just a gem specification for the given name and version.

Yields the specification to the block, if given



415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
# File 'lib/rubygems/test_case.rb', line 415

def git_gem name = 'a', version = 1
  have_git?

  directory = File.join 'git', name
  directory = File.expand_path directory

  git_spec = Gem::Specification.new name, version do |specification|
    yield specification if block_given?
  end

  FileUtils.mkdir_p directory

  gemspec = "#{name}.gemspec"

  open File.join(directory, gemspec), 'w' do |io|
    io.write git_spec.to_ruby
  end

  head = nil

  Dir.chdir directory do
    unless File.exist? '.git' then
      system @git, 'init', '--quiet'
      system @git, 'config', 'user.name',  'RubyGems Tests'
      system @git, 'config', 'user.email', 'rubygems@example'
    end

    system @git, 'add', gemspec
    system @git, 'commit', '-a', '-m', 'a non-empty commit message', '--quiet'
    head = Gem::Util.popen('git', 'rev-parse', 'master').strip
  end

  return name, git_spec.version, directory, head
end

#have_git?Boolean

Skips this test unless you have a git executable

Returns:

  • (Boolean)


453
454
455
456
457
# File 'lib/rubygems/test_case.rb', line 453

def have_git?
  return if in_path? @git

  skip 'cannot find git executable, use GIT environment variable to set'
end

#in_path?(executable) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


459
460
461
462
463
464
465
# File 'lib/rubygems/test_case.rb', line 459

def in_path? executable # :nodoc:
  return true if %r%\A([A-Z]:|/)% =~ executable and File.exist? executable

  ENV['PATH'].split(File::PATH_SEPARATOR).any? do |directory|
    File.exist? File.join directory, executable
  end
end

#install_default_gems(*specs) ⇒ Object

Installs the provided default specs including writing the spec file



658
659
660
661
662
663
664
665
666
# File 'lib/rubygems/test_case.rb', line 658

def install_default_gems(*specs)
  install_default_specs(*specs)

  specs.each do |spec|
    open spec.loaded_from, 'w' do |io|
      io.write spec.to_ruby_for_cache
    end
  end
end

#install_default_specs(*specs) ⇒ Object

Install the provided default specs



671
672
673
674
675
676
# File 'lib/rubygems/test_case.rb', line 671

def install_default_specs(*specs)
  install_specs(*specs)
  specs.each do |spec|
    Gem.register_default_spec(spec)
  end
end

#install_gem(spec, options = {}) ⇒ Object

Builds and installs the Gem::Specification spec



470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
# File 'lib/rubygems/test_case.rb', line 470

def install_gem spec, options = {}
  require 'rubygems/installer'

  gem = File.join @tempdir, "gems", "#{spec.full_name}.gem"

  unless File.exist? gem then
    use_ui Gem::MockGemUi.new do
      Dir.chdir @tempdir do
        Gem::Package.build spec
      end
    end

    gem = File.join(@tempdir, File.basename(spec.cache_file)).untaint
  end

  Gem::Installer.new(gem, options.merge({:wrappers => true})).install
end

#install_gem_user(spec) ⇒ Object

Builds and installs the Gem::Specification spec into the user dir



491
492
493
# File 'lib/rubygems/test_case.rb', line 491

def install_gem_user spec
  install_gem spec, :user_install => true
end

#install_specs(*specs) ⇒ Object

Install the provided specs



650
651
652
653
# File 'lib/rubygems/test_case.rb', line 650

def install_specs(*specs)
  Gem::Specification.add_specs(*specs)
  Gem.searcher = nil
end

#loaded_spec_namesObject



678
679
680
# File 'lib/rubygems/test_case.rb', line 678

def loaded_spec_names
  Gem.loaded_specs.values.map(&:full_name).sort
end

#make_commandObject

Returns the make command for the current platform. For versions of Ruby built on MS Windows with VC++ or Borland it will return ‘nmake’. On all other platforms, including Cygwin, it will return ‘make’.



1113
1114
1115
# File 'lib/rubygems/test_case.rb', line 1113

def make_command
  ENV["make"] || (vc_windows? ? 'nmake' : 'make')
end

#mu_pp(obj) ⇒ Object

Enables pretty-print for all tests



519
520
521
522
523
524
# File 'lib/rubygems/test_case.rb', line 519

def mu_pp(obj)
  s = ''
  s = PP.pp obj, s
  s = s.force_encoding(Encoding.default_external) if defined? Encoding
  s.chomp
end

#new_default_spec(name, version, deps = nil, *files) ⇒ Object



738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
# File 'lib/rubygems/test_case.rb', line 738

def new_default_spec(name, version, deps = nil, *files)
  spec = util_spec name, version, deps

  spec.loaded_from = File.join(@default_spec_dir, spec.spec_name)
  spec.files = files

  lib_dir = File.join(@tempdir, "default_gems", "lib")
  $LOAD_PATH.unshift(lib_dir)
  files.each do |file|
    rb_path = File.join(lib_dir, file)
    FileUtils.mkdir_p(File.dirname(rb_path))
    File.open(rb_path, "w") do |rb|
      rb << "# #{file}"
    end
  end

  spec
end

#new_spec(name, version, deps = nil, *files) ⇒ Object

new_spec is deprecated as it is never used.

TODO: remove in RubyGems 3.0



698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
# File 'lib/rubygems/test_case.rb', line 698

def new_spec name, version, deps = nil, *files # :nodoc:
  require 'rubygems/specification'

  spec = Gem::Specification.new do |s|
    s.platform    = Gem::Platform::RUBY
    s.name        = name
    s.version     = version
    s.author      = 'A User'
    s.email       = '[email protected]'
    s.homepage    = 'http://example.com'
    s.summary     = "this is a summary"
    s.description = "This is a test description"

    Array(deps).each do |n, req|
      s.add_dependency n, (req || '>= 0')
    end

    s.files.push(*files) unless files.empty?

    yield s if block_given?
  end

  spec.loaded_from = spec.spec_file

  unless files.empty? then
    write_file spec.spec_file do |io|
      io.write spec.to_ruby_for_cache
    end

    util_build_gem spec

    cache_file = File.join @tempdir, 'gems', "#{spec.full_name}.gem"
    FileUtils.mkdir_p File.dirname cache_file
    FileUtils.mv spec.cache_file, cache_file
    FileUtils.rm spec.spec_file
  end

  spec
end

#nmake_found?Boolean

Returns whether or not the nmake command could be found.

Returns:

  • (Boolean)


1120
1121
1122
# File 'lib/rubygems/test_case.rb', line 1120

def nmake_found?
  system('nmake /? 1>NUL 2>&1')
end

#parse_make_command_line(line) ⇒ Object



145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/rubygems/test_case.rb', line 145

def parse_make_command_line(line)
  command, *args = line.shellsplit

  targets = []
  macros = {}

  args.each do |arg|
    case arg
    when /\A(\w+)=/
      macros[$1] = $'
    else
      targets << arg
    end
  end

  targets << '' if targets.empty?

  {
    :command => command,
    :targets => targets,
    :macros => macros,
  }
end

#process_based_portObject

See ::process_based_port



1144
1145
1146
# File 'lib/rubygems/test_case.rb', line 1144

def process_based_port
  self.class.process_based_port
end

#quick_gem(name, version = '2') ⇒ Object

Creates a Gem::Specification with a minimum of extra work. name and version are the gem’s name and version, platform, author, email, homepage, summary and description are defaulted. The specification is yielded for customization.

The gem is added to the installed gems in @gemhome and the runtime.

Use this with #write_file to build an installed gem.



571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
# File 'lib/rubygems/test_case.rb', line 571

def quick_gem(name, version='2')
  require 'rubygems/specification'

  spec = Gem::Specification.new do |s|
    s.platform    = Gem::Platform::RUBY
    s.name        = name
    s.version     = version
    s.author      = 'A User'
    s.email       = '[email protected]'
    s.homepage    = 'http://example.com'
    s.summary     = "this is a summary"
    s.description = "This is a test description"

    yield(s) if block_given?
  end

  Gem::Specification.map # HACK: force specs to (re-)load before we write

  written_path = write_file spec.spec_file do |io|
    io.write spec.to_ruby_for_cache
  end

  spec.loaded_from = spec.loaded_from = written_path

  Gem::Specification.add_spec spec.for_cache

  return spec
end

#quick_spec(name, version = '2') ⇒ Object

TODO: remove in RubyGems 3.0



603
604
605
# File 'lib/rubygems/test_case.rb', line 603

def quick_spec name, version = '2' # :nodoc:
  util_spec name, version
end

#read_binary(path) ⇒ Object

Reads a binary file at path



538
539
540
# File 'lib/rubygems/test_case.rb', line 538

def read_binary(path)
  Gem.read_binary path
end

#read_cache(path) ⇒ Object

Reads a Marshal file at path



529
530
531
532
533
# File 'lib/rubygems/test_case.rb', line 529

def read_cache(path)
  open path.dup.untaint, 'rb' do |io|
    Marshal.load io.read
  end
end

#refute_path_exists(path, msg = nil) ⇒ Object

TODO: move to minitest



136
137
138
139
# File 'lib/rubygems/test_case.rb', line 136

def refute_path_exists path, msg = nil
  msg = message(msg) { "Expected path '#{path}' to not exist" }
  refute File.exist?(path), msg
end

#req(*requirements) ⇒ Object

Constructs a new Gem::Requirement.



1230
1231
1232
1233
# File 'lib/rubygems/test_case.rb', line 1230

def req *requirements
  return requirements.first if Gem::Requirement === requirements.first
  Gem::Requirement.create requirements
end

#save_loaded_featuresObject



686
687
688
689
690
691
# File 'lib/rubygems/test_case.rb', line 686

def save_loaded_features
  old_loaded_features = $LOADED_FEATURES.dup
  yield
ensure
  $LOADED_FEATURES.replace old_loaded_features
end

#scan_make_command_lines(output) ⇒ Object



141
142
143
# File 'lib/rubygems/test_case.rb', line 141

def scan_make_command_lines(output)
  output.scan(/^#{Regexp.escape make_command}(?:[[:blank:]].*)?$/)
end

#setupObject

#setup prepares a sandboxed location to install gems. All installs are directed to a temporary directory. All install plugins are removed.

If the RUBY environment variable is set the given path is used for Gem::ruby. The local platform is set to i386-mswin32 for Windows or i686-darwin8.10.1 otherwise.

If the KEEP_FILES environment variable is set the files will not be removed from /tmp/test_rubygems_#{$$}.#{Time.now.to_i}.



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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
# File 'lib/rubygems/test_case.rb', line 218

def setup
  super

  @orig_gem_home   = ENV['GEM_HOME']
  @orig_gem_path   = ENV['GEM_PATH']
  @orig_gem_vendor = ENV['GEM_VENDOR']

  ENV['GEM_VENDOR'] = nil

  @current_dir = Dir.pwd
  @fetcher     = nil
  @ui          = Gem::MockGemUi.new

  tmpdir = File.expand_path Dir.tmpdir
  tmpdir.untaint

  if ENV['KEEP_FILES'] then
    @tempdir = File.join(tmpdir, "test_rubygems_#{$$}.#{Time.now.to_i}")
  else
    @tempdir = File.join(tmpdir, "test_rubygems_#{$$}")
  end
  @tempdir.untaint

  FileUtils.mkdir_p @tempdir

  # This makes the tempdir consistent on OS X.
  # File.expand_path Dir.tmpdir                      #=> "/var/..."
  # Dir.chdir Dir.tmpdir do File.expand_path '.' end #=> "/private/var/..."
  # TODO use File#realpath above instead of #expand_path once 1.8 support is
  # dropped.
  Dir.chdir @tempdir do
    @tempdir = File.expand_path '.'
    @tempdir.untaint
  end

  @gemhome  = File.join @tempdir, 'gemhome'
  @userhome = File.join @tempdir, 'userhome'
  ENV["GEM_SPEC_CACHE"] = File.join @tempdir, 'spec_cache'

  @orig_ruby = if ENV['RUBY'] then
                 ruby = Gem.ruby
                 Gem.ruby = ENV['RUBY']
                 ruby
               end

  @git = ENV['GIT'] || 'git'

  Gem.ensure_gem_subdirectories @gemhome

  @orig_LOAD_PATH = $LOAD_PATH.dup
  $LOAD_PATH.map! { |s| File.expand_path(s).untaint }

  Dir.chdir @tempdir

  @orig_ENV_HOME = ENV['HOME']
  ENV['HOME'] = @userhome
  Gem.instance_variable_set :@user_home, nil
  Gem.send :remove_instance_variable, :@ruby_version if
    Gem.instance_variables.include? :@ruby_version

  FileUtils.mkdir_p @gemhome
  FileUtils.mkdir_p @userhome

  @orig_gem_private_key_passphrase = ENV['GEM_PRIVATE_KEY_PASSPHRASE']
  ENV['GEM_PRIVATE_KEY_PASSPHRASE'] = PRIVATE_KEY_PASSPHRASE

  @default_dir = File.join @tempdir, 'default'
  @default_spec_dir = File.join @default_dir, "specifications", "default"
  Gem.instance_variable_set :@default_dir, @default_dir
  FileUtils.mkdir_p @default_spec_dir

  # We use Gem::Specification.reset the first time only so that if there
  # are unresolved deps that leak into the whole test suite, they're at least
  # reported once.
  if @@initial_reset
    Gem::Specification.unresolved_deps.clear # done to avoid cross-test warnings
  else
    @@initial_reset = true
    Gem::Specification.reset
  end
  Gem.use_paths(@gemhome)

  Gem::Security.reset

  Gem.loaded_specs.clear
  Gem.clear_default_specs
  Gem::Specification.unresolved_deps.clear

  Gem.configuration.verbose = true
  Gem.configuration.update_sources = true

  Gem::RemoteFetcher.fetcher = Gem::FakeFetcher.new

  @gem_repo = "http://gems.example.com/"
  @uri = URI.parse @gem_repo
  Gem.sources.replace [@gem_repo]

  Gem.searcher = nil
  Gem::SpecFetcher.fetcher = nil
  @orig_BASERUBY = RbConfig::CONFIG['BASERUBY']
  RbConfig::CONFIG['BASERUBY'] = RbConfig::CONFIG['ruby_install_name']

  @orig_arch = RbConfig::CONFIG['arch']

  if win_platform?
    util_set_arch 'i386-mswin32'
  else
    util_set_arch 'i686-darwin8.10.1'
  end

  @marshal_version = "#{Marshal::MAJOR_VERSION}.#{Marshal::MINOR_VERSION}"
end

#spec(name, version, &block) ⇒ Object

Constructs a new Gem::Specification.



1238
1239
1240
# File 'lib/rubygems/test_case.rb', line 1238

def spec name, version, &block
  Gem::Specification.new name, v(version), &block
end

#spec_fetcher(repository = @gem_repo) ⇒ Object

Creates a SpecFetcher pre-filled with the gems or specs defined in the block.

Yields a fetcher object that responds to spec and gem. spec adds a specification to the SpecFetcher while gem adds both a specification and the gem data to the RemoteFetcher so the built gem can be downloaded.

If only the a-3 gem is supposed to be downloaded you can save setup time by creating only specs for the other versions:

spec_fetcher do |fetcher|
  fetcher.spec 'a', 1
  fetcher.spec 'a', 2, 'b' => 3 # dependency on b = 3
  fetcher.gem 'a', 3 do |spec|
    # spec is a Gem::Specification
    # ...
  end
end


1262
1263
1264
1265
1266
# File 'lib/rubygems/test_case.rb', line 1262

def spec_fetcher repository = @gem_repo
  Gem::TestCase::SpecFetcherSetup.declare self, repository do |spec_fetcher_setup|
    yield spec_fetcher_setup if block_given?
  end
end

#teardownObject

#teardown restores the process to its original state and removes the tempdir unless the KEEP_FILES environment variable was set.



335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
# File 'lib/rubygems/test_case.rb', line 335

def teardown
  $LOAD_PATH.replace @orig_LOAD_PATH if @orig_LOAD_PATH

  if @orig_BASERUBY
    RbConfig::CONFIG['BASERUBY'] = @orig_BASERUBY
  else
    RbConfig::CONFIG.delete('BASERUBY')
  end
  RbConfig::CONFIG['arch'] = @orig_arch

  if defined? Gem::RemoteFetcher then
    Gem::RemoteFetcher.fetcher = nil
  end

  Dir.chdir @current_dir

  FileUtils.rm_rf @tempdir unless ENV['KEEP_FILES']

  ENV['GEM_HOME']   = @orig_gem_home
  ENV['GEM_PATH']   = @orig_gem_path
  ENV['GEM_VENDOR'] = @orig_gem_vendor

  Gem.ruby = @orig_ruby if @orig_ruby

  if @orig_ENV_HOME then
    ENV['HOME'] = @orig_ENV_HOME
  else
    ENV.delete 'HOME'
  end

  Gem.instance_variable_set :@default_dir, nil

  ENV['GEM_PRIVATE_KEY_PASSPHRASE'] = @orig_gem_private_key_passphrase

  Gem::Specification._clear_load_cache
end

#uninstall_gem(spec) ⇒ Object

Uninstalls the Gem::Specification spec



497
498
499
500
501
502
# File 'lib/rubygems/test_case.rb', line 497

def uninstall_gem spec
  require 'rubygems/uninstaller'

  Gem::Uninstaller.new(spec.name,
                       :executables => true, :user_install => true).uninstall
end

#unresolved_namesObject



682
683
684
# File 'lib/rubygems/test_case.rb', line 682

def unresolved_names
  Gem::Specification.unresolved_deps.values.map(&:to_s).sort
end

#util_build_gem(spec) ⇒ Object

Builds a gem from spec and places it in File.join @gemhome, 'cache'. Automatically creates files based on spec.files



611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
# File 'lib/rubygems/test_case.rb', line 611

def util_build_gem(spec)
  dir = spec.gem_dir
  FileUtils.mkdir_p dir

  Dir.chdir dir do
    spec.files.each do |file|
      next if File.exist? file
      FileUtils.mkdir_p File.dirname(file)
      File.open file, 'w' do |fp| fp.puts "# #{file}" end
    end

    use_ui Gem::MockGemUi.new do
      Gem::Package.build spec
    end

    cache = spec.cache_file
    FileUtils.mv File.basename(cache), cache
  end
end

#util_clear_gemsObject

Removes all installed gems from @gemhome.



639
640
641
642
643
644
645
# File 'lib/rubygems/test_case.rb', line 639

def util_clear_gems
  FileUtils.rm_rf File.join(@gemhome, "gems") # TODO: use Gem::Dirs
  FileUtils.mkdir File.join(@gemhome, "gems")
  FileUtils.rm_rf File.join(@gemhome, "specifications")
  FileUtils.mkdir File.join(@gemhome, "specifications")
  Gem::Specification.reset
end

#util_gem(name, version, deps = nil, &block) ⇒ Object

Creates a gem with name, version and deps. The specification will be yielded before gem creation for customization. The gem will be placed in File.join @tempdir, 'gems'. The specification and .gem file location are returned.



798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
# File 'lib/rubygems/test_case.rb', line 798

def util_gem(name, version, deps = nil, &block)
  # TODO: deprecate
  raise "deps or block, not both" if deps and block

  if deps then
    block = proc do |s|
      # Since Hash#each is unordered in 1.8, sort
      # the keys and iterate that way so the tests are
      # deterministic on all implementations.
      deps.keys.sort.each do |n|
        s.add_dependency n, (deps[n] || '>= 0')
      end
    end
  end

  spec = quick_gem(name, version, &block)

  util_build_gem spec

  cache_file = File.join @tempdir, 'gems', "#{spec.original_name}.gem"
  FileUtils.mkdir_p File.dirname cache_file
  FileUtils.mv spec.cache_file, cache_file
  FileUtils.rm spec.spec_file

  spec.loaded_from = nil

  [spec, cache_file]
end

#util_gzip(data) ⇒ Object

Gzips data.



830
831
832
833
834
835
836
837
838
# File 'lib/rubygems/test_case.rb', line 830

def util_gzip(data)
  out = StringIO.new

  Zlib::GzipWriter.wrap out do |io|
    io.write data
  end

  out.string
end

#util_make_gems(prerelease = false) ⇒ Object

Creates several default gems which all have a lib/code.rb file. The gems are not installed but are available in the cache dir.

@a1

gem a version 1, this is the best-described gem.

@a2

gem a version 2

+@a3a

gem a version 3.a

@a_evil9

gem a_evil version 9, use this to ensure similarly-named gems don’t collide with a.

@b2

gem b version 2

@c1_2

gem c version 1.2

@pl1

gem pl version 1, this gem has a legacy platform of i386-linux.

Additional prerelease gems may also be created:

@a2_pre

gem a version 2.a

TODO: nuke this and fix tests. this should speed up a lot



858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
# File 'lib/rubygems/test_case.rb', line 858

def util_make_gems(prerelease = false)
  @a1 = quick_gem 'a', '1' do |s|
    s.files = %w[lib/code.rb]
    s.require_paths = %w[lib]
    s.date = Gem::Specification::TODAY - 86400
    s.homepage = 'http://a.example.com'
    s.email = %w[[email protected] [email protected]]
    s.authors = %w[Example Example2]
    s.description = "This line is really, really long.  So long, in fact, that it is more than eighty characters long!  The purpose of this line is for testing wrapping behavior because sometimes people don't wrap their text to eighty characters.  Without the wrapping, the text might not look good in the RSS feed.\n\nAlso, a list:\n* An entry that\\'s actually kind of sort\n* an entry that\\'s really long, which will probably get wrapped funny.  That's ok, somebody wasn't thinking straight when they made it more than eighty characters.\n    DESC\n  end\n\n  init = proc do |s|\n    s.files = %w[lib/code.rb]\n    s.require_paths = %w[lib]\n  end\n\n  @a2      = quick_gem('a', '2',      &init)\n  @a3a     = quick_gem('a', '3.a',    &init)\n  @a_evil9 = quick_gem('a_evil', '9', &init)\n  @b2      = quick_gem('b', '2',      &init)\n  @c1_2    = quick_gem('c', '1.2',    &init)\n  @x       = quick_gem('x', '1',      &init)\n  @dep_x   = quick_gem('dep_x', '1') do |s|\n    s.files = %w[lib/code.rb]\n    s.require_paths = %w[lib]\n    s.add_dependency 'x', '>= 1'\n  end\n\n  @pl1     = quick_gem 'pl', '1' do |s| # l for legacy\n    s.files = %w[lib/code.rb]\n    s.require_paths = %w[lib]\n    s.platform = Gem::Platform.new 'i386-linux'\n    s.instance_variable_set :@original_platform, 'i386-linux'\n  end\n\n  if prerelease\n    @a2_pre = quick_gem('a', '2.a', &init)\n    write_file File.join(*%W[gems \#{@a2_pre.original_name} lib code.rb])\n    util_build_gem @a2_pre\n  end\n\n  write_file File.join(*%W[gems \#{@a1.original_name}      lib code.rb])\n  write_file File.join(*%W[gems \#{@a2.original_name}      lib code.rb])\n  write_file File.join(*%W[gems \#{@a3a.original_name}     lib code.rb])\n  write_file File.join(*%W[gems \#{@a_evil9.original_name} lib code.rb])\n  write_file File.join(*%W[gems \#{@b2.original_name}      lib code.rb])\n  write_file File.join(*%W[gems \#{@c1_2.original_name}    lib code.rb])\n  write_file File.join(*%W[gems \#{@pl1.original_name}     lib code.rb])\n  write_file File.join(*%W[gems \#{@x.original_name}       lib code.rb])\n  write_file File.join(*%W[gems \#{@dep_x.original_name}   lib code.rb])\n\n  [@a1, @a2, @a3a, @a_evil9, @b2, @c1_2, @pl1, @x, @dep_x].each do |spec|\n    util_build_gem spec\n  end\n\n  FileUtils.rm_r File.join(@gemhome, \"gems\", @pl1.original_name)\nend\n"

#util_remove_gem(spec) ⇒ Object



631
632
633
634
# File 'lib/rubygems/test_case.rb', line 631

def util_remove_gem(spec)
  FileUtils.rm_rf spec.cache_file
  FileUtils.rm_rf spec.spec_file
end

#util_restore_RUBY_VERSIONObject



1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
# File 'lib/rubygems/test_case.rb', line 1057

def util_restore_RUBY_VERSION
  Object.send :remove_const, :RUBY_VERSION
  Object.send :remove_const, :RUBY_PATCHLEVEL if defined?(RUBY_PATCHLEVEL)
  Object.send :remove_const, :RUBY_REVISION   if defined?(RUBY_REVISION)

  Object.const_set :RUBY_VERSION,    @RUBY_VERSION
  Object.const_set :RUBY_PATCHLEVEL, @RUBY_PATCHLEVEL if
    defined?(@RUBY_PATCHLEVEL)
  Object.const_set :RUBY_REVISION,   @RUBY_REVISION   if
    defined?(@RUBY_REVISION)
end

#util_set_arch(arch) ⇒ Object

Set the platform to arch



925
926
927
928
929
930
931
932
933
# File 'lib/rubygems/test_case.rb', line 925

def util_set_arch(arch)
  RbConfig::CONFIG['arch'] = arch
  platform = Gem::Platform.new arch

  Gem.instance_variable_set :@platforms, nil
  Gem::Platform.instance_variable_set :@local, nil

  platform
end

#util_set_RUBY_VERSION(version, patchlevel = nil, revision = nil) ⇒ Object



1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
# File 'lib/rubygems/test_case.rb', line 1038

def util_set_RUBY_VERSION(version, patchlevel = nil, revision = nil)
  if Gem.instance_variables.include? :@ruby_version or
     Gem.instance_variables.include? '@ruby_version' then
    Gem.send :remove_instance_variable, :@ruby_version
  end

  @RUBY_VERSION    = RUBY_VERSION
  @RUBY_PATCHLEVEL = RUBY_PATCHLEVEL if defined?(RUBY_PATCHLEVEL)
  @RUBY_REVISION   = RUBY_REVISION   if defined?(RUBY_REVISION)

  Object.send :remove_const, :RUBY_VERSION
  Object.send :remove_const, :RUBY_PATCHLEVEL if defined?(RUBY_PATCHLEVEL)
  Object.send :remove_const, :RUBY_REVISION   if defined?(RUBY_REVISION)

  Object.const_set :RUBY_VERSION,    version
  Object.const_set :RUBY_PATCHLEVEL, patchlevel if patchlevel
  Object.const_set :RUBY_REVISION,   revision   if revision
end

#util_setup_fake_fetcher(prerelease = false) ⇒ Object

Sets up a fake fetcher using the gems from #util_make_gems. Optionally additional prerelease gems may be included.

Gems created by this method may be fetched using Gem::RemoteFetcher.



941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
# File 'lib/rubygems/test_case.rb', line 941

def util_setup_fake_fetcher(prerelease = false)
  require 'zlib'
  require 'socket'
  require 'rubygems/remote_fetcher'

  @fetcher = Gem::FakeFetcher.new

  util_make_gems(prerelease)
  Gem::Specification.reset

  @all_gems = [@a1, @a2, @a3a, @a_evil9, @b2, @c1_2].sort
  @all_gem_names = @all_gems.map { |gem| gem.full_name }

  gem_names = [@a1.full_name, @a2.full_name, @a3a.full_name, @b2.full_name]
  @gem_names = gem_names.sort.join("\n")

  Gem::RemoteFetcher.fetcher = @fetcher
end

#util_setup_spec_fetcher(*specs) ⇒ Object

Sets up Gem::SpecFetcher to return information from the gems in specs. Best used with @all_gems from #util_setup_fake_fetcher.



973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
# File 'lib/rubygems/test_case.rb', line 973

def util_setup_spec_fetcher(*specs)
  specs -= Gem::Specification._all
  Gem::Specification.add_specs(*specs)

  spec_fetcher = Gem::SpecFetcher.fetcher

  prerelease, all = Gem::Specification.partition { |spec|
    spec.version.prerelease?
  }

  spec_fetcher.specs[@uri] = []
  all.each do |spec|
    spec_fetcher.specs[@uri] << spec.name_tuple
  end

  spec_fetcher.latest_specs[@uri] = []
  Gem::Specification.latest_specs.each do |spec|
    spec_fetcher.latest_specs[@uri] << spec.name_tuple
  end

  spec_fetcher.prerelease_specs[@uri] = []
  prerelease.each do |spec|
    spec_fetcher.prerelease_specs[@uri] << spec.name_tuple
  end

  # HACK for test_download_to_cache
  unless Gem::RemoteFetcher === @fetcher then
    v = Gem.marshal_version

    specs = all.map { |spec| spec.name_tuple }
    s_zip = util_gzip Marshal.dump Gem::NameTuple.to_basic specs

    latest_specs = Gem::Specification.latest_specs.map do |spec|
      spec.name_tuple
    end

    l_zip = util_gzip Marshal.dump Gem::NameTuple.to_basic latest_specs

    prerelease_specs = prerelease.map { |spec| spec.name_tuple }
    p_zip = util_gzip Marshal.dump Gem::NameTuple.to_basic prerelease_specs

    @fetcher.data["#{@gem_repo}specs.#{v}.gz"]            = s_zip
    @fetcher.data["#{@gem_repo}latest_specs.#{v}.gz"]     = l_zip
    @fetcher.data["#{@gem_repo}prerelease_specs.#{v}.gz"] = p_zip

    v = Gem.marshal_version

    Gem::Specification.each do |spec|
      path = "#{@gem_repo}quick/Marshal.#{v}/#{spec.original_name}.gemspec.rz"
      data = Marshal.dump spec
      data_deflate = Zlib::Deflate.deflate data
      @fetcher.data[path] = data_deflate
    end
  end

  nil # force errors
end

#util_spec(name, version = 2, deps = nil) ⇒ Object

Creates a spec with name, version. deps can specify the dependency or a block can be given for full customization of the specification.



761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
# File 'lib/rubygems/test_case.rb', line 761

def util_spec name, version = 2, deps = nil # :yields: specification
  raise "deps or block, not both" if deps and block_given?

  spec = Gem::Specification.new do |s|
    s.platform    = Gem::Platform::RUBY
    s.name        = name
    s.version     = version
    s.author      = 'A User'
    s.email       = '[email protected]'
    s.homepage    = 'http://example.com'
    s.summary     = "this is a summary"
    s.description = "This is a test description"

    yield s if block_given?
  end

  if deps then
    # Since Hash#each is unordered in 1.8, sort the keys and iterate that
    # way so the tests are deterministic on all implementations.
    deps.keys.sort.each do |n|
      spec.add_dependency n, (deps[n] || '>= 0')
    end
  end

  spec.loaded_from = spec.spec_file

  Gem::Specification.add_spec spec

  return spec
end

#util_zip(data) ⇒ Object

Deflates data



1034
1035
1036
# File 'lib/rubygems/test_case.rb', line 1034

def util_zip(data)
  Zlib::Deflate.deflate data
end

#v(string) ⇒ Object

Construct a new Gem::Version.



1271
1272
1273
# File 'lib/rubygems/test_case.rb', line 1271

def v string
  Gem::Version.create string
end

#vc_windows?Boolean

Returns whether or not we’re on a version of Ruby built with VC++ (or Borland) versus Cygwin, Mingw, etc.

Returns:

  • (Boolean)


1095
1096
1097
# File 'lib/rubygems/test_case.rb', line 1095

def vc_windows?
  RUBY_PLATFORM.match('mswin')
end

#vendor_gem(name = 'a', version = 1) ⇒ Object

A vendor_gem is used with a gem dependencies file. The gem created here has no files, just a gem specification for the given name and version.

Yields the specification to the block, if given



1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
# File 'lib/rubygems/test_case.rb', line 1281

def vendor_gem name = 'a', version = 1
  directory = File.join 'vendor', name

  vendor_spec = Gem::Specification.new name, version do |specification|
    yield specification if block_given?
  end

  FileUtils.mkdir_p directory

  open File.join(directory, "#{name}.gemspec"), 'w' do |io|
    io.write vendor_spec.to_ruby
  end

  return name, vendor_spec.version, directory
end

#wait_for_child_process_to_exitObject

In case we’re building docs in a background process, this method waits for that process to exit (or if it’s already been reaped, or never happened, swallows the Errno::ECHILD error).



1127
1128
1129
1130
# File 'lib/rubygems/test_case.rb', line 1127

def wait_for_child_process_to_exit
  Process.wait if Process.respond_to?(:fork)
rescue Errno::ECHILD
end

#win_platform?Boolean

Is this test being run on a Windows platform?

Returns:

  • (Boolean)


1079
1080
1081
# File 'lib/rubygems/test_case.rb', line 1079

def win_platform?
  Gem.win_platform?
end

#write_file(path) ⇒ Object

Writes a binary file to path which is relative to @gemhome



545
546
547
548
549
550
551
552
553
554
555
# File 'lib/rubygems/test_case.rb', line 545

def write_file(path)
  path = File.join @gemhome, path unless Pathname.new(path).absolute?
  dir = File.dirname path
  FileUtils.mkdir_p dir

  open path, 'wb' do |io|
    yield io if block_given?
  end

  path
end