Class: Fog::AWS::Mock

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

Class Method Summary collapse

Class Method Details

.arn(vendor, account_id, path, region = nil) ⇒ Object



131
132
133
# File 'lib/fog/aws/core.rb', line 131

def self.arn(vendor, , path, region = nil)
  "arn:aws:#{vendor}:#{region}:#{}:#{path}"
end

.availability_zone(region) ⇒ Object



135
136
137
# File 'lib/fog/aws/core.rb', line 135

def self.availability_zone(region)
  "#{region}#{Fog::Mock.random_selection('abcd', 1)}"
end

.box_usageObject



139
140
141
# File 'lib/fog/aws/core.rb', line 139

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

.change_idObject



274
275
276
# File 'lib/fog/aws/core.rb', line 274

def self.change_id
  Fog::Mock.random_letters_and_numbers(14)
end

.console_outputObject



143
144
145
146
# File 'lib/fog/aws/core.rb', line 143

def self.console_output
  # "[ 0.000000] Linux version 2.6.18-xenU-ec2-v1.2 (root@domU-12-31-39-07-51-82) (gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)) #2 SMP Wed Aug 19 09:04:38 EDT 2009"
  Base64.decode64("WyAwLjAwMDAwMF0gTGludXggdmVyc2lvbiAyLjYuMTgteGVuVS1lYzItdjEu\nMiAocm9vdEBkb21VLTEyLTMxLTM5LTA3LTUxLTgyKSAoZ2NjIHZlcnNpb24g\nNC4xLjIgMjAwNzA2MjYgKFJlZCBIYXQgNC4xLjItMTMpKSAjMiBTTVAgV2Vk\nIEF1ZyAxOSAwOTowNDozOCBFRFQgMjAwOQ==\n")
end

.dhcp_options_idObject



262
263
264
# File 'lib/fog/aws/core.rb', line 262

def self.dhcp_options_id
  "dopt-#{Fog::Mock.random_hex(8)}"
end

.dns_name_for(ip_address) ⇒ Object



148
149
150
# File 'lib/fog/aws/core.rb', line 148

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

.imageObject



156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# File 'lib/fog/aws/core.rb', line 156

def self.image
  path = []
  (rand(3) + 2).times do
    path << Fog::Mock.random_letters(rand(9) + 8)
  end
  {
    "imageOwnerId"   => Fog::Mock.random_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



178
179
180
# File 'lib/fog/aws/core.rb', line 178

def self.image_id
  "ami-#{Fog::Mock.random_hex(8)}"
end

.instance_idObject



190
191
192
# File 'lib/fog/aws/core.rb', line 190

def self.instance_id
  "i-#{Fog::Mock.random_hex(8)}"
end

.internet_gateway_idObject



259
260
261
# File 'lib/fog/aws/core.rb', line 259

def self.internet_gateway_id
  "igw-#{Fog::Mock.random_hex(8)}"
end

.ip_addressObject



194
195
196
# File 'lib/fog/aws/core.rb', line 194

def self.ip_address
  Fog::Mock.random_ip
end

.kernel_idObject



202
203
204
# File 'lib/fog/aws/core.rb', line 202

def self.kernel_id
  "aki-#{Fog::Mock.random_hex(8)}"
end

.key_fingerprintObject



182
183
184
185
186
187
188
# File 'lib/fog/aws/core.rb', line 182

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

.key_id(length = 21) ⇒ Object



286
287
288
289
# File 'lib/fog/aws/core.rb', line 286

def self.key_id(length=21)
  #Probably close enough
  Fog::Mock.random_selection('ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789',length)
end

.key_materialObject



206
207
208
# File 'lib/fog/aws/core.rb', line 206

def self.key_material
  OpenSSL::PKey::RSA.generate(1024).to_s
end

.nameserversObject



277
278
279
280
281
282
283
284
# File 'lib/fog/aws/core.rb', line 277

def self.nameservers
  [
    'ns-2048.awsdns-64.com',
    'ns-2049.awsdns-65.net',
    'ns-2050.awsdns-66.org',
    'ns-2051.awsdns-67.co.uk'
  ]
end

.network_acl_association_idObject



253
254
255
# File 'lib/fog/aws/core.rb', line 253

def self.network_acl_association_id
  "aclassoc-#{Fog::Mock.random_hex(8)}"
end

.network_acl_idObject



250
251
252
# File 'lib/fog/aws/core.rb', line 250

def self.network_acl_id
  "acl-#{Fog::Mock.random_hex(8)}"
end

.network_interface_idObject



256
257
258
# File 'lib/fog/aws/core.rb', line 256

def self.network_interface_id
  "eni-#{Fog::Mock.random_hex(8)}"
end

.owner_idObject



210
211
212
# File 'lib/fog/aws/core.rb', line 210

def self.owner_id
  Fog::Mock.random_numbers(12)
end

.private_dns_name_for(ip_address) ⇒ Object



152
153
154
# File 'lib/fog/aws/core.rb', line 152

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

.private_ip_addressObject



198
199
200
# File 'lib/fog/aws/core.rb', line 198

def self.private_ip_address
  ip_address.gsub(/^\d{1,3}\./,"10.")
end

.ramdisk_idObject



214
215
216
# File 'lib/fog/aws/core.rb', line 214

def self.ramdisk_id
  "ari-#{Fog::Mock.random_hex(8)}"
end

.rds_address(db_name, region) ⇒ Object



291
292
293
# File 'lib/fog/aws/core.rb', line 291

def self.rds_address(db_name,region)
  "#{db_name}.#{Fog::Mock.random_letters(rand(12) + 4)}.#{region}.rds.amazonaws.com"
end

.request_idObject Also known as: reserved_instances_id, reserved_instances_offering_id, sqs_message_id, sqs_sender_id



218
219
220
221
222
223
224
225
226
# File 'lib/fog/aws/core.rb', line 218

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

.reservation_idObject



234
235
236
# File 'lib/fog/aws/core.rb', line 234

def self.reservation_id
  "r-#{Fog::Mock.random_hex(8)}"
end

.security_group_idObject



246
247
248
# File 'lib/fog/aws/core.rb', line 246

def self.security_group_id
  "sg-#{Fog::Mock.random_hex(8)}"
end

.snapshot_idObject



238
239
240
# File 'lib/fog/aws/core.rb', line 238

def self.snapshot_id
  "snap-#{Fog::Mock.random_hex(8)}"
end

.subnet_idObject



268
269
270
# File 'lib/fog/aws/core.rb', line 268

def self.subnet_id
  "subnet-#{Fog::Mock.random_hex(8)}"
end

.volume_idObject



242
243
244
# File 'lib/fog/aws/core.rb', line 242

def self.volume_id
  "vol-#{Fog::Mock.random_hex(8)}"
end

.vpc_idObject



265
266
267
# File 'lib/fog/aws/core.rb', line 265

def self.vpc_id
  "vpc-#{Fog::Mock.random_hex(8)}"
end

.zone_idObject



271
272
273
# File 'lib/fog/aws/core.rb', line 271

def self.zone_id
  "zone-#{Fog::Mock.random_hex(8)}"
end