In Files

Parent

Files

Class/Module Index [+]

Quicksearch

Fog::AWS::Mock

Public Class Methods

arn(vendor, account_id, path, region = nil) click to toggle source
# File lib/fog/aws.rb, line 108
def self.arn(vendor, account_id, path, region = nil)
  "arn:aws:#{vendor}:#{region}:#{account_id}:#{path}"
end
availability_zone(region) click to toggle source
# File lib/fog/aws.rb, line 112
def self.availability_zone(region)
  "#{region}#{Fog::Mock.random_selection('abcd', 1)}"
end
box_usage() click to toggle source
# File lib/fog/aws.rb, line 116
def self.box_usage
  sprintf("%0.10f", rand / 100).to_f
end
console_output() click to toggle source
# File lib/fog/aws.rb, line 120
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
dns_name_for(ip_address) click to toggle source
# File lib/fog/aws.rb, line 125
def self.dns_name_for(ip_address)
  "ec2-#{ip_address.gsub('.','-')}.compute-1.amazonaws.com"
end
etag() click to toggle source
# File lib/fog/aws.rb, line 133
def self.etag
  Fog::Mock.random_hex(32)
end
image() click to toggle source
# File lib/fog/aws.rb, line 137
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_id() click to toggle source
# File lib/fog/aws.rb, line 159
def self.image_id
  "ami-#{Fog::Mock.random_hex(8)}"
end
instance_id() click to toggle source
# File lib/fog/aws.rb, line 171
def self.instance_id
  "i-#{Fog::Mock.random_hex(8)}"
end
ip_address() click to toggle source
# File lib/fog/aws.rb, line 175
def self.ip_address
  ip = []
  4.times do
    ip << Fog::Mock.random_numbers(rand(3) + 1).to_i.to_s # remove leading 0
  end
  ip.join('.')
end
kernel_id() click to toggle source
# File lib/fog/aws.rb, line 183
def self.kernel_id
  "aki-#{Fog::Mock.random_hex(8)}"
end
key_fingerprint() click to toggle source
# File lib/fog/aws.rb, line 163
def self.key_fingerprint
  fingerprint = []
  20.times do
    fingerprint << Fog::Mock.random_hex(2)
  end
  fingerprint.join(':')
end
key_material() click to toggle source
# File lib/fog/aws.rb, line 187
def self.key_material
  OpenSSL::PKey::RSA.generate(1024).to_s
end
owner_id() click to toggle source
# File lib/fog/aws.rb, line 191
def self.owner_id
  Fog::Mock.random_numbers(12)
end
private_dns_name_for(ip_address) click to toggle source
# File lib/fog/aws.rb, line 129
def self.private_dns_name_for(ip_address)
  "ip-#{ip_address.gsub('.','-')}.ec2.internal"
end
ramdisk_id() click to toggle source
# File lib/fog/aws.rb, line 195
def self.ramdisk_id
  "ari-#{Fog::Mock.random_hex(8)}"
end
rds_address(db_name,region) click to toggle source
# File lib/fog/aws.rb, line 227
def self.rds_address(db_name,region)
  "#{db_name}.#{Fog::Mock.random_letters(rand(12) + 4)}.#{region}.rds.amazonaws.com"
end
request_id() click to toggle source
# File lib/fog/aws.rb, line 199
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_id() click to toggle source
# File lib/fog/aws.rb, line 215
def self.reservation_id
  "r-#{Fog::Mock.random_hex(8)}"
end
reserved_instances_id() click to toggle source
Alias for: request_id
reserved_instances_offering_id() click to toggle source
Alias for: request_id
snapshot_id() click to toggle source
# File lib/fog/aws.rb, line 219
def self.snapshot_id
  "snap-#{Fog::Mock.random_hex(8)}"
end
sqs_message_id() click to toggle source
Alias for: request_id
sqs_sender_id() click to toggle source
Alias for: request_id
volume_id() click to toggle source
# File lib/fog/aws.rb, line 223
def self.volume_id
  "vol-#{Fog::Mock.random_hex(8)}"
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.