Class: Fog::DNS::OpenStack::V2::Mock

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/dns/openstack/v2.rb,
lib/fog/dns/openstack/v2/requests/get_zone.rb,
lib/fog/dns/openstack/v2/requests/get_quota.rb,
lib/fog/dns/openstack/v2/requests/list_zones.rb,
lib/fog/dns/openstack/v2/requests/create_zone.rb,
lib/fog/dns/openstack/v2/requests/delete_zone.rb,
lib/fog/dns/openstack/v2/requests/update_zone.rb,
lib/fog/dns/openstack/v2/requests/update_quota.rb,
lib/fog/dns/openstack/v2/requests/get_recordset.rb,
lib/fog/dns/openstack/v2/requests/list_recordsets.rb,
lib/fog/dns/openstack/v2/requests/create_recordset.rb,
lib/fog/dns/openstack/v2/requests/delete_recordset.rb,
lib/fog/dns/openstack/v2/requests/update_recordset.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# File 'lib/fog/dns/openstack/v2.rb', line 108

def initialize(options = {})
  @openstack_username = options[:openstack_username]
  @openstack_tenant   = options[:openstack_tenant]
  @openstack_auth_uri = URI.parse(options[:openstack_auth_url])

  @auth_token = Fog::Mock.random_base64(64)
  @auth_token_expiration = (Time.now.utc + 86400).iso8601

  management_url = URI.parse(options[:openstack_auth_url])
  management_url.port = 9001
  management_url.path = '/v2'
  @openstack_management_url = management_url.to_s

  @data ||= {:users => {}}
  unless @data[:users].detect { |u| u['name'] == options[:openstack_username] }
    id = Fog::Mock.random_numbers(6).to_s
    @data[:users][id] = {
      'id'       => id,
      'name'     => options[:openstack_username],
      'email'    => "#{options[:openstack_username]}@mock.com",
      'tenantId' => Fog::Mock.random_numbers(6).to_s,
      'enabled'  => true
    }
  end
end

Class Method Details

.dataObject



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/fog/dns/openstack/v2.rb', line 39

def self.data
  @data ||= Hash.new do |hash, key|
    hash[key] = {
      :zones      => [{
        "id"             => "a86dba58-0043-4cc6-a1bb-69d5e86f3ca3",
        "pool_id"        => "572ba08c-d929-4c70-8e42-03824bb24ca2",
        "project_id"     => "4335d1f0-f793-11e2-b778-0800200c9a66",
        "name"           => "example.org.",
        "email"          => "[email protected]",
        "ttl"            => 7200,
        "serial"         => 1_404_757_531,
        "status"         => "ACTIVE",
        "action"         => "NONE",
        "description"    => "This is an example zone.",
        "masters"        => [],
        "type"           => "PRIMARY",
        "transferred_at" => '',
        "version"        => 1,
        "created_at"     => "2014-07-07T18:25:31.275934",
        "updated_at"     => '',
        "links"          => {
          "self" => "https://127.0.0.1:9001/v2/zones/a86dba58-0043-4cc6-a1bb-69d5e86f3ca3"
        }
      }],
      :quota      => {
        "api_export_size"   => 1000,
        "recordset_records" => 20,
        "zone_records"      => 500,
        "zone_recordsets"   => 500,
        "zones"             => 100
      },
      :recordsets => {
        "recordsets" => [{
          "description" => "This is an example record set.",
          "links"       => {
            "self" => "https://127.0.0.1:9001/v2/zones/2150b1bf-dee2-4221-9d85-11f7886fb15f/recordsets/f7b10e9b-0cae-4a91-b162-562bc6096648"
          },
          "updated_at"  => '',
          "records"     => [
            "10.1.0.2"
          ],
          "ttl"         => 3600,
          "id"          => "f7b10e9b-0cae-4a91-b162-562bc6096648",
          "name"        => "example.org.",
          "project_id"  => "4335d1f0-f793-11e2-b778-0800200c9a66",
          "zone_id"     => "2150b1bf-dee2-4221-9d85-11f7886fb15f",
          "zone_name"   => "example.com.",
          "created_at"  => "2014-10-24T19:59:44.000000",
          "version"     => 1,
          "type"        => "A",
          "status"      => "ACTIVE",
          "action"      => "NONE"
        }],
        "links"      => {
          "self" => "http://127.0.0.1:9001/v2/recordsets?limit=1",
          "next" => "http://127.0.0.1:9001/v2/recordsets?limit=1&marker=45fd892d-7a67-4f65-9df0-87273f228d6c"
        },
        "metadata"   => {
          "total_count" => 2
        }
      }
    }
  end
