Sha256: 19dc3ad51b47ba1f78213ae3f065ea067eb52d45664a57a9a3095e0d3789585b

Contents?: true

Size: 1.04 KB

Versions: 18

Compression:

Stored size: 1.04 KB

Contents

class Nanoc::Extra::PiperTest < Nanoc::TestCase
  def test_basic
    stdout = StringIO.new
    stderr = StringIO.new

    cmd = %w(ls -l)

    File.open('foo.txt', 'w') { |io| io.write('hi') }
    File.open('bar.txt', 'w') { |io| io.write('ho') }

    piper = Nanoc::Extra::Piper.new(stdout: stdout, stderr: stderr)
    piper.run(cmd, nil)

    assert_match(/foo\.txt/, stdout.string)
    assert_match(/bar\.txt/, stdout.string)
    assert stderr.string.empty?
  end

  def test_stdin
    stdout = StringIO.new
    stderr = StringIO.new

    input = 'Hello World!'
    cmd = %w(cat)

    piper = Nanoc::Extra::Piper.new(stdout: stdout, stderr: stderr)
    piper.run(cmd, input)

    assert_equal(input, stdout.string)
    assert_equal('', stderr.string)
  end

  def test_no_such_command
    stdout = StringIO.new
    stderr = StringIO.new

    cmd = %w(cat kafhawilgoiwaejagoualjdsfilofiewaguihaifeowuiga)

    piper = Nanoc::Extra::Piper.new(stdout: stdout, stderr: stderr)
    assert_raises(Nanoc::Extra::Piper::Error) do
      piper.run(cmd, nil)
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
nanoc-4.4.5 test/extra/test_piper.rb
nanoc-4.4.4 test/extra/test_piper.rb
nanoc-4.4.3 test/extra/test_piper.rb
nanoc-4.4.2 test/extra/test_piper.rb
nanoc-4.4.1 test/extra/test_piper.rb
nanoc-4.4.0 test/extra/test_piper.rb
nanoc-4.3.8 test/extra/test_piper.rb
nanoc-4.3.7 test/extra/test_piper.rb
nanoc-4.3.6 test/extra/test_piper.rb
nanoc-4.3.5 test/extra/test_piper.rb
nanoc-4.3.4 test/extra/test_piper.rb
nanoc-4.3.3 test/extra/test_piper.rb
nanoc-4.3.2 test/extra/test_piper.rb
nanoc-4.3.1 test/extra/test_piper.rb
nanoc-4.3.0 test/extra/test_piper.rb
nanoc-4.2.4 test/extra/test_piper.rb
nanoc-4.2.3 test/extra/test_piper.rb
nanoc-4.2.2 test/extra/test_piper.rb