Class: Fog::AWS::CDN::Mock

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/fog/cdn/aws.rb', line 35

def initialize(options={})
  unless options.delete(:provider)
    location = caller.first
    warning = "[yellow][WARN] Fog::AWS::CDN.new is deprecated, use Fog::CDN.new(:provider => 'AWS') instead[/]"
    warning << " [light_black](" << location << ")[/] "
    Formatador.display_line(warning)
  end

  require 'mime/types'
  @aws_access_key_id  = options[:aws_access_key_id]
  @region             = options[:region]
end

Class Method Details

.dataObject



21
22
23
24
25
26
27
28
29
# File 'lib/fog/cdn/aws.rb', line 21

def self.data
  @data ||= Hash.new do |hash, region|
    hash[region] = Hash.new do |region_hash, key|
      region_hash[key] = {
        :buckets => {}
      }
    end
  end
end

.resetObject



31
32
33
# File 'lib/fog/cdn/aws.rb', line 31

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



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

def data
  self.class.data[@region][@aws_access_key_id]
end

#reset_dataObject



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

def reset_data
  self.class.data[@region].delete(@aws_access_key_id)
end

#signature(params) ⇒ Object



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

def signature(params)
  "foo"
end