end

.resetObject



104
105
106
# File 'lib/fog/dns/openstack/v2.rb', line 104

def self.reset
  @data = nil
end

Instance Method Details

#create_recordset(zone_id, name, type, records, options = {}) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/fog/dns/openstack/v2/requests/create_recordset.rb', line 29

def create_recordset(zone_id, name, type, records, options = {})
  # stringify keys
  options = Hash[options.map { |k, v| [k.to_s, v] }]

  response = Excon::Response.new
  response.status = 202

  recordset = data[:recordsets]["recordsets"].first.dup
  recordset_id = recordset["id"]

  recordset["zone_id"]       = zone_id
  recordset["name"]          = name
  recordset["type"]          = type
  recordset["records"]       = records
  recordset["status"]        = "PENDING"
  recordset["action"]        = "CREATE"
  recordset["links"]["self"] = "https://127.0.0.1:9001/v2/zones/#{zone_id}/recordsets/#{recordset_id}"

  response.body = recordset.merge(options)
  response
end

#create_zone(name, email, options = {}) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/fog/dns/openstack/v2/requests/create_zone.rb', line 28

def create_zone(name, email, options = {})
  # stringify keys
  options = Hash[options.map { |k, v| [k.to_s, v] }]

  response = Excon::Response.new
  response.status = 202

  zone = data[:zones].first.dup

  zone["name"]          = name
  zone["email"]         = email
  zone["status"]        = "PENDING"
  zone["action"]        = "CREATE"

  response.body = zone.merge(options)
  response
end

#credentialsObject



142
143
144
145
146
147
148
# File 'lib/fog/dns/openstack/v2.rb', line 142

def credentials
  {:provider                 => 'openstack',
   :openstack_auth_url       => @openstack_auth_uri.to_s,
   :openstack_auth_token     => @auth_token,
   :openstack_region         => @openstack_region,
   :openstack_management_url => @openstack_management_url}
end

#dataObject



134
135
136
# File 'lib/fog/dns/openstack/v2.rb', line 134

def data
  self.class.data[@openstack_username]
end

#delete_recordset(zone_id, id) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/fog/dns/openstack/v2/requests/delete_recordset.rb', line 16

def delete_recordset(zone_id, id)
  response = Excon::Response.new
  response.status = 202

  recordset                  = data[:recordset_updated] || data[:recordsets]["recordsets"].first.dup
  recordset["zone_id"]       = zone_id
  recordset["id"]            = id
  recordset["status"]        = "PENDING"
  recordset["action"]        = "DELETE"
  recordset["links"]["self"] = "https://127.0.0.1:9001/v2/zones/#{zone_id}/recordsets/#{id}"

  response.body = recordset
  response
end

#delete_zone(id) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/fog/dns/openstack/v2/requests/delete_zone.rb', line 16

def delete_zone(id)
  response = Excon::Response.new
  response.status = 202

  zone                  = data[:zone_updated] || data[:zones].first.dup
  zone["id"]            = id
  zone["status"]        = "PENDING"
  zone["action"]        = "DELETE"
  zone["links"]["self"] = "https://127.0.0.1:9001/v2/zones/#{id}"

  response.body = zone
  response
end

#get_quota(_project_id = nil) ⇒ Object



17
18
19
20
21
22
# File 'lib/fog/dns/openstack/v2/requests/get_quota.rb', line 17

