summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorLamont Granquist <lamont@opscode.com>2013-06-14 12:12:32 -0700
committerLamont Granquist <lamont@opscode.com>2013-06-14 12:12:32 -0700
commit6526c3c7ee383318747dafb2b08933aed84985f5 (patch)
tree591461c080bc2bab76a7a76af40e818bf7e58b6f /spec
parent8e77a79241a10fd0b4abcb183bc65c03083d4eec (diff)
downloadmixlib-shellout-6526c3c7ee383318747dafb2b08933aed84985f5.tar.gz
add spec test for EBADF in closing fds
Diffstat (limited to 'spec')
-rw-r--r--spec/mixlib/shellout_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb
index 2020dda..131c5e1 100644
--- a/spec/mixlib/shellout_spec.rb
+++ b/spec/mixlib/shellout_spec.rb
@@ -1013,5 +1013,19 @@ describe Mixlib::ShellOut do
end
end
end
+
+ describe "#clean_parent_file_descriptors" do
+ # test for for_fd returning a valid File object, but close
+ # throwing EBADF.
+ it "should not throw an exception if fd.close throws EBADF" do
+ fd = mock('File')
+ fd.stub!(:close).at_least(:once).and_raise(Errno::EBADF)
+ File.should_receive(:for_fd).at_least(:once).and_return(fd)
+ shellout = Mixlib::ShellOut.new()
+ shellout.instance_variable_set(:@process_status_pipe, [ 98, 99 ])
+ lambda { shellout.send(:clean_parent_file_descriptors) }.should_not raise_error
+ end
+ end
+
end
end