dnsimple 2.2.0 → 3.0.0.pre.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/.travis.yml +3 -1
- data/CHANGELOG.md +13 -2
- data/CONTRIBUTING.md +35 -0
- data/Gemfile +2 -0
- data/LICENSE.txt +1 -1
- data/README.md +30 -82
- data/dnsimple.gemspec +2 -1
- data/lib/dnsimple.rb +0 -2
- data/lib/dnsimple/client.rb +64 -64
- data/lib/dnsimple/client/clients.rb +82 -58
- data/lib/dnsimple/client/contacts.rb +74 -37
- data/lib/dnsimple/client/domains.rb +82 -28
- data/lib/dnsimple/client/domains_email_forwards.rb +107 -0
- data/lib/dnsimple/client/identity.rb +38 -0
- data/lib/dnsimple/client/oauth.rb +42 -0
- data/lib/dnsimple/client/registrar.rb +64 -72
- data/lib/dnsimple/client/registrar_auto_renewal.rb +41 -0
- data/lib/dnsimple/client/registrar_whois_privacy.rb +74 -0
- data/lib/dnsimple/client/tlds.rb +88 -0
- data/lib/dnsimple/client/webhooks.rb +82 -0
- data/lib/dnsimple/client/zones.rb +68 -0
- data/lib/dnsimple/client/zones_records.rb +127 -0
- data/lib/dnsimple/default.rb +10 -17
- data/lib/dnsimple/error.rb +5 -8
- data/lib/dnsimple/extra.rb +1 -1
- data/lib/dnsimple/response.rb +80 -0
- data/lib/dnsimple/struct.rb +13 -14
- data/lib/dnsimple/struct/account.rb +13 -0
- data/lib/dnsimple/struct/contact.rb +6 -3
- data/lib/dnsimple/struct/domain.rb +10 -10
- data/lib/dnsimple/struct/domain_check.rb +16 -0
- data/lib/dnsimple/struct/email_forward.rb +11 -1
- data/lib/dnsimple/struct/oauth_token.rb +19 -0
- data/lib/dnsimple/struct/record.rb +25 -7
- data/lib/dnsimple/struct/tld.rb +22 -0
- data/lib/dnsimple/struct/user.rb +3 -7
- data/lib/dnsimple/struct/webhook.rb +13 -0
- data/lib/dnsimple/struct/whois_privacy.rb +8 -5
- data/lib/dnsimple/struct/zone.rb +25 -0
- data/lib/dnsimple/version.rb +1 -1
- data/spec/dnsimple/client/client_service_spec.rb +37 -0
- data/spec/dnsimple/client/contacts_spec.rb +108 -78
- data/spec/dnsimple/client/domains_email_forwards_spec.rb +190 -0
- data/spec/dnsimple/client/domains_spec.rb +121 -58
- data/spec/dnsimple/client/identity_spec.rb +56 -0
- data/spec/dnsimple/client/oauth_spec.rb +48 -0
- data/spec/dnsimple/client/registrar_auto_renewal_spec.rb +80 -0
- data/spec/dnsimple/client/registrar_spec.rb +109 -122
- data/spec/dnsimple/client/registrar_whois_privacy_spec.rb +119 -0
- data/spec/dnsimple/client/tlds_spec.rb +139 -0
- data/spec/dnsimple/client/webhooks_spec.rb +142 -0
- data/spec/dnsimple/client/zones_records_spec.rb +277 -0
- data/spec/dnsimple/client/zones_spec.rb +109 -0
- data/spec/dnsimple/client_spec.rb +34 -46
- data/spec/dnsimple/extra_spec.rb +22 -0
- data/spec/{files → fixtures.http}/badgateway.http +14 -14
- data/spec/fixtures.http/checkDomain/success.http +17 -0
- data/spec/fixtures.http/createContact/created.http +17 -0
- data/spec/fixtures.http/createDomain/created.http +16 -0
- data/spec/fixtures.http/createEmailForward/created.http +17 -0
- data/spec/fixtures.http/createWebhook/created.http +17 -0
- data/spec/fixtures.http/createZoneRecord/created.http +17 -0
- data/spec/fixtures.http/deleteContact/success.http +13 -0
- data/spec/fixtures.http/deleteDomain/success.http +13 -0
- data/spec/fixtures.http/deleteEmailForward/success.http +12 -0
- data/spec/fixtures.http/deleteWebhook/success.http +13 -0
- data/spec/fixtures.http/deleteZoneRecord/success.http +13 -0
- data/spec/fixtures.http/disableAutoRenewal/success.http +12 -0
- data/spec/fixtures.http/disableWhoisPrivacy/success.http +17 -0
- data/spec/fixtures.http/enableAutoRenewal/success.http +12 -0
- data/spec/fixtures.http/enableWhoisPrivacy/created.http +17 -0
- data/spec/fixtures.http/enableWhoisPrivacy/success.http +17 -0
- data/spec/fixtures.http/getContact/success.http +17 -0
- data/spec/fixtures.http/getDomain/success.http +16 -0
- data/spec/fixtures.http/getEmailForward/success.http +17 -0
- data/spec/fixtures.http/getTld/success.http +17 -0
- data/spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http +17 -0
- data/spec/fixtures.http/getTldExtendedAttributes/success.http +17 -0
- data/spec/fixtures.http/getWebhook/success.http +17 -0
- data/spec/fixtures.http/getWhoisPrivacy/success.http +17 -0
- data/spec/fixtures.http/getZone/success.http +17 -0
- data/spec/fixtures.http/getZoneRecord/success.http +17 -0
- data/spec/fixtures.http/listContacts/success.http +17 -0
- data/spec/fixtures.http/listDomains/success.http +16 -0
- data/spec/fixtures.http/listEmailForwards/success.http +17 -0
- data/spec/fixtures.http/listTlds/success.http +17 -0
- data/spec/fixtures.http/listWebhooks/success.http +17 -0
- data/spec/fixtures.http/listZoneRecords/success.http +17 -0
- data/spec/fixtures.http/listZones/success.http +17 -0
- data/spec/fixtures.http/notfound-contact.http +12 -0
- data/spec/fixtures.http/notfound-domain.http +12 -0
- data/spec/fixtures.http/notfound-emailforward.http +12 -0
- data/spec/fixtures.http/notfound-record.http +12 -0
- data/spec/fixtures.http/notfound-webhook.http +12 -0
- data/spec/fixtures.http/notfound-zone.http +12 -0
- data/spec/fixtures.http/oauthAccessToken/success.http +17 -0
- data/spec/fixtures.http/pages-1of3.http +16 -0
- data/spec/fixtures.http/pages-2of3.http +16 -0
- data/spec/fixtures.http/pages-3of3.http +16 -0
- data/spec/fixtures.http/registerDomain/success.http +17 -0
- data/spec/fixtures.http/renewDomain/error-tooearly.http +15 -0
- data/spec/fixtures.http/renewDomain/success.http +17 -0
- data/spec/fixtures.http/resetDomainToken/success.http +17 -0
- data/spec/fixtures.http/response.http +16 -0
- data/spec/fixtures.http/transferDomain/error-indnsimple.http +15 -0
- data/spec/fixtures.http/transferDomain/error-missing-authcode.http +15 -0
- data/spec/fixtures.http/transferDomain/success.http +17 -0
- data/spec/fixtures.http/transferDomainOut/success.http +13 -0
- data/spec/fixtures.http/updateContact/success.http +17 -0
- data/spec/fixtures.http/updateZoneRecord/success.http +17 -0
- data/spec/fixtures.http/whoami/success.http +16 -0
- data/spec/fixtures.http/whoami/success_account.http +16 -0
- data/spec/fixtures.http/whoami/success_user.http +16 -0
- data/spec/spec_helper.rb +0 -6
- data/spec/support/helpers.rb +4 -4
- metadata +161 -238
- data/lib/dnsimple/client/certificates.rb +0 -100
- data/lib/dnsimple/client/domains_autorenewal.rb +0 -35
- data/lib/dnsimple/client/domains_forwards.rb +0 -71
- data/lib/dnsimple/client/domains_privacy.rb +0 -35
- data/lib/dnsimple/client/domains_records.rb +0 -90
- data/lib/dnsimple/client/domains_sharing.rb +0 -54
- data/lib/dnsimple/client/domains_zones.rb +0 -22
- data/lib/dnsimple/client/name_servers.rb +0 -71
- data/lib/dnsimple/client/services.rb +0 -37
- data/lib/dnsimple/client/services_domains.rb +0 -68
- data/lib/dnsimple/client/templates.rb +0 -88
- data/lib/dnsimple/client/templates_domains.rb +0 -23
- data/lib/dnsimple/client/templates_records.rb +0 -88
- data/lib/dnsimple/client/users.rb +0 -39
- data/lib/dnsimple/client/vanity_name_servers.rb +0 -39
- data/lib/dnsimple/compatibility.rb +0 -46
- data/lib/dnsimple/struct/certificate.rb +0 -56
- data/lib/dnsimple/struct/membership.rb +0 -22
- data/lib/dnsimple/struct/price.rb +0 -16
- data/lib/dnsimple/struct/service.rb +0 -19
- data/lib/dnsimple/struct/template.rb +0 -19
- data/lib/dnsimple/struct/template_record.rb +0 -24
- data/lib/dnsimple/struct/transfer_order.rb +0 -10
- data/spec/dnsimple/client/certificates_spec.rb +0 -196
- data/spec/dnsimple/client/domains_autorenewals_spec.rb +0 -72
- data/spec/dnsimple/client/domains_forwards_spec.rb +0 -146
- data/spec/dnsimple/client/domains_privacy_spec.rb +0 -74
- data/spec/dnsimple/client/domains_records_spec.rb +0 -191
- data/spec/dnsimple/client/domains_sharing_spec.rb +0 -109
- data/spec/dnsimple/client/domains_zones_spec.rb +0 -40
- data/spec/dnsimple/client/name_servers_spec.rb +0 -131
- data/spec/dnsimple/client/services_domains_spec.rb +0 -101
- data/spec/dnsimple/client/services_spec.rb +0 -69
- data/spec/dnsimple/client/templates_domains_spec.rb +0 -38
- data/spec/dnsimple/client/templates_records_spec.rb +0 -180
- data/spec/dnsimple/client/templates_spec.rb +0 -166
- data/spec/dnsimple/client/users_spec.rb +0 -70
- data/spec/dnsimple/client/vanity_name_servers_spec.rb +0 -61
- data/spec/dnsimple/compatibility_spec.rb +0 -57
- data/spec/files/2fa/error-badtoken.http +0 -22
- data/spec/files/2fa/error-required.http +0 -23
- data/spec/files/2fa/exchange-token.http +0 -22
- data/spec/files/certificates/configure/success.http +0 -19
- data/spec/files/certificates/get/success.http +0 -19
- data/spec/files/certificates/list/success.http +0 -19
- data/spec/files/certificates/notfound.http +0 -19
- data/spec/files/certificates/purchase/success.http +0 -19
- data/spec/files/certificates/submit/success.http +0 -19
- data/spec/files/contacts/contact/success.http +0 -19
- data/spec/files/contacts/contacts/success.http +0 -23
- data/spec/files/contacts/create_contact/badrequest-missingcontact.http +0 -19
- data/spec/files/contacts/create_contact/badrequest-validationerror.http +0 -19
- data/spec/files/contacts/create_contact/created.http +0 -22
- data/spec/files/contacts/delete_contact/success-204.http +0 -18
- data/spec/files/contacts/delete_contact/success.http +0 -19
- data/spec/files/contacts/notfound-contact.http +0 -19
- data/spec/files/contacts/update_contact/success.http +0 -21
- data/spec/files/domains/create_domain/created.http +0 -21
- data/spec/files/domains/create_forward/created.http +0 -22
- data/spec/files/domains/create_membership/success.http +0 -21
- data/spec/files/domains/create_record/created.http +0 -21
- data/spec/files/domains/delete_domain/success-204.http +0 -18
- data/spec/files/domains/delete_domain/success.http +0 -19
- data/spec/files/domains/delete_forward/success.http +0 -17
- data/spec/files/domains/delete_membership/success.http +0 -17
- data/spec/files/domains/delete_record/success-204.http +0 -18
- data/spec/files/domains/delete_record/success.http +0 -19
- data/spec/files/domains/disable_auto_renewal/success.http +0 -21
- data/spec/files/domains/disable_whois_privacy/success.http +0 -21
- data/spec/files/domains/domain/success.http +0 -21
- data/spec/files/domains/domains/success.http +0 -21
- data/spec/files/domains/enable_auto_renewal/success.http +0 -21
- data/spec/files/domains/enable_whois_privacy/success.http +0 -22
- data/spec/files/domains/forward/success.http +0 -21
- data/spec/files/domains/forwards/success.http +0 -21
- data/spec/files/domains/memberships/success.http +0 -21
- data/spec/files/domains/notfound-domain.http +0 -19
- data/spec/files/domains/notfound-forward.http +0 -19
- data/spec/files/domains/notfound-membership.http +0 -19
- data/spec/files/domains/record/success.http +0 -19
- data/spec/files/domains/records/success.http +0 -19
- data/spec/files/domains/update_record/success.http +0 -21
- data/spec/files/domains/zone/success.http +0 -21
- data/spec/files/nameservers/change/success.http +0 -23
- data/spec/files/nameservers/deregister/success.http +0 -17
- data/spec/files/nameservers/name_servers/success.http +0 -23
- data/spec/files/nameservers/notfound-domain.http +0 -19
- data/spec/files/nameservers/register/badrequest-valueerror.http +0 -19
- data/spec/files/nameservers/register/success.http +0 -21
- data/spec/files/nameservers/vanity_name_servers/disabled.http +0 -23
- data/spec/files/nameservers/vanity_name_servers/enabled.http +0 -23
- data/spec/files/registrar/check/available.http +0 -19
- data/spec/files/registrar/check/registered.http +0 -21
- data/spec/files/registrar/extended_attributes/success.http +0 -21
- data/spec/files/registrar/prices/success.http +0 -21
- data/spec/files/registrar/register/badrequest-missingdomain.http +0 -19
- data/spec/files/registrar/register/badrequest-missingregistrant.http +0 -19
- data/spec/files/registrar/register/success.http +0 -21
- data/spec/files/registrar/renew/badrequest-missingrenewal.http +0 -19
- data/spec/files/registrar/renew/badrequest-unable.http +0 -19
- data/spec/files/registrar/renew/success.http +0 -21
- data/spec/files/registrar/transfer/success.http +0 -21
- data/spec/files/services/applied/success.http +0 -21
- data/spec/files/services/apply/success.http +0 -21
- data/spec/files/services/available/success.http +0 -21
- data/spec/files/services/notfound-service.http +0 -19
- data/spec/files/services/service/success.http +0 -21
- data/spec/files/services/services/success.http +0 -21
- data/spec/files/services/unapply/success.http +0 -21
- data/spec/files/subscriptions/subscription/success.http +0 -21
- data/spec/files/templates/apply_template/success.http +0 -21
- data/spec/files/templates/create_template/created.http +0 -22
- data/spec/files/templates/delete_template/success-204.http +0 -21
- data/spec/files/templates/delete_template/success.http +0 -21
- data/spec/files/templates/notfound-template.http +0 -19
- data/spec/files/templates/template/success.http +0 -21
- data/spec/files/templates/templates/success.http +0 -21
- data/spec/files/templates/update_template/success.http +0 -21
- data/spec/files/templates_records/create_record/created.http +0 -22
- data/spec/files/templates_records/delete_record/success-204.http +0 -19
- data/spec/files/templates_records/delete_record/success.http +0 -21
- data/spec/files/templates_records/notfound-template-record.http +0 -19
- data/spec/files/templates_records/record/success.http +0 -21
- data/spec/files/templates_records/records/success.http +0 -21
- data/spec/files/templates_records/update_record/success.http +0 -21
- data/spec/files/users/user/success.http +0 -21
@@ -1,101 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Dnsimple::Client, ".services / domains" do
|
4
|
-
|
5
|
-
subject { described_class.new(api_endpoint: "https://api.zone", username: "user", api_token: "token").services }
|
6
|
-
|
7
|
-
|
8
|
-
describe "#applied" do
|
9
|
-
before do
|
10
|
-
stub_request(:get, %r[/v1/domains/.+/applied_services$]).
|
11
|
-
to_return(read_fixture("services/applied/success.http"))
|
12
|
-
end
|
13
|
-
|
14
|
-
it "builds the correct request" do
|
15
|
-
subject.applied("example.com")
|
16
|
-
|
17
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/domains/example.com/applied_services").
|
18
|
-
with(headers: { 'Accept' => 'application/json' })
|
19
|
-
end
|
20
|
-
|
21
|
-
it "returns the services" do
|
22
|
-
results = subject.applied("example.com")
|
23
|
-
|
24
|
-
expect(results).to be_a(Array)
|
25
|
-
expect(results.size).to eq(1)
|
26
|
-
|
27
|
-
results.each do |result|
|
28
|
-
expect(result).to be_a(Dnsimple::Struct::Service)
|
29
|
-
expect(result.id).to be_a(Fixnum)
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
describe "#available" do
|
35
|
-
before do
|
36
|
-
stub_request(:get, %r[/v1/domains/.+/available_services$]).
|
37
|
-
to_return(read_fixture("services/available/success.http"))
|
38
|
-
end
|
39
|
-
|
40
|
-
it "builds the correct request" do
|
41
|
-
subject.available("example.com")
|
42
|
-
|
43
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/domains/example.com/available_services").
|
44
|
-
with(headers: { 'Accept' => 'application/json' })
|
45
|
-
end
|
46
|
-
|
47
|
-
it "returns the services" do
|
48
|
-
results = subject.available("example.com")
|
49
|
-
|
50
|
-
expect(results).to be_a(Array)
|
51
|
-
expect(results.size).to eq(1)
|
52
|
-
|
53
|
-
results.each do |result|
|
54
|
-
expect(result).to be_a(Dnsimple::Struct::Service)
|
55
|
-
expect(result.id).to be_a(Fixnum)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
describe "#apply" do
|
61
|
-
before do
|
62
|
-
stub_request(:post, %r[/v1/domains/.+/applied_services$]).
|
63
|
-
to_return(read_fixture("services/apply/success.http"))
|
64
|
-
end
|
65
|
-
|
66
|
-
it "builds the correct request" do
|
67
|
-
subject.apply("example.com", "whatever")
|
68
|
-
|
69
|
-
expect(WebMock).to have_requested(:post, "https://api.zone/v1/domains/example.com/applied_services").
|
70
|
-
with(body: { service: { id: "whatever" } }).
|
71
|
-
with(headers: { 'Accept' => 'application/json' })
|
72
|
-
end
|
73
|
-
|
74
|
-
it "returns nothing" do
|
75
|
-
results = subject.apply("example.com", "whatever")
|
76
|
-
|
77
|
-
expect(results).to be_truthy
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
|
-
describe "#unapply" do
|
82
|
-
before do
|
83
|
-
stub_request(:delete, %r[/v1/domains/.+/applied_services/.+$]).
|
84
|
-
to_return(read_fixture("services/unapply/success.http"))
|
85
|
-
end
|
86
|
-
|
87
|
-
it "builds the correct request" do
|
88
|
-
subject.unapply("example.com", "whatever")
|
89
|
-
|
90
|
-
expect(WebMock).to have_requested(:delete, "https://api.zone/v1/domains/example.com/applied_services/whatever").
|
91
|
-
with(headers: { 'Accept' => 'application/json' })
|
92
|
-
end
|
93
|
-
|
94
|
-
it "returns nothing" do
|
95
|
-
results = subject.unapply("example.com", "whatever")
|
96
|
-
|
97
|
-
expect(results).to be_truthy
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
|
-
end
|
@@ -1,69 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Dnsimple::Client, ".services" do
|
4
|
-
|
5
|
-
subject { described_class.new(api_endpoint: "https://api.zone", username: "user", api_token: "token").services }
|
6
|
-
|
7
|
-
|
8
|
-
describe "#services" do
|
9
|
-
before do
|
10
|
-
stub_request(:get, %r[/v1/services$]).
|
11
|
-
to_return(read_fixture("services/services/success.http"))
|
12
|
-
end
|
13
|
-
|
14
|
-
it "builds the correct request" do
|
15
|
-
subject.services
|
16
|
-
|
17
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/services").
|
18
|
-
with(headers: { 'Accept' => 'application/json' })
|
19
|
-
end
|
20
|
-
|
21
|
-
it "returns the services" do
|
22
|
-
results = subject.services
|
23
|
-
|
24
|
-
expect(results).to be_a(Array)
|
25
|
-
expect(results.size).to eq(3)
|
26
|
-
|
27
|
-
results.each do |result|
|
28
|
-
expect(result).to be_a(Dnsimple::Struct::Service)
|
29
|
-
expect(result.id).to be_a(Fixnum)
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
describe "#service" do
|
35
|
-
before do
|
36
|
-
stub_request(:get, %r[/v1/services/.+$]).
|
37
|
-
to_return(read_fixture("services/service/success.http"))
|
38
|
-
end
|
39
|
-
|
40
|
-
it "builds the correct request" do
|
41
|
-
subject.service(1)
|
42
|
-
|
43
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/services/1").
|
44
|
-
with(headers: { 'Accept' => 'application/json' })
|
45
|
-
end
|
46
|
-
|
47
|
-
it "returns the service" do
|
48
|
-
result = subject.service(1)
|
49
|
-
|
50
|
-
expect(result).to be_a(Dnsimple::Struct::Service)
|
51
|
-
expect(result.id).to eq(1)
|
52
|
-
expect(result.name).to eq("Google Apps")
|
53
|
-
expect(result.short_name).to eq("google-apps")
|
54
|
-
expect(result.description).to eq("All the records you need for Google Apps to function.")
|
55
|
-
end
|
56
|
-
|
57
|
-
context "when something does not exist" do
|
58
|
-
it "raises NotFoundError" do
|
59
|
-
stub_request(:get, %r[/v1]).
|
60
|
-
to_return(read_fixture("services/notfound-service.http"))
|
61
|
-
|
62
|
-
expect {
|
63
|
-
subject.service(1)
|
64
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
65
|
-
end
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Dnsimple::Client, ".templates / domains" do
|
4
|
-
|
5
|
-
subject { described_class.new(api_endpoint: "https://api.zone", username: "user", api_token: "token").templates }
|
6
|
-
|
7
|
-
describe "#apply_template" do
|
8
|
-
before do
|
9
|
-
stub_request(:post, %r[/v1/domains/.+/templates/.+/apply$]).
|
10
|
-
to_return(read_fixture("templates/apply_template/success.http"))
|
11
|
-
end
|
12
|
-
|
13
|
-
it "builds the correct request" do
|
14
|
-
subject.apply(1, 2)
|
15
|
-
|
16
|
-
expect(WebMock).to have_requested(:post, "https://api.zone/v1/domains/1/templates/2/apply").
|
17
|
-
with(headers: { 'Accept' => 'application/json' })
|
18
|
-
end
|
19
|
-
|
20
|
-
it "returns nothing" do
|
21
|
-
result = subject.apply_template(1, 2)
|
22
|
-
|
23
|
-
expect(result).to be_truthy
|
24
|
-
end
|
25
|
-
|
26
|
-
context "when something does not exist" do
|
27
|
-
it "raises NotFoundError" do
|
28
|
-
stub_request(:post, %r[/v1]).
|
29
|
-
to_return(read_fixture("templates/notfound-template.http"))
|
30
|
-
|
31
|
-
expect {
|
32
|
-
subject.apply_template(1, 2)
|
33
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
end
|
@@ -1,180 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Dnsimple::Client, ".templates / records" do
|
4
|
-
|
5
|
-
subject { described_class.new(api_endpoint: "https://api.zone", username: "user", api_token: "token").templates }
|
6
|
-
|
7
|
-
|
8
|
-
describe "#records" do
|
9
|
-
before do
|
10
|
-
stub_request(:get, %r[/v1/templates/.+/records$]).
|
11
|
-
to_return(read_fixture("templates_records/records/success.http"))
|
12
|
-
end
|
13
|
-
|
14
|
-
it "builds the correct request" do
|
15
|
-
subject.records(1)
|
16
|
-
|
17
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/templates/1/records").
|
18
|
-
with(headers: { 'Accept' => 'application/json' })
|
19
|
-
end
|
20
|
-
|
21
|
-
it "returns the template records" do
|
22
|
-
results = subject.records(1)
|
23
|
-
|
24
|
-
expect(results).to be_a(Array)
|
25
|
-
expect(results.size).to eq(2)
|
26
|
-
|
27
|
-
results.each do |result|
|
28
|
-
expect(result).to be_a(Dnsimple::Struct::TemplateRecord)
|
29
|
-
expect(result.id).to be_a(Fixnum)
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
describe "#create_record" do
|
35
|
-
before do
|
36
|
-
stub_request(:post, %r[/v1/templates/.+/records$]).
|
37
|
-
to_return(read_fixture("templates_records/create_record/created.http"))
|
38
|
-
end
|
39
|
-
|
40
|
-
it "builds the correct request" do
|
41
|
-
subject.create_record(1, { name: "", record_type: "A", content: "127.0.0.1", prio: "1" })
|
42
|
-
|
43
|
-
expect(WebMock).to have_requested(:post, "https://api.zone/v1/templates/1/records").
|
44
|
-
with(body: { dns_template_record: { name: "", record_type: "A", content: "127.0.0.1", prio: "1" } }).
|
45
|
-
with(headers: { 'Accept' => 'application/json' })
|
46
|
-
end
|
47
|
-
|
48
|
-
it "returns the template record" do
|
49
|
-
result = subject.create_record(1, { name: "", record_type: "", content: "" })
|
50
|
-
|
51
|
-
expect(result).to be_a(Dnsimple::Struct::TemplateRecord)
|
52
|
-
expect(result.id).to be_a(Fixnum)
|
53
|
-
end
|
54
|
-
|
55
|
-
context "when something does not exist" do
|
56
|
-
it "raises NotFoundError" do
|
57
|
-
stub_request(:post, %r[/v1]).
|
58
|
-
to_return(read_fixture("templates/notfound-template.http"))
|
59
|
-
|
60
|
-
expect {
|
61
|
-
subject.create_record(1, { name: "", record_type: "", content: "" })
|
62
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
63
|
-
end
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
describe "#record" do
|
68
|
-
before do
|
69
|
-
stub_request(:get, %r[/v1/templates/.+/records/.+$]).
|
70
|
-
to_return(read_fixture("templates_records/record/success.http"))
|
71
|
-
end
|
72
|
-
|
73
|
-
it "builds the correct request" do
|
74
|
-
subject.record(1, 2)
|
75
|
-
|
76
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/templates/1/records/2").
|
77
|
-
with(headers: { 'Accept' => 'application/json' })
|
78
|
-
end
|
79
|
-
|
80
|
-
it "returns the record" do
|
81
|
-
result = subject.record(1, 2)
|
82
|
-
|
83
|
-
expect(result).to be_a(Dnsimple::Struct::TemplateRecord)
|
84
|
-
expect(result.id).to eq(8868)
|
85
|
-
expect(result.dns_template_id).to eq(2947)
|
86
|
-
expect(result.name).to eq("ww1")
|
87
|
-
expect(result.content).to eq("127.0.0.1")
|
88
|
-
expect(result.ttl).to eq(3600)
|
89
|
-
expect(result.prio).to be_nil
|
90
|
-
expect(result.record_type).to eq("ALIAS")
|
91
|
-
expect(result.created_at).to eq("2014-12-15T17:25:20.431Z")
|
92
|
-
expect(result.updated_at).to eq("2014-12-15T17:25:20.431Z")
|
93
|
-
end
|
94
|
-
|
95
|
-
context "when something does not exist" do
|
96
|
-
it "raises NotFoundError" do
|
97
|
-
stub_request(:get, %r[/v1]).
|
98
|
-
to_return(read_fixture("templates_records/notfound-template-record.http"))
|
99
|
-
|
100
|
-
expect {
|
101
|
-
subject.record(1, 2)
|
102
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
103
|
-
end
|
104
|
-
end
|
105
|
-
end
|
106
|
-
|
107
|
-
describe "#update_record" do
|
108
|
-
before do
|
109
|
-
stub_request(:put, %r[/v1/templates/.+/records/.+$]).
|
110
|
-
to_return(read_fixture("templates_records/update_record/success.http"))
|
111
|
-
end
|
112
|
-
|
113
|
-
it "builds the correct request" do
|
114
|
-
subject.update_record(1, 2, { name: "www" })
|
115
|
-
|
116
|
-
expect(WebMock).to have_requested(:put, "https://api.zone/v1/templates/1/records/2").
|
117
|
-
with(body: { dns_template_record: { name: "www" } }).
|
118
|
-
with(headers: { 'Accept' => 'application/json' })
|
119
|
-
end
|
120
|
-
|
121
|
-
it "returns the template record" do
|
122
|
-
result = subject.update_record(1, 2, {})
|
123
|
-
|
124
|
-
expect(result).to be_a(Dnsimple::Struct::TemplateRecord)
|
125
|
-
expect(result.id).to be_a(Fixnum)
|
126
|
-
end
|
127
|
-
|
128
|
-
context "when something does not exist" do
|
129
|
-
it "raises NotFoundError" do
|
130
|
-
stub_request(:put, %r[/v1]).
|
131
|
-
to_return(read_fixture("templates_records/notfound-template-record.http"))
|
132
|
-
|
133
|
-
expect {
|
134
|
-
subject.update_record(1, 2, {})
|
135
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
136
|
-
end
|
137
|
-
end
|
138
|
-
end
|
139
|
-
|
140
|
-
describe "#delete_record" do
|
141
|
-
before do
|
142
|
-
stub_request(:delete, %r[/v1/templates/.+/records/.+$]).
|
143
|
-
to_return(read_fixture("templates_records/delete_record/success.http"))
|
144
|
-
end
|
145
|
-
|
146
|
-
it "builds the correct request" do
|
147
|
-
subject.delete_record(1, 2)
|
148
|
-
|
149
|
-
expect(WebMock).to have_requested(:delete, "https://api.zone/v1/templates/1/records/2").
|
150
|
-
with(headers: { 'Accept' => 'application/json' })
|
151
|
-
end
|
152
|
-
|
153
|
-
it "returns nothing" do
|
154
|
-
result = subject.delete_record(1, 2)
|
155
|
-
|
156
|
-
expect(result).to be_truthy
|
157
|
-
end
|
158
|
-
|
159
|
-
it "supports HTTP 204" do
|
160
|
-
stub_request(:delete, %r[/v1]).
|
161
|
-
to_return(read_fixture("templates_records/delete_record/success-204.http"))
|
162
|
-
|
163
|
-
result = subject.delete_record(1, 2)
|
164
|
-
|
165
|
-
expect(result).to be_truthy
|
166
|
-
end
|
167
|
-
|
168
|
-
context "when something does not exist" do
|
169
|
-
it "raises NotFoundError" do
|
170
|
-
stub_request(:delete, %r[/v1]).
|
171
|
-
to_return(read_fixture("templates_records/notfound-template-record.http"))
|
172
|
-
|
173
|
-
expect {
|
174
|
-
subject.delete_record(1, 2)
|
175
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
176
|
-
end
|
177
|
-
end
|
178
|
-
end
|
179
|
-
|
180
|
-
end
|
@@ -1,166 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Dnsimple::Client, ".templates" do
|
4
|
-
|
5
|
-
subject { described_class.new(api_endpoint: "https://api.zone", username: "user", api_token: "token").templates }
|
6
|
-
|
7
|
-
|
8
|
-
describe "#templates" do
|
9
|
-
before do
|
10
|
-
stub_request(:get, %r[/v1/templates$]).
|
11
|
-
to_return(read_fixture("templates/templates/success.http"))
|
12
|
-
end
|
13
|
-
|
14
|
-
it "builds the correct request" do
|
15
|
-
subject.templates
|
16
|
-
|
17
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/templates").
|
18
|
-
with(headers: { 'Accept' => 'application/json' })
|
19
|
-
end
|
20
|
-
|
21
|
-
it "returns the templates" do
|
22
|
-
results = subject.templates
|
23
|
-
|
24
|
-
expect(results).to be_a(Array)
|
25
|
-
expect(results.size).to eq(1)
|
26
|
-
|
27
|
-
results.each do |result|
|
28
|
-
expect(result).to be_a(Dnsimple::Struct::Template)
|
29
|
-
expect(result.id).to be_a(Fixnum)
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
describe "#create_template" do
|
35
|
-
before do
|
36
|
-
stub_request(:post, %r[/v1/templates]).
|
37
|
-
to_return(read_fixture("templates/create_template/created.http"))
|
38
|
-
end
|
39
|
-
|
40
|
-
let(:attributes) { { name: "", short_name: "" } }
|
41
|
-
|
42
|
-
it "builds the correct request" do
|
43
|
-
subject.create_template(attributes)
|
44
|
-
|
45
|
-
expect(WebMock).to have_requested(:post, "https://api.zone/v1/templates").
|
46
|
-
with(body: { dns_template: attributes }).
|
47
|
-
with(headers: { 'Accept' => 'application/json' })
|
48
|
-
end
|
49
|
-
|
50
|
-
it "returns the template" do
|
51
|
-
result = subject.create_template(attributes)
|
52
|
-
|
53
|
-
expect(result).to be_a(Dnsimple::Struct::Template)
|
54
|
-
expect(result.id).to be_a(Fixnum)
|
55
|
-
end
|
56
|
-
end
|
57
|
-
|
58
|
-
describe "#template" do
|
59
|
-
before do
|
60
|
-
stub_request(:get, %r[/v1/templates/.+$]).
|
61
|
-
to_return(read_fixture("templates/template/success.http"))
|
62
|
-
end
|
63
|
-
|
64
|
-
it "builds the correct request" do
|
65
|
-
subject.template(1)
|
66
|
-
|
67
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/templates/1").
|
68
|
-
with(headers: { 'Accept' => 'application/json' })
|
69
|
-
end
|
70
|
-
|
71
|
-
it "returns the template" do
|
72
|
-
result = subject.template(1)
|
73
|
-
|
74
|
-
expect(result).to be_a(Dnsimple::Struct::Template)
|
75
|
-
expect(result.id).to eq(2651)
|
76
|
-
expect(result.name).to eq("Localhost")
|
77
|
-
expect(result.short_name).to eq("localhost")
|
78
|
-
expect(result.description).to eq("This is a test.")
|
79
|
-
end
|
80
|
-
|
81
|
-
context "when something does not exist" do
|
82
|
-
it "raises NotFoundError" do
|
83
|
-
stub_request(:get, %r[/v1]).
|
84
|
-
to_return(read_fixture("templates/notfound-template.http"))
|
85
|
-
|
86
|
-
expect {
|
87
|
-
subject.template(1)
|
88
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
89
|
-
end
|
90
|
-
end
|
91
|
-
end
|
92
|
-
|
93
|
-
describe "#update_template" do
|
94
|
-
before do
|
95
|
-
stub_request(:put, %r[/v1/templates/.+$]).
|
96
|
-
to_return(read_fixture("templates/update_template/success.http"))
|
97
|
-
end
|
98
|
-
|
99
|
-
it "builds the correct request" do
|
100
|
-
subject.update_template(1, { name: "Updated" })
|
101
|
-
|
102
|
-
expect(WebMock).to have_requested(:put, "https://api.zone/v1/templates/1").
|
103
|
-
with(body: { dns_template: { name: "Updated" } }).
|
104
|
-
with(headers: { 'Accept' => 'application/json' })
|
105
|
-
end
|
106
|
-
|
107
|
-
it "returns the template" do
|
108
|
-
result = subject.update_template(1, {})
|
109
|
-
|
110
|
-
expect(result).to be_a(Dnsimple::Struct::Template)
|
111
|
-
expect(result.id).to be_a(Fixnum)
|
112
|
-
end
|
113
|
-
|
114
|
-
context "when something does not exist" do
|
115
|
-
it "raises NotFoundError" do
|
116
|
-
stub_request(:put, %r[/v1]).
|
117
|
-
to_return(read_fixture("templates/notfound-template.http"))
|
118
|
-
|
119
|
-
expect {
|
120
|
-
subject.update_template(1, {})
|
121
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
122
|
-
end
|
123
|
-
end
|
124
|
-
end
|
125
|
-
|
126
|
-
describe "#delete_template" do
|
127
|
-
before do
|
128
|
-
stub_request(:delete, %r[/v1/templates/.+$]).
|
129
|
-
to_return(read_fixture("templates/delete_template/success.http"))
|
130
|
-
end
|
131
|
-
|
132
|
-
it "builds the correct request" do
|
133
|
-
subject.delete_template(1)
|
134
|
-
|
135
|
-
expect(WebMock).to have_requested(:delete, "https://api.zone/v1/templates/1").
|
136
|
-
with(headers: { 'Accept' => 'application/json' })
|
137
|
-
end
|
138
|
-
|
139
|
-
it "returns nothing" do
|
140
|
-
result = subject.delete_template(1)
|
141
|
-
|
142
|
-
expect(result).to be_truthy
|
143
|
-
end
|
144
|
-
|
145
|
-
it "supports HTTP 204" do
|
146
|
-
stub_request(:delete, %r[/v1]).
|
147
|
-
to_return(read_fixture("templates/delete_template/success-204.http"))
|
148
|
-
|
149
|
-
result = subject.delete_template(1)
|
150
|
-
|
151
|
-
expect(result).to be_truthy
|
152
|
-
end
|
153
|
-
|
154
|
-
context "when something does not exist" do
|
155
|
-
it "raises NotFoundError" do
|
156
|
-
stub_request(:delete, %r[/v1]).
|
157
|
-
to_return(read_fixture("templates/notfound-template.http"))
|
158
|
-
|
159
|
-
expect {
|
160
|
-
subject.delete_template(1)
|
161
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
162
|
-
end
|
163
|
-
end
|
164
|
-
end
|
165
|
-
|
166
|
-
end
|