Sha256: 4d9578ccba19bb31159afa30c02ca30a350f1c80f05024acccffd70387533685

Contents?: true

Size: 1.96 KB

Versions: 11

Compression:

Stored size: 1.96 KB

Contents

require "hoe"
require File.expand_path "lib/hoe/debug.rb" # ugh. avoid dupe warnings
require "tmpdir"
require "tempfile"
require "minitest/autorun"

class TestHoeDebug < Minitest::Test

  include Hoe::Debug

  # On Rake 0.8.7 verbose_flag is true, causing two tests to fail.
  RakeFileUtils.verbose_flag = nil

  attr_accessor :generated_files

  def setup
    super

    @generated_files = []
  end

  def assert_subprocess_silent
    out, err = capture_subprocess_io do
      yield
    end

    assert_equal "", out
    assert_equal "", err
  end

  def test_check_manifest
    in_tmpdir do
      manifest

      assert_subprocess_silent do
        check_manifest
      end
    end
  end

  def test_check_manifest_generated
    in_tmpdir do
      manifest "generated.rb"

      open "generated.rb", "w" do |io| io.puts "generated = true" end

      assert_subprocess_silent do
        check_manifest
      end
    end
  end

  def test_check_manifest_missing
    in_tmpdir do
      manifest

      open "missing.rb", "w" do |io| io.puts "missing = true" end

      e = nil

      out, err = capture_subprocess_io do
        e = assert_raises RuntimeError do
          check_manifest
        end
      end

      assert_match %r%^Command failed with status%, e.message
      assert_match %r%^\+missing.rb%, out
      assert_equal "", err
    end
  end

  def in_tmpdir
    old_LOAD_PATH = $LOAD_PATH.dup
    $LOAD_PATH.map! { |path| File.expand_path path }

    Dir.mktmpdir do |path|
      Dir.chdir path do
        yield
      end
    end
  ensure
    $LOAD_PATH.replace old_LOAD_PATH
  end

  def manifest extra = nil
    open "Manifest.txt", "w" do |io| # sorted
      io.puts "History.txt"
      io.puts "Manifest.txt"
      io.puts "README.txt"
      io.puts extra if extra
    end

    open "README.txt",  "w"  do |io| io.puts "= blah" end
    open "History.txt", "w"  do |io| io.puts "=== 1.0" end
  end

  def with_config
    yield({ "exclude" => /do not match anything/ }, "~/.hoerc")
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
hoe-3.25.0 test/test_hoe_debug.rb
hoe-3.24.0 test/test_hoe_debug.rb
hoe-3.23.1 test/test_hoe_debug.rb
hoe-3.23.0 test/test_hoe_debug.rb
hoe-3.22.3 test/test_hoe_debug.rb
hoe-3.22.2 test/test_hoe_debug.rb
hoe-3.22.1 test/test_hoe_debug.rb
hoe-3.22.0 test/test_hoe_debug.rb
hoe-3.21.0 test/test_hoe_debug.rb
hoe-3.20.0 test/test_hoe_debug.rb
hoe-3.19.0 test/test_hoe_debug.rb