def get_quota(_project_id = nil)
  response = Excon::Response.new
  response.status = 200
  response.body = data[:quota_updated] || data[:quota]
  response
end

#get_recordset(zone_id, id) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/fog/dns/openstack/v2/requests/get_recordset.rb', line 16

def get_recordset(zone_id, id)
  response = Excon::Response.new
  response.status = 200

  recordset                  = data[:recordset_updated] || data[:recordsets]["recordsets"].first
  recordset["zone_id"]       = zone_id
  recordset["id"]            = id
  recordset["action"]        = "NONE"
  recordset["status"]        = "ACTIVE"
  recordset["links"]["self"] = "https://127.0.0.1:9001/v2/zones/#{zone_id}/recordsets/#{id}"

  response.body = recordset
  response
end

#get_zone(id) ⇒ Object



16
17
18
19
20
21
22
23
# File 'lib/fog/dns/openstack/v2/requests/get_zone.rb', line 16

def get_zone(id)
  response = Excon::Response.new
  response.status = 200
  zone = data[:zone_updated] || data[:zones].first
  zone["id"] = id
  response.body = zone
  response
end

#list_recordsets(zone_id, _options = {}) ⇒ Object



17
18
19
20
21
22
23
24
25
# File 'lib/fog/dns/openstack/v2/requests/list_recordsets.rb', line 17

def list_recordsets(zone_id, _options = {})
  response = Excon::Response.new
  response.status = 200
  data[:recordsets]["recordsets"].each do |rs|
    rs["zone_id"] = zone_id
  end
  response.body = data[:recordsets]
  response
end

#list_zones(_options = {}) ⇒ Object



17
18
19
20
21
22
# File 'lib/fog/dns/openstack/v2/requests/list_zones.rb', line 17

def list_zones(_options = {})
  response = Excon::Response.new
  response.status = 200
  response.body = {'zones' => data[:zones]}
  response
end

#reset_dataObject



138
139
140
# File 'lib/fog/dns/openstack/v2.rb', line 138

def reset_data
  self.class.data.delete(@openstack_username)
end

#update_quota(_project_id, options = {}) ⇒ Object



19
20
21
22
23
24
25
26
27
28
# File 'lib/fog/dns/openstack/v2/requests/update_quota.rb', line 19

def update_quota(_project_id, options = {})
  # stringify keys
  options = Hash[options.map { |k, v| [k.to_s, v] }]
  data[:quota_updated] = data[:quota].merge(options)

  response = Excon::Response.new
  response.status = 200
  response.body = data[:quota_updated]
  response
end

#update_recordset(zone_id, id, options = {}) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/fog/dns/openstack/v2/requests/update_recordset.rb', line 17

def update_recordset(zone_id, id, options = {})
  # stringify keys
  options = Hash[options.map { |k, v| [k.to_s, v] }]

  data[:recordset_updated]                  = data[:recordsets]["recordsets"].first.merge(options)
  data[:recordset_updated]["zone_id"]       = zone_id
  data[:recordset_updated]["id"]            = id
  data[:recordset_updated]["status"]        = "PENDING"
  data[:recordset_updated]["action"]        = "UPDATE"
  data[:recordset_updated]["links"]["self"] = "https://127.0.0.1:9001/v2/zones/#{zone_id}/recordsets/#{id}"

  response = Excon::Response.new
  response.status = 202
  response.body = data[:recordset_updated]
  response
end

#update_zone(id, options = {}) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/fog/dns/openstack/v2/requests/update_zone.rb', line 17

def update_zone(id, options = {})
  # stringify keys
  options = Hash[options.map { |k, v| [k.to_s, v] }]

  data[:zone_updated]                  = data[:zones].first.merge(options)
  data[:zone_updated]["id"]            = id
  data[:zone_updated]["status"]        = "PENDING"
  data[:zone_updated]["action"]        = "UPDATE"
  data[:zone_updated]["links"]["self"] = "https://127.0.0.1:9001/v2/zones/#{id}"

  response = Excon::Response.new
  response.status = 202
  response.body = data[:zone_updated]
  response
end