Codebase list ruby-debian / 62438145-3b3c-40cd-83c0-d4635846e17d/main t / testdpkg.rb
62438145-3b3c-40cd-83c0-d4635846e17d/main

Tree @62438145-3b3c-40cd-83c0-d4635846e17d/main (Download .tar.gz)

testdpkg.rb @62438145-3b3c-40cd-83c0-d4635846e17d/mainraw · history · blame

# c2t.rb -na Debian::Dpkg ../lib/debian.rb > testdpkg.rb
#
require 'runit/testcase'
require 'runit/cui/testrunner'

$:.unshift("../lib")
require '../lib/debian.rb'

class TestDebian__Dpkg < RUNIT::TestCase

  def test_s_architecture
    arch = %x{dpkg --print-architecture}.chomp!
    assert_equals(arch, Debian::Dpkg.architecture())
  end
  def test_s_gnu_build_architecture
    arch = %x{dpkg --print-gnu-build-architecture}.chomp!
    assert_equals(arch, Debian::Dpkg.gnu_build_architecture())
  end

  def test_s_installation_architecture
    arch = %x{dpkg --print-installation-architecture}.chomp!
    assert_equals(arch, Debian::Dpkg.installation_architecture())
  end

  def test_s_compare_versions
    assert(Debian::Dpkg.compare_versions('1.0','<','1.1'))
    assert(Debian::Dpkg.compare_versions('1.0','<=','1.1'))
    assert(Debian::Dpkg.compare_versions('1.0','<=','1.0'))
    assert(Debian::Dpkg.compare_versions('1.0','=','1.0'))
    assert(Debian::Dpkg.compare_versions('1.0','>=','1.0'))
    assert(Debian::Dpkg.compare_versions('1.1','>','1.0'))
  end

  def test_s_field
    ruby = Dir["/var/cache/apt/archives/ruby_1.6*.deb"]
    if ruby.empty?
      assert_fail("no ruby package in /var/cache/apt/archives")
    end
    ruby.each {|deb|
      d = Debian::Dpkg.field(deb)
      assert_equals("ruby", d.package)
      assert_matches(d.version, /1.6/)
      assert_equals("akira yamada <akira@debian.org>", d['maintainer'])
      assert_equals("interpreters", d['section'])
      assert_equals("optional", d['priority'])
      # request field only
      assert_equals(["ruby"], Debian::Dpkg.field(deb, ["package"]))
      assert_equals(["akira yamada <akira@debian.org>"], 
		    Debian::Dpkg.field(deb, ["maintainer"]))
      assert_equals(["interpreters"], Debian::Dpkg.field(deb, ["section"]))
      assert_equals(["optional"], Debian::Dpkg.field(deb, ["priority"]))
      assert_equals(["ruby","interpreters","optional"],
		    Debian::Dpkg.field(deb, ["package","section","priority"]))
    }
  end

  LIST_SELECTION = Debian::Deb::SELECTION_ID.invert
  LIST_STATUS = Debian::Deb::STATUS_ID.invert
  
  def dpkg_l_parse(line)
    if /^(.)(.)(.)\s+(\S+)\s+(\S+)\s+(.*)/ =~ line
      {'selection' => $1,
	'status' => $2,
	'err?' => $3,
	'package' => $4,
	'version' => $5,
	'description' => $6
      }
    else
      assert_fail("parse failed dpkg -l #{line}")
    end
  end
  def test_s_status
    dpkg_l = ''
    ENV['COLUMNS']="256"
    IO.popen("dpkg --list dpkg") {|f|
      f.each {|line|
	break if /^\+/ =~ line
      }
      dpkg_l = dpkg_l_parse(f.readlines[0])
    }
    dpkg_tl = Debian::Dpkg.status(['dpkg'])
    assert_not_nil(dpkg_tl['dpkg'])
    assert_equals('dpkg', dpkg_tl['dpkg'].package)
    assert_equals(LIST_SELECTION[dpkg_l['selection']], 
		  dpkg_tl['dpkg'].selection)
    assert_equals(LIST_STATUS[dpkg_l['status']], 
		  dpkg_tl['dpkg'].status)
    assert_equals(dpkg_l['version'], 
		  dpkg_tl['dpkg'].version.slice(0,dpkg_l['version'].length))
    assert_equals('Package maintenance system for Debian',
		  dpkg_tl['dpkg'].description.slice(0,'Package maintenance system for Debian'.length))

    ol = {}
    IO.popen("dpkg --list") {|f|
      f.each {|line|
	break if /^\+/ =~ line

      }
      f.each {|line|
	l = dpkg_l_parse(line)
	next if ol.include?(l['package'])
	ol[l['package']] = l
      }
    }
    tl = Debian::Dpkg.status
    ol.each {|op,ol|
      tp = nil
      dupped = false
      tl.each_key {|t|
	if t == op
	  tp = tl[t]
	  break
	end
	if t.slice(0,14) == op
	  if tp
	    dupped = true
	    break
	  end
	  tp = tl[t]
	end
      }
      next if dupped
      assert_not_nil(tp, "#{op}")
      assert_equals(op, tp.package.slice(0,op.length),
		    "#{op}/#{tp.package}")
      assert_equals(ol['package'], tp.package.slice(0,ol['package'].length),
		    "#{ol['pacakge']}/#{tp.package}")
      assert_equals(LIST_SELECTION[ol['selection']], tp.selection, tp.package)
      assert_equals(LIST_STATUS[ol['status']], tp.status, tp.package)
      assert_equals(ol['version'], tp.version.gsub(/^\d+:/,"").slice(0,ol['version'].length), tp.package)
      assert_equals(ol['description'], tp.description.slice(0,ol['description'].length), tp.package)
    }
  end

  def test_s_selections
    # dpkg --get-selections ...
    sl = {}
    IO.popen("dpkg --get-selections") {|f|
      f.each {|line|
	p,sel = line.split
	sl[p] = sel
      }
    }
    tsl = Debian::Dpkg.selections
    sl.each {|p,sel|
      assert_equals(sel, tsl[p].selection)
    }
  end
