123456789_123456789_123456789_123456789_123456789_

Class: Gem::Package::TarTestCase

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, ::Gem::TestCase, MiniTest::Unit::TestCase
Instance Chain:
self, ::Gem::TestCase, ::Gem::DefaultUserInteraction, MiniTest::Unit::TestCase
Inherits: Gem::TestCase
  • Object
Defined in: lib/rubygems/package/tar_test_case.rb

Overview

A test case for Gem::Package::Tar* classes

Class Attribute Summary

::Gem::TestCase - Inherited

.vc_windows?

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

.win_platform?

Is this test being run on a Windows platform?

Class Method Summary

::Gem::TestCase - Inherited

.cert_path

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

.key_path

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

.load_cert

Loads certificate named cert_name from test/rubygems/.

.load_key

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

.make_command

Returns the make command for the current platform.

.process_based_port

Allows tests to use a random (but controlled) port number instead of a hardcoded one.

.rubybin

Finds the path to the Ruby executable.

Instance Attribute Summary

::Gem::TestCase - Inherited

#have_git?

Skips this test unless you have a git executable.

#nmake_found?

Returns whether or not the nmake command could be found.

#vc_windows?

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

#win_platform?

Is this test being run on a Windows platform?

::Gem::DefaultUserInteraction - Included

Instance Method Summary

::Gem::TestCase - Inherited

#add_to_fetcher

Add #spec to @fetcher serving the data in the file Gem.path.

#all_spec_names, #assert_activate, #assert_contains_make_command,
#assert_path_exists

TODO: move to minitest.

#build_rake_in

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

#common_installer_setup, #common_installer_teardown,
#create_tmpdir

creates a temporary directory with hax TODO: deprecate and remove.

#dep

Construct a new ::Gem::Dependency.

#dependency_request

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

#enable_shared

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

#git_gem

A git_gem is used with a gem dependencies file.

#install_default_gems

Installs the provided default specs including writing the spec file.

#install_default_specs

Install the provided default specs.

#install_gem

Builds and installs the ::Gem::Specification #spec

#install_gem_user

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

#install_specs

Install the provided specs.

#loaded_spec_names,
#make_command

Returns the make command for the current platform.

#mu_pp

Enables pretty-print for all tests.

#new_default_spec, #parse_make_command_line,
#process_based_port

See .process_based_port

#quick_gem

Creates a ::Gem::Specification with a minimum of extra work.

#read_binary

Reads a binary file at Gem.path

#read_cache

Reads a Marshal file at Gem.path

#refute_path_exists

TODO: move to minitest.

#req

Constructs a new ::Gem::Requirement.

#save_loaded_features, #scan_make_command_lines,
#setup

#setup prepares a sandboxed location to install gems.

#spec

Constructs a new ::Gem::Specification.

#spec_fetcher

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

#teardown

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

#uninstall_gem
#unresolved_names,
#util_build_gem

Builds a gem from #spec and places it in File.join @gemhome, 'cache'.

#util_clear_gems

Removes all installed gems from @gemhome.

#util_gem

Creates a gem with name, version and deps.

#util_gzip

Gzips data.

#util_make_gems

Creates several default gems which all have a lib/code.rb file.

#util_remove_gem, #util_restore_RUBY_VERSION,
#util_set_arch

Set the platform to arch

#util_set_RUBY_VERSION,
#util_setup_fake_fetcher

Sets up a fake fetcher using the gems from #util_make_gems.

#util_setup_spec_fetcher

Sets up ::Gem::SpecFetcher to return information from the gems in specs.

#util_spec

Creates a spec with name, version.

#util_zip

Deflates data

#v

Construct a new ::Gem::Version.

#vendor_gem

A vendor_gem is used with a gem dependencies file.

#wait_for_child_process_to_exit

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).

#write_file

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

::Gem::DefaultUserInteraction - Included

Instance Method Details

ASCIIZ(str, length)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 9

def ASCIIZ(str, length)
  str + "\0" * (length - str.length)
end

#assert_headers_equal(expected, actual)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 25

