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,22 +0,0 @@
|
|
1
|
-
module Dnsimple
|
2
|
-
module Struct
|
3
|
-
|
4
|
-
class Membership < Base
|
5
|
-
# @return [Fixnum] The membership ID in DNSimple.
|
6
|
-
attr_accessor :id
|
7
|
-
|
8
|
-
# @return [Fixnum] The associated domain ID.
|
9
|
-
attr_accessor :domain_id
|
10
|
-
|
11
|
-
# @return [Fixnum] The associated user ID.
|
12
|
-
attr_accessor :user_id
|
13
|
-
|
14
|
-
# @return [String] When the membership was created in DNSimple.
|
15
|
-
attr_accessor :created_at
|
16
|
-
|
17
|
-
# @return [String] When the membership was last updated in DNSimple.
|
18
|
-
attr_accessor :updated_at
|
19
|
-
end
|
20
|
-
|
21
|
-
end
|
22
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
module Dnsimple
|
2
|
-
module Struct
|
3
|
-
|
4
|
-
class Price < Base
|
5
|
-
attr_accessor :tld
|
6
|
-
attr_accessor :minimum_registration
|
7
|
-
attr_accessor :registration_price
|
8
|
-
attr_accessor :registration_enabled
|
9
|
-
attr_accessor :transfer_price
|
10
|
-
attr_accessor :transfer_enabled
|
11
|
-
attr_accessor :renewal_price
|
12
|
-
attr_accessor :renewal_enabled
|
13
|
-
end
|
14
|
-
|
15
|
-
end
|
16
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
module Dnsimple
|
2
|
-
module Struct
|
3
|
-
|
4
|
-
class Service < Base
|
5
|
-
# @return [Fixnum] The service ID in DNSimple.
|
6
|
-
attr_accessor :id
|
7
|
-
|
8
|
-
# @return [String] The service name.
|
9
|
-
attr_accessor :name
|
10
|
-
|
11
|
-
# @return [String] The URI-compatible slug.
|
12
|
-
attr_accessor :short_name
|
13
|
-
|
14
|
-
# @return [String] The description.
|
15
|
-
attr_accessor :description
|
16
|
-
end
|
17
|
-
|
18
|
-
end
|
19
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
module Dnsimple
|
2
|
-
module Struct
|
3
|
-
|
4
|
-
class Template < Base
|
5
|
-
# @return [Fixnum] The template ID in DNSimple.
|
6
|
-
attr_accessor :id
|
7
|
-
|
8
|
-
# @return [String] The template name.
|
9
|
-
attr_accessor :name
|
10
|
-
|
11
|
-
# @return [String] The URI-compatible slug.
|
12
|
-
attr_accessor :short_name
|
13
|
-
|
14
|
-
# @return [String] The description.
|
15
|
-
attr_accessor :description
|
16
|
-
end
|
17
|
-
|
18
|
-
end
|
19
|
-
end
|
@@ -1,24 +0,0 @@
|
|
1
|
-
module Dnsimple
|
2
|
-
module Struct
|
3
|
-
|
4
|
-
class TemplateRecord < Base
|
5
|
-
attr_accessor :id
|
6
|
-
attr_accessor :dns_template_id
|
7
|
-
attr_accessor :name
|
8
|
-
attr_accessor :type
|
9
|
-
attr_accessor :content
|
10
|
-
attr_accessor :ttl
|
11
|
-
attr_accessor :priority
|
12
|
-
attr_accessor :created_at
|
13
|
-
attr_accessor :updated_at
|
14
|
-
|
15
|
-
alias :template_id :dns_template_id
|
16
|
-
alias :template_id= :dns_template_id=
|
17
|
-
alias :prio :priority
|
18
|
-
alias :prio= :priority=
|
19
|
-
alias :record_type :type
|
20
|
-
alias :record_type= :type=
|
21
|
-
end
|
22
|
-
|
23
|
-
end
|
24
|
-
end
|
@@ -1,196 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Dnsimple::Client, ".certificates" do
|
4
|
-
|
5
|
-
subject { described_class.new(api_endpoint: "https://api.zone", username: "user", api_token: "token").certificates }
|
6
|
-
|
7
|
-
|
8
|
-
describe "#certificates" do
|
9
|
-
before do
|
10
|
-
stub_request(:get, %r[/v1/domains/.+/certificates$]).
|
11
|
-
to_return(read_fixture("certificates/list/success.http"))
|
12
|
-
end
|
13
|
-
|
14
|
-
it "builds the correct request" do
|
15
|
-
subject.certificates("example.com")
|
16
|
-
|
17
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/domains/example.com/certificates").
|
18
|
-
with(headers: { 'Accept' => 'application/json' })
|
19
|
-
end
|
20
|
-
|
21
|
-
it "returns the records" do
|
22
|
-
results = subject.certificates("example.com")
|
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::Certificate)
|
29
|
-
expect(result.id).to be_a(Fixnum)
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
context "when something does not exist" do
|
34
|
-
it "raises NotFoundError" do
|
35
|
-
stub_request(:get, %r[/v1]).
|
36
|
-
to_return(read_fixture("domains/notfound-domain.http"))
|
37
|
-
|
38
|
-
expect {
|
39
|
-
subject.certificates("example.com")
|
40
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
describe "#certificate" do
|
46
|
-
before do
|
47
|
-
stub_request(:get, %r[/v1/domains/.+/certificates/.+$]).
|
48
|
-
to_return(read_fixture("certificates/get/success.http"))
|
49
|
-
end
|
50
|
-
|
51
|
-
it "builds the correct request" do
|
52
|
-
subject.certificate("example.com", 2)
|
53
|
-
|
54
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/domains/example.com/certificates/2").
|
55
|
-
with(headers: { 'Accept' => 'application/json' })
|
56
|
-
end
|
57
|
-
|
58
|
-
it "returns the certificate" do
|
59
|
-
result = subject.certificate("example.com", 2)
|
60
|
-
|
61
|
-
expect(result).to be_a(Dnsimple::Struct::Certificate)
|
62
|
-
expect(result.id).to eq(4576)
|
63
|
-
expect(result.domain_id).to eq(79569)
|
64
|
-
expect(result.contact_id).to eq(11549)
|
65
|
-
expect(result.name).to eq("www")
|
66
|
-
expect(result.state).to eq("cancelled")
|
67
|
-
expect(result.csr).to eq("-----BEGIN NEW CERTIFICATE REQUEST-----\nRHr2akB4KMba6FMAsvlStnO/2ika16hNx+d3smPNsER+HA==\n-----END NEW CERTIFICATE REQUEST-----\n")
|
68
|
-
expect(result.ssl_certificate).to eq("-----BEGIN CERTIFICATE-----\nXwTkw5UCPpaVyUYcwHlvaprOe9ZbwIyEHm2AT1rW+70=\n-----END CERTIFICATE-----\n")
|
69
|
-
expect(result.private_key).to eq("-----BEGIN RSA PRIVATE KEY-----\nUeXbFi7o+nuPfRhpBFQEKwacKFc3Hnc1hH6UsnC0KY25cUif7yz38A==\n-----END RSA PRIVATE KEY-----\n")
|
70
|
-
expect(result.approver_email).to eq("example@example.net")
|
71
|
-
expect(result.created_at).to eq("2013-09-17T21:54:42Z")
|
72
|
-
expect(result.updated_at).to eq("2013-09-17T22:25:36Z")
|
73
|
-
expect(result.configured_at).to eq("2013-09-17T22:25:01Z")
|
74
|
-
expect(result.expires_on).to eq("2014-09-17")
|
75
|
-
end
|
76
|
-
|
77
|
-
context "when something does not exist" do
|
78
|
-
it "raises NotFoundError" do
|
79
|
-
stub_request(:get, %r[/v1]).
|
80
|
-
to_return(read_fixture("certificates/notfound.http"))
|
81
|
-
|
82
|
-
expect {
|
83
|
-
subject.certificate("example.com", 2)
|
84
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
85
|
-
end
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
describe "#purchase" do
|
90
|
-
before do
|
91
|
-
stub_request(:post, %r[/v1/domains/.+/certificates$]).
|
92
|
-
to_return(read_fixture("certificates/purchase/success.http"))
|
93
|
-
end
|
94
|
-
|
95
|
-
it "builds the correct request" do
|
96
|
-
subject.purchase("example.com", "www", 100)
|
97
|
-
|
98
|
-
expect(WebMock).to have_requested(:post, "https://api.zone/v1/domains/example.com/certificates").
|
99
|
-
with(body: { certificate: { name: "www", contact_id: "100" } }).
|
100
|
-
with(headers: { 'Accept' => 'application/json' })
|
101
|
-
end
|
102
|
-
|
103
|
-
it "merges custom options" do
|
104
|
-
subject.purchase("example.com", "www", 100, certificate: { csr: "CUSTOM" }, something: "else")
|
105
|
-
|
106
|
-
expect(WebMock).to have_requested(:post, "https://api.zone/v1/domains/example.com/certificates").
|
107
|
-
with(body: { certificate: { name: "www", contact_id: "100", csr: "CUSTOM" }, something: "else"}).
|
108
|
-
with(headers: { 'Accept' => 'application/json' })
|
109
|
-
end
|
110
|
-
|
111
|
-
it "returns the certificate" do
|
112
|
-
result = subject.purchase("example.com", "www", 100)
|
113
|
-
|
114
|
-
expect(result).to be_a(Dnsimple::Struct::Certificate)
|
115
|
-
expect(result.id).to be_a(Fixnum)
|
116
|
-
end
|
117
|
-
|
118
|
-
context "when something does not exist" do
|
119
|
-
it "raises NotFoundError" do
|
120
|
-
stub_request(:post, %r[/v1]).
|
121
|
-
to_return(read_fixture("domains/notfound-domain.http"))
|
122
|
-
|
123
|
-
expect {
|
124
|
-
subject.purchase("example.com", "www", 100)
|
125
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
126
|
-
end
|
127
|
-
end
|
128
|
-
end
|
129
|
-
|
130
|
-
describe "#configure" do
|
131
|
-
before do
|
132
|
-
stub_request(:put, %r[/v1/domains/.+/certificates/.+/configure$]).
|
133
|
-
to_return(read_fixture("certificates/configure/success.http"))
|
134
|
-
end
|
135
|
-
|
136
|
-
it "builds the correct request" do
|
137
|
-
subject.configure("example.com", 2)
|
138
|
-
|
139
|
-
expect(WebMock).to have_requested(:put, "https://api.zone/v1/domains/example.com/certificates/2/configure").
|
140
|
-
with(body: {}).
|
141
|
-
with(headers: { 'Accept' => 'application/json' })
|
142
|
-
end
|
143
|
-
|
144
|
-
it "returns the certificate" do
|
145
|
-
result = subject.configure("example.com", 2)
|
146
|
-
|
147
|
-
expect(result).to be_a(Dnsimple::Struct::Certificate)
|
148
|
-
expect(result.id).to be_a(Fixnum)
|
149
|
-
end
|
150
|
-
|
151
|
-
context "when something does not exist" do
|
152
|
-
it "raises NotFoundError" do
|
153
|
-
stub_request(:put, %r[/v1]).
|
154
|
-
to_return(read_fixture("certificates/notfound.http"))
|
155
|
-
|
156
|
-
expect {
|
157
|
-
subject.configure("example.com", 2)
|
158
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
159
|
-
end
|
160
|
-
end
|
161
|
-
end
|
162
|
-
|
163
|
-
describe "#submit" do
|
164
|
-
before do
|
165
|
-
stub_request(:put, %r[/v1/domains/.+/certificates/.+/submit]).
|
166
|
-
to_return(read_fixture("certificates/submit/success.http"))
|
167
|
-
end
|
168
|
-
|
169
|
-
it "builds the correct request" do
|
170
|
-
subject.submit("example.com", 2, "admin@example.com")
|
171
|
-
|
172
|
-
expect(WebMock).to have_requested(:put, "https://api.zone/v1/domains/example.com/certificates/2/submit").
|
173
|
-
with(body: { certificate: { approver_email: "admin@example.com" } }).
|
174
|
-
with(headers: { 'Accept' => 'application/json' })
|
175
|
-
end
|
176
|
-
|
177
|
-
it "returns the certificate" do
|
178
|
-
result = subject.submit("example.com", 2, "admin@example.com")
|
179
|
-
|
180
|
-
expect(result).to be_a(Dnsimple::Struct::Certificate)
|
181
|
-
expect(result.id).to be_a(Fixnum)
|
182
|
-
end
|
183
|
-
|
184
|
-
context "when something does not exist" do
|
185
|
-
it "raises NotFoundError" do
|
186
|
-
stub_request(:put, %r[/v1]).
|
187
|
-
to_return(read_fixture("certificates/notfound.http"))
|
188
|
-
|
189
|
-
expect {
|
190
|
-
subject.submit("example.com", 2, "admin@example.com")
|
191
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
192
|
-
end
|
193
|
-
end
|
194
|
-
end
|
195
|
-
|
196
|
-
end
|
@@ -1,72 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Dnsimple::Client, ".domains / autorenewals" do
|
4
|
-
|
5
|
-
subject { described_class.new(api_endpoint: "https://api.zone", username: "user", api_token: "token").domains }
|
6
|
-
|
7
|
-
|
8
|
-
describe "#enable_auto_renewal" do
|
9
|
-
before do
|
10
|
-
stub_request(:post, %r[/v1/domains/.+/auto_renewal$]).
|
11
|
-
to_return(read_fixture("domains/enable_auto_renewal/success.http"))
|
12
|
-
end
|
13
|
-
|
14
|
-
it "builds the correct request" do
|
15
|
-
subject.enable_auto_renewal("example.com")
|
16
|
-
|
17
|
-
expect(WebMock).to have_requested(:post, "https://api.zone/v1/domains/example.com/auto_renewal").
|
18
|
-
with(headers: { 'Accept' => 'application/json' })
|
19
|
-
end
|
20
|
-
|
21
|
-
it "returns the domain" do
|
22
|
-
result = subject.enable_auto_renewal("example.com")
|
23
|
-
|
24
|
-
expect(result).to be_a(Dnsimple::Struct::Domain)
|
25
|
-
expect(result.id).to be_a(Fixnum)
|
26
|
-
end
|
27
|
-
|
28
|
-
context "when the domain does not exist" do
|
29
|
-
it "raises NotFoundError" do
|
30
|
-
stub_request(:post, %r[/v1]).
|
31
|
-
to_return(read_fixture("domains/notfound-domain.http"))
|
32
|
-
|
33
|
-
expect {
|
34
|
-
subject.enable_auto_renewal("example.com")
|
35
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
describe "#disable_auto_renewal" do
|
41
|
-
before do
|
42
|
-
stub_request(:delete, %r[/v1/domains/.+/auto_renewal$]).
|
43
|
-
to_return(read_fixture("domains/disable_auto_renewal/success.http"))
|
44
|
-
end
|
45
|
-
|
46
|
-
it "builds the correct request" do
|
47
|
-
subject.disable_auto_renewal("example.com")
|
48
|
-
|
49
|
-
expect(WebMock).to have_requested(:delete, "https://api.zone/v1/domains/example.com/auto_renewal").
|
50
|
-
with(headers: { 'Accept' => 'application/json' })
|
51
|
-
end
|
52
|
-
|
53
|
-
it "returns the domain" do
|
54
|
-
result = subject.disable_auto_renewal("example.com")
|
55
|
-
|
56
|
-
expect(result).to be_a(Dnsimple::Struct::Domain)
|
57
|
-
expect(result.id).to be_a(Fixnum)
|
58
|
-
end
|
59
|
-
|
60
|
-
context "when the domain does not exist" do
|
61
|
-
it "raises NotFoundError" do
|
62
|
-
stub_request(:delete, %r[/v1]).
|
63
|
-
to_return(read_fixture("domains/notfound-domain.http"))
|
64
|
-
|
65
|
-
expect {
|
66
|
-
subject.disable_auto_renewal("example.com")
|
67
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
end
|
@@ -1,146 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Dnsimple::Client, ".domains / forwards" do
|
4
|
-
|
5
|
-
subject { described_class.new(api_endpoint: "https://api.zone", username: "user", api_token: "token").domains }
|
6
|
-
|
7
|
-
|
8
|
-
describe "#email_forwards" do
|
9
|
-
before do
|
10
|
-
stub_request(:get, %r[/v1/domains/.+/email_forwards$]).
|
11
|
-
to_return(read_fixture("domains/forwards/success.http"))
|
12
|
-
end
|
13
|
-
|
14
|
-
it "builds the correct request" do
|
15
|
-
subject.email_forwards("example.com")
|
16
|
-
|
17
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/domains/example.com/email_forwards").
|
18
|
-
with(headers: { 'Accept' => 'application/json' })
|
19
|
-
end
|
20
|
-
|
21
|
-
it "returns the records" do
|
22
|
-
results = subject.email_forwards("example.com")
|
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::EmailForward)
|
29
|
-
expect(result.id).to be_a(Fixnum)
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
context "when the domain does not exist" do
|
34
|
-
it "raises NotFoundError" do
|
35
|
-
stub_request(:get, %r[/v1]).
|
36
|
-
to_return(read_fixture("domains/notfound-domain.http"))
|
37
|
-
|
38
|
-
expect {
|
39
|
-
subject.email_forwards("example.com")
|
40
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
describe "#create_email_forward" do
|
46
|
-
before do
|
47
|
-
stub_request(:post, %r[/v1/domains/.+/email_forwards$]).
|
48
|
-
to_return(read_fixture("domains/create_forward/created.http"))
|
49
|
-
end
|
50
|
-
|
51
|
-
it "builds the correct request" do
|
52
|
-
subject.create_email_forward("example.com", { from: "john", to: "someone@example.com" })
|
53
|
-
|
54
|
-
expect(WebMock).to have_requested(:post, "https://api.zone/v1/domains/example.com/email_forwards").
|
55
|
-
with(body: { email_forward: { from: "john", to: "someone@example.com" } }).
|
56
|
-
with(headers: { 'Accept' => 'application/json' })
|
57
|
-
end
|
58
|
-
|
59
|
-
it "returns the record" do
|
60
|
-
result = subject.create_email_forward("example.com", { from: "", to: "" })
|
61
|
-
|
62
|
-
expect(result).to be_a(Dnsimple::Struct::EmailForward)
|
63
|
-
expect(result.id).to be_a(Fixnum)
|
64
|
-
end
|
65
|
-
|
66
|
-
context "when the domain does not exist" do
|
67
|
-
it "raises NotFoundError" do
|
68
|
-
stub_request(:post, %r[/v1]).
|
69
|
-
to_return(read_fixture("domains/notfound-domain.http"))
|
70
|
-
|
71
|
-
expect {
|
72
|
-
subject.create_email_forward("example.com", { from: "", to: "" })
|
73
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
end
|
77
|
-
|
78
|
-
describe "#email_forward" do
|
79
|
-
before do
|
80
|
-
stub_request(:get, %r[/v1/domains/.+/email_forwards/.+$]).
|
81
|
-
to_return(read_fixture("domains/forward/success.http"))
|
82
|
-
end
|
83
|
-
|
84
|
-
it "builds the correct request" do
|
85
|
-
subject.email_forward("example.com", 2)
|
86
|
-
|
87
|
-
expect(WebMock).to have_requested(:get, "https://api.zone/v1/domains/example.com/email_forwards/2").
|
88
|
-
with(headers: { 'Accept' => 'application/json' })
|
89
|
-
end
|
90
|
-
|
91
|
-
it "returns the record" do
|
92
|
-
result = subject.email_forward("example.com", 2)
|
93
|
-
|
94
|
-
expect(result).to be_a(Dnsimple::Struct::EmailForward)
|
95
|
-
expect(result.id).to eq(1)
|
96
|
-
expect(result.domain_id).to eq(1111)
|
97
|
-
expect(result.from).to eq("sender@dnsimple-sandbox.com")
|
98
|
-
expect(result.to).to eq("receiver@example.com")
|
99
|
-
expect(result.created_at).to eq("2014-12-16T12:55:13.697Z")
|
100
|
-
expect(result.updated_at).to eq("2014-12-16T12:55:13.697Z")
|
101
|
-
end
|
102
|
-
|
103
|
-
context "when forward does not exist" do
|
104
|
-
it "raises NotFoundError" do
|
105
|
-
stub_request(:get, %r[/v1]).
|
106
|
-
to_return(read_fixture("domains/notfound-forward.http"))
|
107
|
-
|
108
|
-
expect {
|
109
|
-
subject.email_forward("example.com", 2)
|
110
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
111
|
-
end
|
112
|
-
end
|
113
|
-
end
|
114
|
-
|
115
|
-
describe "#delete_email_forward" do
|
116
|
-
before do
|
117
|
-
stub_request(:delete, %r[/v1/domains/.+/email_forwards/.+$]).
|
118
|
-
to_return(read_fixture("domains/delete_forward/success.http"))
|
119
|
-
end
|
120
|
-
|
121
|
-
it "builds the correct request" do
|
122
|
-
subject.delete_email_forward("example.com", 2)
|
123
|
-
|
124
|
-
expect(WebMock).to have_requested(:delete, "https://api.zone/v1/domains/example.com/email_forwards/2").
|
125
|
-
with(headers: { 'Accept' => 'application/json' })
|
126
|
-
end
|
127
|
-
|
128
|
-
it "returns nothing" do
|
129
|
-
result = subject.delete_email_forward("example.com", 2)
|
130
|
-
|
131
|
-
expect(result).to be_truthy
|
132
|
-
end
|
133
|
-
|
134
|
-
context "when the forward does not exist" do
|
135
|
-
it "raises NotFoundError" do
|
136
|
-
stub_request(:delete, %r[/v1]).
|
137
|
-
to_return(read_fixture("domains/notfound-forward.http"))
|
138
|
-
|
139
|
-
expect {
|
140
|
-
subject.delete_email_forward("example.com", 2)
|
141
|
-
}.to raise_error(Dnsimple::NotFoundError)
|
142
|
-
end
|
143
|
-
end
|
144
|
-
end
|
145
|
-
|
146
|
-
end
|