Sha256: 6a7a3160b8f6c14f06b6cccbc13403faeaa6e1785d2f1cc84566c60621b8ad1d
Contents?: true
Size: 1.71 KB
Versions: 2
Compression:
Stored size: 1.71 KB
Contents
require "helpers/test_helper" # construct an appropriate local file URL for curl testing def host_local_url(host, path) if host.is_cygwin? path_result = on(host, "cygpath #{path}") path = path_result.raw_output.chomp end "file://#{path}" end test_name "dsl::helpers::host_helpers #curl_on" do step "#curl_on fails if the URL in question cannot be reached" do assert Beaker::Host::CommandFailure do curl_on default, "file:///non/existent.html" end end step "#curl_on can retrieve the contents of a URL, using standard curl options" do remote_tmpdir = tmpdir_on default remote_filename, contents = create_remote_file_from_fixture("simple_text_file", default, remote_tmpdir, "testfile.txt") remote_targetfilename = File.join remote_tmpdir, "outfile.txt" result = curl_on default, "-o #{remote_targetfilename} #{host_local_url default, remote_filename}" assert_equal 0, result.exit_code remote_contents = on(default, "cat #{remote_targetfilename}").stdout assert_equal contents, remote_contents end step "#curl_on can retrieve the contents of a URL, when given a hosts array" do remote_tmpdir = tmpdir_on default on hosts, "mkdir -p #{remote_tmpdir}" remote_filename = contents = nil hosts.each do |host| remote_filename, contents = create_remote_file_from_fixture("simple_text_file", host, remote_tmpdir, "testfile.txt") end remote_targetfilename = File.join remote_tmpdir, "outfile.txt" result = curl_on hosts, "-o #{remote_targetfilename} #{host_local_url default, remote_filename}" hosts.each do |host| remote_contents = on(host, "cat #{remote_targetfilename}").stdout assert_equal contents, remote_contents end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
beaker-3.37.0 | acceptance/tests/base/dsl/helpers/host_helpers/curl_on_test.rb |
beaker-3.36.0 | acceptance/tests/base/dsl/helpers/host_helpers/curl_on_test.rb |