Class: Fog::Compute::Voxel::Mock

Inherits:
Object
  • Object
show all
Includes:
Collections
Defined in:
lib/fog/voxel/compute.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



56
57
58
# File 'lib/fog/voxel/compute.rb', line 56

def initialize(options={})
  @voxel_api_key = options[:voxel_api_key]
end

Class Method Details

.dataObject



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/fog/voxel/compute.rb', line 26

def self.data
  @data ||= Hash.new do |hash, key|
    hash[key] = {
      :last_modified => { :servers => {}, :statuses => {}, :images => {} },
      :servers => [],
      :statuses => {},
      :images  => [
        {'id' => 1,   'name' => "CentOS 4, 32-bit, base install"},
        {'id' => 2,   'name' => "CentOS 4, 64-bit, base install"},
        {'id' => 3,   'name' => "CentOS 5, 32-bit, base install"},
        {'id' => 4,   'name' => "CentOS 5, 64-bit, base install"},
        {'id' => 7,   'name' => "Fedora 10, 32-bit, base install"},
        {'id' => 8,   'name' => "Fedora 10, 64-bit, base install"},
        {'id' => 10,  'name' => "OpenSUSE 11, 64-bit, base install"},
        {'id' => 11,  'name' => "Debian 5.0 \"lenny\", 32-bit, base install"},
        {'id' => 12,  'name' => "Debian 5.0 \"lenny\", 64-bit, base install"},
        {'id' => 13,  'name' => "Ubuntu 8.04 \"Hardy\", 32-bit, base install"},
        {'id' => 14,  'name' => "Ubuntu 8.04 \"Hardy\", 64-bit, base install"},
        {'id' => 15,  'name' => "Voxel Server Environment (VSE), 32-bit, base install"},
        {'id' => 16,  'name' => "Voxel Server Environment (VSE), 64-bit, base install"},
        {'id' => 32,  'name' => "Pantheon Official Mercury Stack for Drupal (based on VSE/64)"},
        {'id' => 55,  'name' => "Ubuntu 10.04 \"Lucid\", 64-bit, base install"} ]
    }
  end
end

.resetObject



52
53
54
# File 'lib/fog/voxel/compute.rb', line 52

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



60
61
62
# File 'lib/fog/voxel/compute.rb', line 60

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

#reset_dataObject



64
65
66
# File 'lib/fog/voxel/compute.rb', line 64

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