Class: Fog::Storage::OpenStack::Mock

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/storage/openstack.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



58
59
60
61
62
# File 'lib/fog/storage/openstack.rb', line 58

def initialize(options = {})
  @openstack_api_key = options[:openstack_api_key]
  @openstack_username = options[:openstack_username]
  @path = '/v1/AUTH_1234'
end

Class Method Details

.dataObject



48
49
50
51
52
# File 'lib/fog/storage/openstack.rb', line 48

def self.data
  @data ||= Hash.new do |hash, key|
    hash[key] = {}
  end
end

.resetObject



54
55
56
# File 'lib/fog/storage/openstack.rb', line 54

def self.reset
  @data = nil
end

Instance Method Details

#change_account(account) ⇒ Object



72
73
74
75
76
# File 'lib/fog/storage/openstack.rb', line 72

def ()
  @original_path ||= @path
  version_string = @original_path.split('/')[1]
  @path = "/#{version_string}/#{}"
end

#dataObject



64
65
66
# File 'lib/fog/storage/openstack.rb', line 64

def data
  self.class.data[@openstack_username]
end

#reset_account_nameObject



78
79
80
# File 'lib/fog/storage/openstack.rb', line 78

def 
  @path = @original_path
end

#reset_dataObject



68
69
70
# File 'lib/fog/storage/openstack.rb', line 68

def reset_data
  self.class.data.delete(@openstack_username)
end