Class: Fog::AWS::Mock

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

Class Method Summary collapse

Class Method Details

.availability_zoneObject



49
50
51
# File 'lib/fog/aws.rb', line 49

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

.box_usageObject



53
54
55
# File 'lib/fog/aws.rb', line 53

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

.dns_name_for(ip_address) ⇒ Object



57
58
59
# File 'lib/fog/aws.rb', line 57

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

.etagObject



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

def self.etag
  hex(32)
end

.imageObject



69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/fog/aws.rb', line 69

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



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

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

.instance_idObject



107
108
109
# File 'lib/fog/aws.rb', line 107

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

.ip_addressObject



111
112
113
114
115
116
117
# File 'lib/fog/aws.rb', line 111

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



119
120
121
# File 'lib/fog/aws.rb', line 119

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

.key_fingerprintObject



95
96
97
98
99
100
101
# File 'lib/fog/aws.rb', line 95

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

.key_materialObject



123
124
125
126
127
128
129
130
131
# File 'lib/fog/aws.rb', line 123

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



133
134
135
# File 'lib/fog/aws.rb', line 133

def self.owner_id
  numbers(12)
end

.private_dns_name_for(ip_address) ⇒ Object



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

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

.ramdisk_idObject



137
138
139
# File 'lib/fog/aws.rb', line 137

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

.request_idObject



141
142
143
144
145
146
147
148
149
# File 'lib/fog/aws.rb', line 141

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



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

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

.snapshot_idObject



155
156
157
# File 'lib/fog/aws.rb', line 155

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

.volume_idObject



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

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