#  def test_s_selections=
#    # dpkg --set-selections
#  end
  def test_s_avail
    # dpkg --print-avail ...
    a = IO.popen("dpkg --print-avail w3m") {|f|
      Debian::Deb.new(f.readlines.join(""))
    }
    ta = Debian::Dpkg.avail(['w3m'])
    assert_equals(a, ta['w3m'])
  end
  def test_s_listfiles
    # dpkg --listfiles ...
    l = IO.popen("dpkg --listfiles dpkg gzip").readlines("\n\n").collect {|l| 
      l.split("\n")
    }
    tl = Debian::Dpkg.listfiles(['dpkg', 'gzip'])
    assert_equals(l, tl)
  end
  def test_s_search
    # dpkg --search
    s = IO.popen("dpkg --search dpkg-deb").readlines.collect {|l|
      l.chomp!
      /^(\S+):\s*(\S+)/ =~ l
      [$1, $2]
    }.sort {|a,b| (a[0] + a[1]) <=> (b[0] + b[1]) }
    ts = Debian::Dpkg.search(['dpkg-deb']).sort {|a,b| 
      (a[0] + a[1]) <=> (b[0] + b[1])
    }
    assert_equals(s, ts)
  end
#  def test_s_audit
#    # dpkg --audit
#  end

end

if $0 == __FILE__
  if ARGV.size == 0
    suite = TestDebian__Dpkg.suite
  else
    suite = RUNIT::TestSuite.new
    ARGV.each do |testmethod|
      suite.add_test(TestDebian__Dpkg.new(testmethod))
    end
  end
  RUNIT::CUI::TestRunner.run(suite)
end