Class: Fog::AWS::Mock

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

Class Method Summary collapse

Class Method Details

.availability_zoneObject



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

def self.availability_zone
  "us-east-1" << random_selection('abcd', 1)
end

.box_usageObject



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

def self.box_usage
  sprintf("%0.10f", rand / 100).to_f
end

.dns_name_for(ip_address) ⇒ Object



70
71
72
# File 'lib/fog/aws.rb', line 70

def self.dns_name_for(ip_address)
  "ec2-#{ip_address.gsub('.','-')}.compute-1.amazonaws.com"
end

.etagObject



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

def self.etag
  hex(32)
end

.imageObject



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/fog/aws.rb', line 82

def self.image
  path = []
  (rand(3) + 2).times do
    path << letters(rand(9) + 8)
  end
  {
    "imageOwnerId"   => letters(rand(5) + 4),
    "blockDeviceMapping" => [],
    "productCodes"   => [],
    "kernelId"       => kernel_id,
    "ramdiskId"      => ramdisk_id,
    "imageState"     => "available",
    "imageId"        => image_id,
    "architecture"   => "i386",
    "isPublic"       => true,
    "imageLocation"  => path.join('/'),
    "imageType"      => "machine",
    "rootDeviceType" => ["ebs","instance-store"][rand(2)],
    "rootDeviceName" => "/dev/sda1"
  }
end

.image_idObject



104
105
106
# File 'lib/fog/aws.rb', line 104

def self.image_id
  "ami-#{hex(8)}"
end

.instance_idObject



116
117
118
# File 'lib/fog/aws.rb', line 116

def self.instance_id
  "i-#{hex(8)}"
end

.ip_addressObject



120
121
122
123
124
125
126
# File 'lib/fog/aws.rb', line 120

def self.ip_address
  ip = []
  4.times do
    ip << numbers(rand(3) + 1).to_i.to_s # remove leading 0
  end
  ip.join('.')
end

.kernel_idObject



128
129
130
# File 'lib/fog/aws.rb', line 128

def self.kernel_id
  "aki-#{hex(8)}"
end

.key_fingerprintObject



108
109
110
111
112
113
114
# File 'lib/fog/aws.rb', line 108

def self.key_fingerprint
  fingerprint = []
  20.times do
    fingerprint << hex(2)
  end
  fingerprint.join(':')
end

.key_materialObject



132
133
134
135
136
137
138
139
140
# File 'lib/fog/aws.rb', line 132

def self.key_material
  key_material = ['-----BEGIN RSA PRIVATE KEY-----']
  20.times do
    key_material << base64(76)
  end
  key_material << base64(67) + '='
  key_material << '-----END RSA PRIVATE KEY-----'
  key_material.join("\n")
end

.owner_idObject



142
143
144
# File 'lib/fog/aws.rb', line 142

def self.owner_id
  numbers(12)
end

.private_dns_name_for(ip_address) ⇒ Object



74
75
76
# File 'lib/fog/aws.rb', line 74

def self.private_dns_name_for(ip_address)
  "ip-#{ip_address.gsub('.','-')}.ec2.internal"
end

.ramdisk_idObject



146
147
148
# File 'lib/fog/aws.rb', line 146

def self.ramdisk_id
  "ari-#{hex(8)}"
end

.request_idObject



150
151
152
153
154
155
156
157
158
# File 'lib/fog/aws.rb', line 150

def self.request_id
  request_id = []
  request_id << hex(8)
  3.times do
    request_id << hex(4)
  end
  request_id << hex(12)
  request_id.join('-')
end

.reservation_idObject



160
161
162
# File 'lib/fog/aws.rb', line 160

def self.reservation_id
  "r-#{hex(8)}"
end

.snapshot_idObject



164
165
166
# File 'lib/fog/aws.rb', line 164

def self.snapshot_id
  "snap-#{hex(8)}"
end

.volume_idObject



168
169
170
# File 'lib/fog/aws.rb', line 168

def self.volume_id
  "vol-#{hex(8)}"
end