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.



58
59
60
# File 'lib/fog/voxel/compute.rb', line 58

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

Class Method Details

.dataObject



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

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



54
55
56
# File 'lib/fog/voxel/compute.rb', line 54

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



62
63
64
# File 'lib/fog/voxel/compute.rb', line 62

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

#reset_dataObject



66
67
68
# File 'lib/fog/voxel/compute.rb', line 66

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