Class: Fog::AWS::STS::Mock
- Inherits:
-
Object
- Object
- Fog::AWS::STS::Mock
- Defined in:
- lib/fog/aws/sts.rb,
lib/fog/aws/requests/sts/get_federation_token.rb
Class Method Summary collapse
Instance Method Summary collapse
- #data ⇒ Object
- #get_federation_token(name, policy, duration = 43200) ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #reset_data ⇒ Object
- #setup_credentials(options) ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
37 38 39 40 |
# File 'lib/fog/aws/sts.rb', line 37 def initialize(={}) @use_iam_profile = [:use_iam_profile] setup_credentials() end |
Class Method Details
.data ⇒ Object
20 21 22 23 24 25 26 27 |
# File 'lib/fog/aws/sts.rb', line 20 def self.data @data ||= Hash.new do |hash, key| hash[key] = { :owner_id => Fog::AWS::Mock.owner_id, :server_certificates => {} } end end |
.reset ⇒ Object
29 30 31 |
# File 'lib/fog/aws/sts.rb', line 29 def self.reset @data = nil end |
.server_certificate_id ⇒ Object
33 34 35 |
# File 'lib/fog/aws/sts.rb', line 33 def self.server_certificate_id Fog::Mock.random_hex(16) end |
Instance Method Details
#data ⇒ Object
42 43 44 |
# File 'lib/fog/aws/sts.rb', line 42 def data self.class.data[@aws_access_key_id] end |
#get_federation_token(name, policy, duration = 43200) ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/fog/aws/requests/sts/get_federation_token.rb', line 44 def get_federation_token(name, policy, duration=43200) Excon::Response.new.tap do |response| response.status = 200 response.body = { 'SessionToken' => Fog::Mock.random_base64(580), 'SecretAccessKey' => Fog::Mock.random_base64(40), 'Expiration' => (DateTime.now + duration).strftime('%FT%TZ'), 'AccessKeyId' => Fog::AWS::Mock.key_id(20), 'Arn' => "arn:aws:sts::#{Fog::AWS::Mock.owner_id}:federated-user/#{name}", 'FederatedUserId' => "#{Fog::AWS::Mock.owner_id}:#{name}", 'PackedPolicySize' => Fog::Mock.random_numbers(2), 'RequestId' => Fog::AWS::Mock.request_id } end end |
#reset_data ⇒ Object
46 47 48 |
# File 'lib/fog/aws/sts.rb', line 46 def reset_data self.class.data.delete(@aws_access_key_id) end |
#setup_credentials(options) ⇒ Object
50 51 52 |
# File 'lib/fog/aws/sts.rb', line 50 def setup_credentials() @aws_access_key_id = [:aws_access_key_id] end |