Class: Fog::AWS::Mock
- Inherits:
-
Object
- Object
- Fog::AWS::Mock
- Defined in:
- lib/fog/aws.rb
Class Method Summary collapse
- .arn(vendor, account_id, path, region = nil) ⇒ Object
- .availability_zone(region) ⇒ Object
- .box_usage ⇒ Object
- .change_id ⇒ Object
- .console_output ⇒ Object
- .dhcp_options_id ⇒ Object
- .dns_name_for(ip_address) ⇒ Object
- .image ⇒ Object
- .image_id ⇒ Object
- .instance_id ⇒ Object
- .internet_gateway_id ⇒ Object
- .ip_address ⇒ Object
- .kernel_id ⇒ Object
- .key_fingerprint ⇒ Object
- .key_id(length = 21) ⇒ Object
- .key_material ⇒ Object
- .nameservers ⇒ Object
- .network_interface_id ⇒ Object
- .owner_id ⇒ Object
- .private_dns_name_for(ip_address) ⇒ Object
- .private_ip_address ⇒ Object
- .ramdisk_id ⇒ Object
- .rds_address(db_name, region) ⇒ Object
- .request_id ⇒ Object (also: reserved_instances_id, reserved_instances_offering_id, sqs_message_id, sqs_sender_id)
- .reservation_id ⇒ Object
- .security_group_id ⇒ Object
- .snapshot_id ⇒ Object
- .subnet_id ⇒ Object
- .volume_id ⇒ Object
- .vpc_id ⇒ Object
- .zone_id ⇒ Object
Class Method Details
.arn(vendor, account_id, path, region = nil) ⇒ Object
120 121 122 |
# File 'lib/fog/aws.rb', line 120 def self.arn(vendor, account_id, path, region = nil) "arn:aws:#{vendor}:#{region}:#{account_id}:#{path}" end |
.availability_zone(region) ⇒ Object
124 125 126 |
# File 'lib/fog/aws.rb', line 124 def self.availability_zone(region) "#{region}#{Fog::Mock.random_selection('abcd', 1)}" end |
.box_usage ⇒ Object
128 129 130 |
# File 'lib/fog/aws.rb', line 128 def self.box_usage sprintf("%0.10f", rand / 100).to_f end |
.change_id ⇒ Object
261 262 263 |
# File 'lib/fog/aws.rb', line 261 def self.change_id "change-#{Fog::Mock.random_hex(8)}" end |
.console_output ⇒ Object
132 133 134 135 |
# File 'lib/fog/aws.rb', line 132 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_id ⇒ Object
249 250 251 |
# File 'lib/fog/aws.rb', line 249 def self. "dopt-#{Fog::Mock.random_hex(8)}" end |
.dns_name_for(ip_address) ⇒ Object
137 138 139 |
# File 'lib/fog/aws.rb', line 137 def self.dns_name_for(ip_address) "ec2-#{ip_address.gsub('.','-')}.compute-1.amazonaws.com" end |
.image ⇒ Object
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/fog/aws.rb', line 145 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 ⇒ Object
167 168 169 |
# File 'lib/fog/aws.rb', line 167 def self.image_id "ami-#{Fog::Mock.random_hex(8)}" end |
.instance_id ⇒ Object
179 180 181 |
# File 'lib/fog/aws.rb', line 179 def self.instance_id "i-#{Fog::Mock.random_hex(8)}" end |
.internet_gateway_id ⇒ Object
246 247 248 |
# File 'lib/fog/aws.rb', line 246 def self.internet_gateway_id "igw-#{Fog::Mock.random_hex(8)}" end |
.ip_address ⇒ Object
183 184 185 186 187 188 189 |
# File 'lib/fog/aws.rb', line 183 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 ⇒ Object
195 196 197 |
# File 'lib/fog/aws.rb', line 195 def self.kernel_id "aki-#{Fog::Mock.random_hex(8)}" end |
.key_fingerprint ⇒ Object
171 172 173 174 175 176 177 |
# File 'lib/fog/aws.rb', line 171 def self.key_fingerprint fingerprint = [] 20.times do fingerprint << Fog::Mock.random_hex(2) end fingerprint.join(':') end |
.key_id(length = 21) ⇒ Object
273 274 275 276 |
# File 'lib/fog/aws.rb', line 273 def self.key_id(length=21) #Probably close enough Fog::Mock.random_selection('ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789',length) end |
.key_material ⇒ Object
199 200 201 |
# File 'lib/fog/aws.rb', line 199 def self.key_material OpenSSL::PKey::RSA.generate(1024).to_s end |
.nameservers ⇒ Object
264 265 266 267 268 269 270 271 |
# File 'lib/fog/aws.rb', line 264 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_interface_id ⇒ Object
243 244 245 |
# File 'lib/fog/aws.rb', line 243 def self.network_interface_id "eni-#{Fog::Mock.random_hex(8)}" end |
.owner_id ⇒ Object
203 204 205 |
# File 'lib/fog/aws.rb', line 203 def self.owner_id Fog::Mock.random_numbers(12) end |
.private_dns_name_for(ip_address) ⇒ Object
141 142 143 |
# File 'lib/fog/aws.rb', line 141 def self.private_dns_name_for(ip_address) "ip-#{ip_address.gsub('.','-')}.ec2.internal" end |
.private_ip_address ⇒ Object
191 192 193 |
# File 'lib/fog/aws.rb', line 191 def self.private_ip_address ip_address.gsub(/^\d{1,3}\./,"10.") end |
.ramdisk_id ⇒ Object
207 208 209 |
# File 'lib/fog/aws.rb', line 207 def self.ramdisk_id "ari-#{Fog::Mock.random_hex(8)}" end |
.rds_address(db_name, region) ⇒ Object
278 279 280 |
# File 'lib/fog/aws.rb', line 278 def self.rds_address(db_name,region) "#{db_name}.#{Fog::Mock.random_letters(rand(12) + 4)}.#{region}.rds.amazonaws.com" end |
.request_id ⇒ Object Also known as: reserved_instances_id, reserved_instances_offering_id, sqs_message_id, sqs_sender_id
211 212 213 214 215 216 217 218 219 |
# File 'lib/fog/aws.rb', line 211 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 ⇒ Object
227 228 229 |
# File 'lib/fog/aws.rb', line 227 def self.reservation_id "r-#{Fog::Mock.random_hex(8)}" end |
.security_group_id ⇒ Object
239 240 241 |
# File 'lib/fog/aws.rb', line 239 def self.security_group_id "sg-#{Fog::Mock.random_hex(8)}" end |
.snapshot_id ⇒ Object
231 232 233 |
# File 'lib/fog/aws.rb', line 231 def self.snapshot_id "snap-#{Fog::Mock.random_hex(8)}" end |
.subnet_id ⇒ Object
255 256 257 |
# File 'lib/fog/aws.rb', line 255 def self.subnet_id "subnet-#{Fog::Mock.random_hex(8)}" end |
.volume_id ⇒ Object
235 236 237 |
# File 'lib/fog/aws.rb', line 235 def self.volume_id "vol-#{Fog::Mock.random_hex(8)}" end |
.vpc_id ⇒ Object
252 253 254 |
# File 'lib/fog/aws.rb', line 252 def self.vpc_id "vpc-#{Fog::Mock.random_hex(8)}" end |
.zone_id ⇒ Object
258 259 260 |
# File 'lib/fog/aws.rb', line 258 def self.zone_id "zone-#{Fog::Mock.random_hex(8)}" end |