summaryrefslogtreecommitdiff
path: root/spec/ruby/library/tmpdir/dir
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-20 20:18:52 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-20 20:18:52 +0000
commit1d15d5f08032acf1b7bceacbb450d617ff6e0931 (patch)
treea3785a79899302bc149e4a6e72f624ac27dc1f10 /spec/ruby/library/tmpdir/dir
parent75bfc6440d595bf339007f4fb280fd4d743e89c1 (diff)
Move spec/rubyspec to spec/ruby for consistency
* Other ruby implementations use the spec/ruby directory. [Misc #13792] [ruby-core:82287] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/library/tmpdir/dir')
-rw-r--r--spec/ruby/library/tmpdir/dir/mktmpdir_spec.rb117
-rw-r--r--spec/ruby/library/tmpdir/dir/tmpdir_spec.rb10
2 files changed, 127 insertions, 0 deletions
diff --git a/spec/ruby/library/tmpdir/dir/mktmpdir_spec.rb b/spec/ruby/library/tmpdir/dir/mktmpdir_spec.rb
new file mode 100644
index 0000000000..3459a47fe6
--- /dev/null
+++ b/spec/ruby/library/tmpdir/dir/mktmpdir_spec.rb
@@ -0,0 +1,117 @@
+require File.expand_path('../../../../spec_helper', __FILE__)
+require "tmpdir"
+
+describe "Dir.mktmpdir when passed no arguments" do
+ after :each do
+ Dir.rmdir @tmpdir if File.directory? @tmpdir
+ end
+
+ it "returns the path to the created tmp-dir" do
+ Dir.stub!(:mkdir)
+ Dir.should_receive(:tmpdir).and_return("/tmp")
+ @tmpdir = Dir.mktmpdir
+ @tmpdir.should =~ /^\/tmp\//
+ end
+
+ it "creates a new writable directory in the path provided by Dir.tmpdir" do
+ Dir.should_receive(:tmpdir).and_return(tmp(""))
+ @tmpdir = Dir.mktmpdir
+ File.directory?(@tmpdir).should be_true
+ File.writable?(@tmpdir).should be_true
+ end
+end
+
+describe "Dir.mktmpdir when passed a block" do
+ before :each do
+ @real_tmp_root = tmp('')
+ Dir.stub!(:tmpdir).and_return(@real_tmp_root)
+ FileUtils.stub!(:remove_entry)
+ FileUtils.stub!(:remove_entry_secure)
+ end
+
+ after :each do
+ Dir.rmdir @tmpdir if File.directory? @tmpdir
+ end
+
+ it "yields the path to the passed block" do
+ Dir.stub!(:mkdir)
+ called = nil
+ Dir.mktmpdir do |path|
+ @tmpdir = path
+ called = true
+ path.start_with?(@real_tmp_root).should be_true
+ end
+ called.should be_true
+ end
+
+ it "creates the tmp-dir before yielding" do
+ Dir.should_receive(:tmpdir).and_return(tmp(""))
+ Dir.mktmpdir do |path|
+ @tmpdir = path
+ File.directory?(path).should be_true
+ File.writable?(path).should be_true
+ end
+ end
+
+ it "removes the tmp-dir after executing the block" do
+ Dir.stub!(:mkdir)
+ Dir.mktmpdir do |path|
+ @tmpdir = path
+ FileUtils.should_receive(:remove_entry).with(path)
+ end
+ end
+
+ it "returns the blocks return value" do
+ Dir.stub!(:mkdir)
+ result = Dir.mktmpdir do |path|
+ @tmpdir = path
+ :test
+ end
+ result.should equal(:test)
+ end
+end
+
+describe "Dir.mktmpdir when passed [String]" do
+ before :each do
+ Dir.stub!(:mkdir)
+ Dir.stub!(:tmpdir).and_return("/tmp")
+ end
+
+ after :each do
+ Dir.rmdir @tmpdir if File.directory? @tmpdir
+ end
+
+ it "uses the passed String as a prefix to the tmp-directory" do
+ prefix = "before"
+ @tmpdir = Dir.mktmpdir(prefix)
+ @tmpdir.should =~ /^\/tmp\/#{prefix}/
+ end
+end
+
+describe "Dir.mktmpdir when passed [Array]" do
+ before :each do
+ Dir.stub!(:mkdir)
+ Dir.stub!(:tmpdir).and_return("/tmp")
+ FileUtils.stub!(:remove_entry_secure)
+ end
+
+ after :each do
+ Dir.rmdir @tmpdir if File.directory? @tmpdir
+ end
+
+ it "uses the first element of the passed Array as a prefix and the scond element as a suffix to the tmp-directory" do
+ prefix = "before"
+ suffix = "after"
+
+ @tmpdir = Dir.mktmpdir([prefix, suffix])
+ @tmpdir.should =~ /#{suffix}$/
+ end
+end
+
+describe "Dir.mktmpdir when passed [Object]" do
+ it "raises an ArgumentError" do
+ lambda { Dir.mktmpdir(Object.new) }.should raise_error(ArgumentError)
+ lambda { Dir.mktmpdir(:symbol) }.should raise_error(ArgumentError)
+ lambda { Dir.mktmpdir(10) }.should raise_error(ArgumentError)
+ end
+end
diff --git a/spec/ruby/library/tmpdir/dir/tmpdir_spec.rb b/spec/ruby/library/tmpdir/dir/tmpdir_spec.rb
new file mode 100644
index 0000000000..19d54e03b3
--- /dev/null
+++ b/spec/ruby/library/tmpdir/dir/tmpdir_spec.rb
@@ -0,0 +1,10 @@
+require File.expand_path('../../../../spec_helper', __FILE__)
+require "tmpdir"
+
+describe "Dir.tmpdir" do
+ it "returns the path to a writable and readable directory" do
+ dir = Dir.tmpdir
+ File.directory?(dir).should be_true
+ File.writable?(dir).should be_true
+ end
+end