Class: Fog::AWS::Mock

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

Class Method Summary collapse

Class Method Details

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



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

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

.availability_zone(region) ⇒ Object



82
83
84
# File 'lib/fog/aws.rb', line 82

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

.box_usageObject



86
87
88
# File 'lib/fog/aws.rb', line 86

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

.console_outputObject



90
91
92
93
# File 'lib/fog/aws.rb', line 90

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) ⇒ Object



95
96
97
# File 'lib/fog/aws.rb', line 95

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

.etagObject



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

def self.etag
  Fog::Mock.random_hex(32)
end

.imageObject



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/fog/aws.rb', line 107

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



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

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

.instance_idObject



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

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

.ip_addressObject



145
146
147
148
149
150
151
# File 'lib/fog/aws.rb', line 145

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_idObject



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

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

.key_fingerprintObject



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

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

.key_materialObject



157
158
159
# File 'lib/fog/aws.rb', line 157

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

.owner_idObject



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

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

.private_dns_name_for(ip_address) ⇒ Object



99
100
101
# File 'lib/fog/aws.rb', line 99

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

.ramdisk_idObject



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

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

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



169
170
171
172
173
174
175
176
177
# File 'lib/fog/aws.rb', line 169

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



185
186
187
# File 'lib/fog/aws.rb', line 185

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

.snapshot_idObject



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

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

.volume_idObject



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

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