dtas.git  about / heads / tags
duct tape audio suite for *nix
blob 94abf2067c0fb48568b7ec835e8135dab4912f32 1005 bytes (raw)
$ git show v0.18.0:test/test_process.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
# frozen_string_literal: true
require './test/helper'
require 'dtas/process'
class TestProcess < Testcase
  include DTAS::Process

  def test_encoding
    assert_equal Encoding::BINARY, qx('echo HIHIH').encoding
    s = "".b
    a = qx('echo HIHIHI; echo >&2 BYEBYE', err_str: s)
    assert_equal Encoding::BINARY, a.encoding
  end

  def test_qx_env
    assert_equal "WORLD\n", qx({"HELLO" => "WORLD"}, 'echo $HELLO')
  end

  def test_qx_err
    err = "/dev/null"
    assert_equal "", qx('echo HELLO >&2', err: err)
    assert_equal "/dev/null", err
  end

  def test_qx_err_str
    s = "".b
    assert_equal "", qx('echo HELLO >&2', err_str: s)
    assert_equal "HELLO\n", s
  end

  def test_qx_raise
    assert_raises(RuntimeError) { qx('false') }
  end

  def test_qx_no_raise
    status = qx('false', no_raise: true)
    refute status.success?, status.inspect
  end
end

git clone git://80x24.org/dtas.git
git clone https://80x24.org/dtas.git