Sha256: 8824bb786929d0f9a752b7c9650d8f8169969b7f2002ecbab637945fb784ecd0
Contents?: true
Size: 1.63 KB
Versions: 8
Compression:
Stored size: 1.63 KB
Contents
require "helpers/test_helper" test_name "dsl::helpers::host_helpers #run_script" do step "#run_script fails when the local script cannot be found" do assert_raises IOError do run_script "/non/existent/testfile.sh" end end step "#run_script fails when there is an error running the remote script" do Dir.mktmpdir do |local_dir| local_filename, _contents = create_local_file_from_fixture("failing_shell_script", local_dir, "testfile.sh", "a+x") assert_raises Beaker::Host::CommandFailure do run_script local_filename end end end step "#run_script passes along options when running the remote command" do Dir.mktmpdir do |local_dir| local_filename, _contents = create_local_file_from_fixture("failing_shell_script", local_dir, "testfile.sh", "a+x") result = run_script local_filename, { :accept_all_exit_codes => true } assert_equal 1, result.exit_code end end step "#run_script runs the script on the remote host" do Dir.mktmpdir do |local_dir| local_filename, _contents = create_local_file_from_fixture("shell_script_with_output", local_dir, "testfile.sh", "a+x") results = run_script local_filename assert_equal 0, results.exit_code assert_equal "output\n", results.stdout end end step "#run_script allows assertions in an optional block" do Dir.mktmpdir do |local_dir| local_filename, _contents = create_local_file_from_fixture("shell_script_with_output", local_dir, "testfile.sh", "a+x") run_script local_filename do assert_equal 0, exit_code assert_equal "output\n", stdout end end end end
Version data entries
8 entries across 8 versions & 1 rubygems