def assert_headers_equal(expected, actual)
  expected = expected.to_s unless String === expected
  actual = actual.to_s unless String === actual

  fields = %w[
    name 100
    mode 8
    uid 8
    gid 8
    size 12
    mtime 12
    checksum 8
    typeflag 1
    linkname 100
    magic 6
    version 2
    uname 32
    gname 32
    devmajor 8
    devminor 8
    prefix 155
  ]

  offset = 0

  until fields.empty? do
    name = fields.shift
    length = fields.shift.to_i

    if name == "checksum" then
      chksum_off = offset
      offset += length
      next
    end

    assert_equal expected[offset, length], actual[offset, length],
                 "Field #{name} of the tar header differs."

    offset += length
  end

  assert_equal expected[chksum_off, 8], actual[chksum_off, 8]
end

#calc_checksum(header)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 69

def calc_checksum(header)
  sum = header.unpack("C*").inject{|s,a| s + a}
  SP(Z(to_oct(sum, 6)))
end

#header(type, fname, dname, length, mode, mtime, checksum = nil)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 74

def header(type, fname, dname, length, mode, mtime, checksum = nil)
  checksum ||= " " * 8

  arr = [                  # struct tarfile_entry_posix
    ASCIIZ(fname, 100),    # char name[100];     ASCII + (Z unless filled)
    Z(to_oct(mode, 7)),    # char mode[8];       0 padded, octal null
    Z(to_oct(0, 7)),       # char uid[8];        ditto
    Z(to_oct(0, 7)),       # char gid[8];        ditto
    Z(to_oct(length, 11)), # char size[12];      0 padded, octal, null
    Z(to_oct(mtime, 11)),  # char mtime[12];     0 padded, octal, null
    checksum,              # char checksum[8];   0 padded, octal, null, space
    type,                  # char typeflag[1];   file: "0"  dir: "5"
    "\0" * 100,            # char linkname[100]; ASCII + (Z unless filled)
    "ustar\0",             # char magic[6];      "ustar\0"
    "00",                  # char version[2];    "00"
    ASCIIZ("wheel", 32),   # char uname[32];     ASCIIZ
    ASCIIZ("wheel", 32),   # char gname[32];     ASCIIZ
    Z(to_oct(0, 7)),       # char devmajor[8];   0 padded, octal, null
    Z(to_oct(0, 7)),       # char devminor[8];   0 padded, octal, null
    ASCIIZ(dname, 155)     # char prefix[155];   ASCII + (Z unless filled)
  ]

  format = "C100C8C8C8C12C12C8CC100C6C2C32C32C8C8C155"
  h = if RUBY_VERSION >= "1.9" then
        arr.join
      else
        arr = arr.join("").split(//).map{|x| x[0]}
        arr.pack format
      end
  ret = h + "\0" * (512 - h.size)
  assert_equal(512, ret.size)
  ret
end

SP(s)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 13

def SP(s)
  s + " "
end

SP_Z(s)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 17

def SP_Z(s)
  s + " \0"
end

#tar_dir_header(name, prefix, mode, mtime)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 108

def tar_dir_header(name, prefix, mode, mtime)
  h = header("5", name, prefix, 0, mode, mtime)
  checksum = calc_checksum(h)
  header("5", name, prefix, 0, mode, mtime, checksum)
end

#tar_file_header(fname, dname, mode, length, mtime)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 114

def tar_file_header(fname, dname, mode, length, mtime)
  h = header("0", fname, dname, length, mode, mtime)
  checksum = calc_checksum(h)
  header("0", fname, dname, length, mode, mtime, checksum)
end

#to_oct(n, pad_size)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 120

def to_oct(n, pad_size)
  "%0#{pad_size}o" % n
end

#util_dir_entry

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 132

def util_dir_entry
  util_entry tar_dir_header("foo", "bar", 0, Time.now)
end

#util_entry(tar)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 124

def util_entry(tar)
  io = TempIO.new tar

  header = Gem::Package::TarHeader.from io

  Gem::Package::TarReader::Entry.new header, io
end

Z(s)

[ GitHub ]

  
# File 'lib/rubygems/package/tar_test_case.rb', line 21

def Z(s)
  s + "\0"
end