2011-12-04 01:12:48 +00:00
|
|
|
require "tempfile"
|
|
|
|
|
2012-06-27 23:55:12 +00:00
|
|
|
require "support/tempdir"
|
2011-12-11 23:53:11 +00:00
|
|
|
require "unit/support/isolated_environment"
|
2011-12-04 03:05:50 +00:00
|
|
|
|
2011-12-04 01:12:48 +00:00
|
|
|
shared_context "unit" do
|
2012-06-26 22:04:37 +00:00
|
|
|
before(:each) do
|
|
|
|
# Create a thing to store our temporary files so that they aren't
|
|
|
|
# unlinked right away.
|
|
|
|
@_temp_files = []
|
|
|
|
end
|
|
|
|
|
2011-12-04 03:05:50 +00:00
|
|
|
# This creates an isolated environment so that Vagrant doesn't
|
|
|
|
# muck around with your real system during unit tests.
|
|
|
|
#
|
|
|
|
# The returned isolated environment has a variety of helper
|
|
|
|
# methods on it to easily create files, Vagrantfiles, boxes,
|
|
|
|
# etc.
|
|
|
|
def isolated_environment
|
|
|
|
env = Unit::IsolatedEnvironment.new
|
|
|
|
yield env if block_given?
|
|
|
|
env
|
|
|
|
end
|
|
|
|
|
2011-12-04 01:12:48 +00:00
|
|
|
# This helper creates a temporary file and returns a Pathname
|
|
|
|
# object pointed to it.
|
2012-06-27 23:55:12 +00:00
|
|
|
#
|
|
|
|
# @return [Pathname]
|
2011-12-04 01:12:48 +00:00
|
|
|
def temporary_file(contents=nil)
|
|
|
|
f = Tempfile.new("vagrant-unit")
|
|
|
|
|
|
|
|
if contents
|
|
|
|
f.write(contents)
|
|
|
|
f.flush
|
|
|
|
end
|
|
|
|
|
2012-06-26 22:04:37 +00:00
|
|
|
# Store the tempfile in an instance variable so that it is not
|
|
|
|
# garbage collected, so that the tempfile is not unlinked.
|
|
|
|
@_temp_files << f
|
|
|
|
|
2011-12-18 04:22:46 +00:00
|
|
|
return Pathname.new(f.path)
|
2011-12-04 01:12:48 +00:00
|
|
|
end
|
2012-06-24 06:56:39 +00:00
|
|
|
|
2012-06-27 23:55:12 +00:00
|
|
|
# This creates a temporary directory and returns a {Pathname}
|
|
|
|
# pointing to it.
|
|
|
|
#
|
|
|
|
# @return [Pathname]
|
|
|
|
def temporary_dir
|
|
|
|
# Create a temporary directory and append it to the instance
|
|
|
|
# variabe so that it isn't garbage collected and deleted
|
|
|
|
d = Tempdir.new("vagrant-unit")
|
|
|
|
@_temp_files << d
|
|
|
|
|
|
|
|
# Return the pathname
|
|
|
|
return Pathname.new(d.path)
|
|
|
|
end
|
|
|
|
|
2012-06-24 06:56:39 +00:00
|
|
|
# This helper provides temporary environmental variable changes.
|
|
|
|
def with_temp_env(environment)
|
|
|
|
# Build up the new environment, preserving the old values so we
|
|
|
|
# can replace them back in later.
|
|
|
|
old_env = {}
|
|
|
|
environment.each do |key, value|
|
|
|
|
old_env[key] = ENV[key]
|
|
|
|
ENV[key] = value
|
|
|
|
end
|
|
|
|
|
|
|
|
# Call the block, returning its return value
|
|
|
|
return yield
|
|
|
|
ensure
|
|
|
|
# Reset the environment no matter what
|
|
|
|
old_env.each do |key, value|
|
|
|
|
ENV[key] = value
|
|
|
|
end
|
|
|
|
end
|
2011-12-04 01:12:48 +00:00
|
|
|
end
|