1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Deal with missing FOG_RC/HOME env vars better

This commit is contained in:
Lee Jensen 2011-03-30 17:50:35 -06:00
parent 27b2455a6d
commit 8dfc9beb0d
2 changed files with 40 additions and 1 deletions

View file

@ -18,7 +18,10 @@ module Fog
# @return [String] The path for configuration_file
def self.credentials_path
@credential_path ||= File.expand_path(ENV["FOG_RC"] || (ENV['HOME'] && '~/.fog'))
@credential_path ||= begin
path = ENV["FOG_RC"] || (ENV['HOME'] && '~/.fog')
File.expand_path(path) if path
end
end
# @return [String] The new path for credentials file

View file

@ -0,0 +1,36 @@
Shindo.tests do
before do
@old_home = ENV['HOME']
@old_rc = ENV['FOG_RC']
Fog.instance_variable_set('@credential_path', nil) # kill memoization
end
after do
ENV['HOME'] = @old_home
ENV['FOG_RC'] = @ld_rc
end
tests('credentials_path') do
returns('/rc/path', 'FOG_RC takes precedence over HOME') {
ENV['HOME'] = '/home/path'
ENV['FOG_RC'] = '/rc/path'
}
returns('/expanded/path', 'properly expands paths') {
ENV['FOG_RC'] = '/expanded/subdirectory/../path'
Fog.credentials_path
}
returns('/home/me/.fog', 'falls back to home path if FOG_RC not set') {
ENV['HOME'] = '/home/me'
ENV.delete('FOG_RC')
Fog.credentials_path
}
returns(nil, 'returns nil when neither FOG_RC or HOME are set') {
ENV.delete('HOME')
ENV.delete('FOG_RC')
Fog.credentials_path
}
end
end