addressfinder 1.10.0 → 1.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -20
- data/LICENSE.md +4 -4
- data/README.md +28 -4
- data/addressfinder.gemspec +9 -5
- data/lib/addressfinder/util.rb +6 -5
- data/lib/addressfinder/v1/email/batch_verification.rb +69 -0
- data/lib/addressfinder/v1/email/verification.rb +2 -2
- data/lib/addressfinder/version.rb +1 -1
- data/lib/addressfinder.rb +41 -30
- metadata +52 -43
- data/.github/workflows/ruby.yml +0 -31
- data/.gitignore +0 -11
- data/.travis.yml +0 -6
- data/Dockerfile +0 -28
- data/Gemfile +0 -3
- data/Guardfile +0 -5
- data/Rakefile +0 -7
- data/docker-compose.yml +0 -11
- data/spec/lib/addressfinder/address_autocomplete_spec.rb +0 -95
- data/spec/lib/addressfinder/address_info_spec.rb +0 -62
- data/spec/lib/addressfinder/address_search_spec.rb +0 -76
- data/spec/lib/addressfinder/bulk_spec.rb +0 -207
- data/spec/lib/addressfinder/location_info_spec.rb +0 -79
- data/spec/lib/addressfinder/location_search_spec.rb +0 -93
- data/spec/lib/addressfinder/util_spec.rb +0 -37
- data/spec/lib/addressfinder/v1/email/verification_spec.rb +0 -148
- data/spec/lib/addressfinder/v1/phone/verification_spec.rb +0 -144
- data/spec/lib/addressfinder/v2/au/verification_spec.rb +0 -187
- data/spec/lib/addressfinder/verification_spec.rb +0 -170
- data/spec/lib/addressfinder_spec.rb +0 -94
- data/spec/spec_helper.rb +0 -20
@@ -1,93 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
RSpec.describe AddressFinder::LocationSearch do
|
4
|
-
before do
|
5
|
-
AddressFinder.configure do |af|
|
6
|
-
af.api_key = 'XXX'
|
7
|
-
af.api_secret = 'YYY'
|
8
|
-
af.default_country = 'nz'
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
describe '#build_request' do
|
13
|
-
let(:locator){ AddressFinder::LocationSearch.new(params: args, http: http) }
|
14
|
-
let(:http){ AddressFinder::HTTP.new(AddressFinder.configuration) }
|
15
|
-
|
16
|
-
subject(:request_uri){ locator.send(:build_request) }
|
17
|
-
|
18
|
-
context 'with minimal arguments' do
|
19
|
-
let(:args){ {q: 'willis'} }
|
20
|
-
|
21
|
-
it { expect(request_uri).to eq('/api/nz/location.json?q=willis&key=XXX&secret=YYY') }
|
22
|
-
end
|
23
|
-
|
24
|
-
context 'with more arguments' do
|
25
|
-
let(:args){ {q: 'willis st', street: 1, max: 10} }
|
26
|
-
|
27
|
-
it { expect(request_uri).to eq('/api/nz/location.json?q=willis+st&street=1&max=10&key=XXX&secret=YYY') }
|
28
|
-
end
|
29
|
-
|
30
|
-
context 'with a country override' do
|
31
|
-
let(:args){ {q: 'willis st', country: 'au'} }
|
32
|
-
|
33
|
-
it { expect(request_uri).to eq('/api/au/location.json?q=willis+st&key=XXX&secret=YYY') }
|
34
|
-
end
|
35
|
-
|
36
|
-
context 'with a key override' do
|
37
|
-
let(:args){ {q: 'willis st', key: 'AAA'} }
|
38
|
-
|
39
|
-
it { expect(request_uri).to eq('/api/nz/location.json?q=willis+st&key=AAA&secret=YYY') }
|
40
|
-
end
|
41
|
-
|
42
|
-
context 'with a secret override' do
|
43
|
-
let(:args){ {q: 'willis st', secret: 'BBB'} }
|
44
|
-
|
45
|
-
it { expect(request_uri).to eq('/api/nz/location.json?q=willis+st&secret=BBB&key=XXX') }
|
46
|
-
end
|
47
|
-
|
48
|
-
context 'with a domain given' do
|
49
|
-
let(:args){ {q: '123', domain: 'testdomain.com'} }
|
50
|
-
|
51
|
-
it { expect(request_uri).to eq('/api/nz/location.json?q=123&domain=testdomain.com&key=XXX&secret=YYY') }
|
52
|
-
|
53
|
-
context 'given in the AF configuration' do
|
54
|
-
|
55
|
-
let(:args){ {q: '123'} }
|
56
|
-
|
57
|
-
it 'should use the config domain if set' do
|
58
|
-
AddressFinder.configuration.domain = 'anotherdomain.com'
|
59
|
-
expect(request_uri).to eq('/api/nz/location.json?q=123&domain=anotherdomain.com&key=XXX&secret=YYY')
|
60
|
-
AddressFinder.configuration.domain = nil # set back to nil after
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
describe '#build_result' do
|
67
|
-
let(:locator){ AddressFinder::LocationSearch.new(params: {q: 'ignored'}, http: nil) }
|
68
|
-
|
69
|
-
before do
|
70
|
-
locator.send('response_body=', body)
|
71
|
-
locator.send('response_status=', status)
|
72
|
-
locator.send(:build_result)
|
73
|
-
end
|
74
|
-
|
75
|
-
subject(:results){ locator.results }
|
76
|
-
|
77
|
-
context 'with completions' do
|
78
|
-
let(:body){ '{"completions":[{"a":"Willowbank","pxid":"1-.B.3l","v":0},{"a":"Willowby","pxid":"1-.3.4O","v":0}],"paid":true}' }
|
79
|
-
let(:status){ '200' }
|
80
|
-
|
81
|
-
it { expect(results.size).to eq(2) }
|
82
|
-
it { expect(results.first.class).to eq(AddressFinder::LocationSearch::Result) }
|
83
|
-
it { expect(results.first.a).to eq("Willowbank") }
|
84
|
-
end
|
85
|
-
|
86
|
-
context 'with no completions' do
|
87
|
-
let(:body){ '{"completions":[],"paid":true}' }
|
88
|
-
let(:status){ '200' }
|
89
|
-
|
90
|
-
it { expect(results).to eq([]) }
|
91
|
-
end
|
92
|
-
end
|
93
|
-
end
|
@@ -1,37 +0,0 @@
|
|
1
|
-
require 'addressfinder/util'
|
2
|
-
|
3
|
-
RSpec.describe AddressFinder::Util do
|
4
|
-
describe '.encode_and_join_params' do
|
5
|
-
subject { AddressFinder::Util.encode_and_join_params(params) }
|
6
|
-
|
7
|
-
context 'with a question mark value' do
|
8
|
-
let(:params){ {q:'?',format:'json',key:'XXX',secret:'YYY'} }
|
9
|
-
|
10
|
-
it { is_expected.to eq('q=%3F&format=json&key=XXX&secret=YYY') }
|
11
|
-
end
|
12
|
-
|
13
|
-
context 'with an ampersand value' do
|
14
|
-
let(:params){ {q:'&',format:'json',key:'XXX',secret:'YYY'} }
|
15
|
-
|
16
|
-
it { is_expected.to eq('q=%26&format=json&key=XXX&secret=YYY') }
|
17
|
-
end
|
18
|
-
|
19
|
-
context 'with a normal address value' do
|
20
|
-
let(:params){ {q:'12 high',format:'json',key:'XXX',secret:'YYY'} }
|
21
|
-
|
22
|
-
it { is_expected.to eq('q=12+high&format=json&key=XXX&secret=YYY') }
|
23
|
-
end
|
24
|
-
|
25
|
-
context 'with a blank value' do
|
26
|
-
let(:params){ {q:'',format:'json',key:'XXX',secret:'YYY'} }
|
27
|
-
|
28
|
-
it { is_expected.to eq('q=&format=json&key=XXX&secret=YYY') }
|
29
|
-
end
|
30
|
-
|
31
|
-
context 'with a nil value' do
|
32
|
-
let(:params){ {q:nil,format:'json',key:'XXX',secret:'YYY'} }
|
33
|
-
|
34
|
-
it { is_expected.to eq('q=&format=json&key=XXX&secret=YYY') }
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
@@ -1,148 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
RSpec.describe AddressFinder::V1::Email::Verification do
|
4
|
-
before do
|
5
|
-
AddressFinder.configure do |af|
|
6
|
-
af.api_key = "XXX"
|
7
|
-
af.api_secret = "YYY"
|
8
|
-
af.timeout = 5
|
9
|
-
af.retries = 3
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
let(:verification_module){ AddressFinder::V1::Email::Verification.new(**args) }
|
14
|
-
let(:http){ AddressFinder::HTTP.new(AddressFinder.configuration) }
|
15
|
-
let(:net_http){ http.send(:net_http) }
|
16
|
-
|
17
|
-
describe "#execute_request" do
|
18
|
-
let(:args){ {email: "john.doe@addressfinder.com", http: http} }
|
19
|
-
|
20
|
-
before do
|
21
|
-
WebMock.allow_net_connect!(net_http_connect_on_start: true)
|
22
|
-
allow(http).to receive(:sleep)
|
23
|
-
allow(verification_module).to receive(:request_uri).and_return("/test/path")
|
24
|
-
expect(http).to_not receive(:re_establish_connection)
|
25
|
-
end
|
26
|
-
|
27
|
-
after do
|
28
|
-
WebMock.disable_net_connect!
|
29
|
-
end
|
30
|
-
|
31
|
-
subject(:execute_request){ verification_module.send(:execute_request) }
|
32
|
-
|
33
|
-
it "retries an errored request another time before succeeding" do
|
34
|
-
expect(net_http).to receive(:do_start).twice.and_call_original
|
35
|
-
expect(net_http).to receive(:transport_request).once.and_raise(Net::OpenTimeout)
|
36
|
-
expect(net_http).to receive(:transport_request).once.and_return(double(:response, body: "OK", code: "200"))
|
37
|
-
expect(net_http).to receive(:do_finish).twice.and_call_original
|
38
|
-
execute_request
|
39
|
-
end
|
40
|
-
|
41
|
-
it "re-raises a Net::OpenTimeout error after 3 retries" do
|
42
|
-
expect(net_http).to receive(:do_start).exactly(4).times.and_call_original
|
43
|
-
expect(net_http).to receive(:transport_request).exactly(4).times.and_raise(Net::OpenTimeout)
|
44
|
-
expect(net_http).to receive(:do_finish).exactly(4).times.and_call_original
|
45
|
-
expect{execute_request}.to raise_error(Net::OpenTimeout)
|
46
|
-
end
|
47
|
-
|
48
|
-
it "re-raises a Net::ReadTimeout error after 3 retries" do
|
49
|
-
expect(net_http).to receive(:do_start).exactly(4).times.and_call_original
|
50
|
-
expect(net_http).to receive(:transport_request).exactly(4).times.and_raise(Net::ReadTimeout)
|
51
|
-
expect(net_http).to receive(:do_finish).exactly(4).times.and_call_original
|
52
|
-
expect{execute_request}.to raise_error(Net::ReadTimeout)
|
53
|
-
end
|
54
|
-
|
55
|
-
it "re-raises a SocketError error after 3 retries" do
|
56
|
-
expect(net_http).to receive(:do_start).exactly(4).times.and_call_original
|
57
|
-
expect(net_http).to receive(:transport_request).exactly(4).times.and_raise(SocketError)
|
58
|
-
expect(net_http).to receive(:do_finish).exactly(4).times.and_call_original
|
59
|
-
expect{execute_request}.to raise_error(SocketError)
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
describe "#build_request" do
|
64
|
-
subject(:request_uri){ verification_module.send(:build_request) }
|
65
|
-
|
66
|
-
context "with email argument" do
|
67
|
-
let(:args){ {email: "john.doe@addressfinder.com", http: http} }
|
68
|
-
|
69
|
-
it { expect(request_uri).to eq("/api/email/v1/verification?email=john.doe%40addressfinder.com&key=XXX&secret=YYY&format=json") }
|
70
|
-
end
|
71
|
-
|
72
|
-
context "with email and format arguments" do
|
73
|
-
let(:args){ {email: "john.doe@addressfinder.com", format: "xml", http: http} }
|
74
|
-
|
75
|
-
it { expect(request_uri).to eq("/api/email/v1/verification?email=john.doe%40addressfinder.com&format=xml&key=XXX&secret=YYY") }
|
76
|
-
end
|
77
|
-
|
78
|
-
context "with a reserved character in the email" do
|
79
|
-
let(:args){ {email: "john=doe@addressfinder.com", http: http} }
|
80
|
-
|
81
|
-
it { expect(request_uri).to eq("/api/email/v1/verification?email=john%3Ddoe%40addressfinder.com&key=XXX&secret=YYY&format=json") }
|
82
|
-
end
|
83
|
-
|
84
|
-
context "with a key override" do
|
85
|
-
let(:args){ {email: "john.doe@addressfinder.com", key: "AAA", http: http} }
|
86
|
-
|
87
|
-
it { expect(request_uri).to eq("/api/email/v1/verification?email=john.doe%40addressfinder.com&key=AAA&secret=YYY&format=json") }
|
88
|
-
end
|
89
|
-
|
90
|
-
context "with a secret override" do
|
91
|
-
let(:args){ {email: "john.doe@addressfinder.com", secret: "BBB", http: http} }
|
92
|
-
|
93
|
-
it { expect(request_uri).to eq("/api/email/v1/verification?email=john.doe%40addressfinder.com&secret=BBB&key=XXX&format=json") }
|
94
|
-
end
|
95
|
-
|
96
|
-
context "with a domain given" do
|
97
|
-
let(:args){ {email: "john.doe@addressfinder.com", domain: "testdomain.com", http: http} }
|
98
|
-
|
99
|
-
it { expect(request_uri).to eq("/api/email/v1/verification?email=john.doe%40addressfinder.com&domain=testdomain.com&key=XXX&secret=YYY&format=json") }
|
100
|
-
|
101
|
-
context "given in the AF configuration" do
|
102
|
-
let(:args){ {email: "john.doe@addressfinder.com", http: http} }
|
103
|
-
|
104
|
-
it "should use the config domain if set" do
|
105
|
-
AddressFinder.configuration.domain = "anotherdomain.com"
|
106
|
-
expect(request_uri).to eq("/api/email/v1/verification?email=john.doe%40addressfinder.com&domain=anotherdomain.com&key=XXX&secret=YYY&format=json")
|
107
|
-
AddressFinder.configuration.domain = nil # set back to nil after
|
108
|
-
end
|
109
|
-
end
|
110
|
-
end
|
111
|
-
|
112
|
-
context "with a all arguments included in request" do
|
113
|
-
let(:args){ {email: "john.doe@addressfinder.com", domain: "mysite.com", key: "AAA", secret: "BBB", format: "json", http: http} }
|
114
|
-
|
115
|
-
it { expect(request_uri).to eq("/api/email/v1/verification?email=john.doe%40addressfinder.com&domain=mysite.com&key=AAA&secret=BBB&format=json") }
|
116
|
-
end
|
117
|
-
end
|
118
|
-
|
119
|
-
describe "#build_result" do
|
120
|
-
let(:args){ {email: "ignored", http: nil} }
|
121
|
-
|
122
|
-
before do
|
123
|
-
verification_module.send("response_body=", body)
|
124
|
-
verification_module.send("response_status=", status)
|
125
|
-
end
|
126
|
-
|
127
|
-
subject(:result){ verification_module.send(:build_result) }
|
128
|
-
|
129
|
-
context "with a successful verification" do
|
130
|
-
let(:body){ '{"email_account": "john.doe", "email_domain": "addressfinder.com", "is_verified": true, "success": true}' }
|
131
|
-
let(:status){ "200" }
|
132
|
-
|
133
|
-
it { expect(result.class).to eq(AddressFinder::V1::Email::Verification::Result) }
|
134
|
-
it { expect(result.is_verified).to eq(true) }
|
135
|
-
it { expect(result.email_account).to eq("john.doe") }
|
136
|
-
end
|
137
|
-
|
138
|
-
context "with an unsuccessful verification" do
|
139
|
-
let(:body){ '{"email_account": "jane.doe", "email_domain": "addressfinder.com", "is_verified": false, "not_verified_reason": "The email account does not exist", "success": true}' }
|
140
|
-
let(:status){ "200" }
|
141
|
-
|
142
|
-
it { expect(result.class).to eq(AddressFinder::V1::Email::Verification::Result) }
|
143
|
-
it { expect(result.is_verified).to eq(false) }
|
144
|
-
it { expect(result.email_account).to eq("jane.doe") }
|
145
|
-
it { expect(result.not_verified_reason).to eq("The email account does not exist") }
|
146
|
-
end
|
147
|
-
end
|
148
|
-
end
|
@@ -1,144 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
RSpec.describe AddressFinder::V1::Phone::Verification do
|
4
|
-
before do
|
5
|
-
AddressFinder.configure do |af|
|
6
|
-
af.api_key = "XXX"
|
7
|
-
af.api_secret = "YYY"
|
8
|
-
af.timeout = 5
|
9
|
-
af.retries = 3
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
let(:verification_module){ AddressFinder::V1::Phone::Verification.new(**args) }
|
14
|
-
let(:http){ AddressFinder::HTTP.new(AddressFinder.configuration) }
|
15
|
-
let(:net_http){ http.send(:net_http) }
|
16
|
-
|
17
|
-
describe "#execute_request" do
|
18
|
-
let(:args){ {phone_number: "1800 152 363", default_country_code: "AU", http: http} }
|
19
|
-
|
20
|
-
before do
|
21
|
-
WebMock.allow_net_connect!(net_http_connect_on_start: true)
|
22
|
-
allow(http).to receive(:sleep)
|
23
|
-
allow(verification_module).to receive(:request_uri).and_return("/test/path")
|
24
|
-
expect(http).to_not receive(:re_establish_connection)
|
25
|
-
end
|
26
|
-
|
27
|
-
after do
|
28
|
-
WebMock.disable_net_connect!
|
29
|
-
end
|
30
|
-
|
31
|
-
subject(:execute_request){ verification_module.send(:execute_request) }
|
32
|
-
|
33
|
-
it "retries an errored request another time before succeeding" do
|
34
|
-
expect(net_http).to receive(:do_start).twice.and_call_original
|
35
|
-
expect(net_http).to receive(:transport_request).once.and_raise(Net::OpenTimeout)
|
36
|
-
expect(net_http).to receive(:transport_request).once.and_return(double(:response, body: "OK", code: "200"))
|
37
|
-
expect(net_http).to receive(:do_finish).twice.and_call_original
|
38
|
-
execute_request
|
39
|
-
end
|
40
|
-
|
41
|
-
it "re-raises a Net::OpenTimeout error after 3 retries" do
|
42
|
-
expect(net_http).to receive(:do_start).exactly(4).times.and_call_original
|
43
|
-
expect(net_http).to receive(:transport_request).exactly(4).times.and_raise(Net::OpenTimeout)
|
44
|
-
expect(net_http).to receive(:do_finish).exactly(4).times.and_call_original
|
45
|
-
expect{execute_request}.to raise_error(Net::OpenTimeout)
|
46
|
-
end
|
47
|
-
|
48
|
-
it "re-raises a Net::ReadTimeout error after 3 retries" do
|
49
|
-
expect(net_http).to receive(:do_start).exactly(4).times.and_call_original
|
50
|
-
expect(net_http).to receive(:transport_request).exactly(4).times.and_raise(Net::ReadTimeout)
|
51
|
-
expect(net_http).to receive(:do_finish).exactly(4).times.and_call_original
|
52
|
-
expect{execute_request}.to raise_error(Net::ReadTimeout)
|
53
|
-
end
|
54
|
-
|
55
|
-
it "re-raises a SocketError error after 3 retries" do
|
56
|
-
expect(net_http).to receive(:do_start).exactly(4).times.and_call_original
|
57
|
-
expect(net_http).to receive(:transport_request).exactly(4).times.and_raise(SocketError)
|
58
|
-
expect(net_http).to receive(:do_finish).exactly(4).times.and_call_original
|
59
|
-
expect{execute_request}.to raise_error(SocketError)
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
describe "#build_request" do
|
64
|
-
subject(:request_uri){ verification_module.send(:build_request) }
|
65
|
-
|
66
|
-
context "with phone number and default country code arguments" do
|
67
|
-
let(:args){ {phone_number: "1800 152 363", default_country_code: "AU", http: http} }
|
68
|
-
|
69
|
-
it { expect(request_uri).to eq("/api/phone/v1/verification?phone_number=1800+152+363&default_country_code=AU&key=XXX&secret=YYY&format=json") }
|
70
|
-
end
|
71
|
-
|
72
|
-
context "with a reserved character in the phone number" do
|
73
|
-
let(:args){ {phone_number: "1800= 152 363", default_country_code: "AU", http: http} }
|
74
|
-
|
75
|
-
it { expect(request_uri).to eq("/api/phone/v1/verification?phone_number=1800%3D+152+363&default_country_code=AU&key=XXX&secret=YYY&format=json") }
|
76
|
-
end
|
77
|
-
|
78
|
-
context "with a key override" do
|
79
|
-
let(:args){ {phone_number: "1800 152 363", default_country_code: "AU", key: "AAA", http: http} }
|
80
|
-
|
81
|
-
it { expect(request_uri).to eq("/api/phone/v1/verification?phone_number=1800+152+363&default_country_code=AU&key=AAA&secret=YYY&format=json") }
|
82
|
-
end
|
83
|
-
|
84
|
-
context "with a secret override" do
|
85
|
-
let(:args){ {phone_number: "1800 152 363", default_country_code: "AU", secret: "BBB", http: http} }
|
86
|
-
|
87
|
-
it { expect(request_uri).to eq("/api/phone/v1/verification?phone_number=1800+152+363&default_country_code=AU&secret=BBB&key=XXX&format=json") }
|
88
|
-
end
|
89
|
-
|
90
|
-
context "with a domain given" do
|
91
|
-
let(:args){ {phone_number: "1800 152 363", default_country_code: "AU", domain: "testdomain.com", http: http} }
|
92
|
-
|
93
|
-
it { expect(request_uri).to eq("/api/phone/v1/verification?phone_number=1800+152+363&default_country_code=AU&domain=testdomain.com&key=XXX&secret=YYY&format=json") }
|
94
|
-
|
95
|
-
context "given in the AF configuration" do
|
96
|
-
let(:args){ {phone_number: "1800 152 363", default_country_code: "AU", http: http} }
|
97
|
-
|
98
|
-
it "should use the config domain if set" do
|
99
|
-
AddressFinder.configuration.domain = "anotherdomain.com"
|
100
|
-
expect(request_uri).to eq("/api/phone/v1/verification?phone_number=1800+152+363&default_country_code=AU&domain=anotherdomain.com&key=XXX&secret=YYY&format=json")
|
101
|
-
AddressFinder.configuration.domain = nil # set back to nil after
|
102
|
-
end
|
103
|
-
end
|
104
|
-
end
|
105
|
-
|
106
|
-
context "with a all arguments included in request" do
|
107
|
-
let(:args){ {phone_number: "1800 152 363", default_country_code: "NZ", allowed_country_codes: "AU,NZ", mobile_only: true, timeout: "10", domain: "mysite.com", key: "AAA", secret: "BBB", format: "xml", http: http} }
|
108
|
-
|
109
|
-
it { expect(request_uri).to eq("/api/phone/v1/verification?phone_number=1800+152+363&default_country_code=NZ&allowed_country_codes=AU%2CNZ&mobile_only=true&timeout=10&domain=mysite.com&key=AAA&secret=BBB&format=xml") }
|
110
|
-
end
|
111
|
-
end
|
112
|
-
|
113
|
-
describe "#build_result" do
|
114
|
-
let(:args){ {phone_number: "ignored", default_country_code: "ignored", http: nil} }
|
115
|
-
|
116
|
-
before do
|
117
|
-
verification_module.send("response_body=", body)
|
118
|
-
verification_module.send("response_status=", status)
|
119
|
-
end
|
120
|
-
|
121
|
-
subject(:result){ verification_module.send(:build_result) }
|
122
|
-
|
123
|
-
context "with a successful verification" do
|
124
|
-
let(:body){ '{"raw_international": "+611800152353", "line_type": "toll_free", "line_status": "disconnected", "is_verified": true, "success": true}' }
|
125
|
-
let(:status){ "200" }
|
126
|
-
|
127
|
-
it { expect(result.class).to eq(AddressFinder::V1::Phone::Verification::Result) }
|
128
|
-
it { expect(result.is_verified).to eq(true) }
|
129
|
-
it { expect(result.raw_international).to eq("+611800152353") }
|
130
|
-
it { expect(result.line_type).to eq("toll_free") }
|
131
|
-
it { expect(result.line_status).to eq("disconnected") }
|
132
|
-
end
|
133
|
-
|
134
|
-
context "with an unsuccessful verification" do
|
135
|
-
let(:body){ '{"is_verified": false, "not_verified_reason": "Phone number format is incorrect", "not_verified_code": "INVALID_FORMAT", "success": true}' }
|
136
|
-
let(:status){ "200" }
|
137
|
-
|
138
|
-
it { expect(result.class).to eq(AddressFinder::V1::Phone::Verification::Result) }
|
139
|
-
it { expect(result.is_verified).to eq(false) }
|
140
|
-
it { expect(result.not_verified_code).to eq("INVALID_FORMAT") }
|
141
|
-
it { expect(result.not_verified_reason).to eq("Phone number format is incorrect") }
|
142
|
-
end
|
143
|
-
end
|
144
|
-
end
|
@@ -1,187 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
RSpec.describe AddressFinder::V2::Au::Verification do
|
4
|
-
before do
|
5
|
-
AddressFinder.configure do |af|
|
6
|
-
af.api_key = 'XXX'
|
7
|
-
af.api_secret = 'YYY'
|
8
|
-
af.timeout = 5
|
9
|
-
af.retries = 3
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
let(:verification_module){ AddressFinder::V2::Au::Verification.new(**args) }
|
14
|
-
let(:http){ AddressFinder::HTTP.new(AddressFinder.configuration) }
|
15
|
-
let(:net_http){ http.send(:net_http) }
|
16
|
-
|
17
|
-
describe '#execute_request' do
|
18
|
-
let(:args){ {q: "186 Willis Street", http: http} }
|
19
|
-
|
20
|
-
before do
|
21
|
-
WebMock.allow_net_connect!(net_http_connect_on_start: true)
|
22
|
-
allow(http).to receive(:sleep)
|
23
|
-
allow(verification_module).to receive(:request_uri).and_return("/test/path")
|
24
|
-
expect(http).to_not receive(:re_establish_connection)
|
25
|
-
end
|
26
|
-
|
27
|
-
after do
|
28
|
-
WebMock.disable_net_connect!
|
29
|
-
end
|
30
|
-
|
31
|
-
subject(:execute_request){ verification_module.send(:execute_request) }
|
32
|
-
|
33
|
-
it "retries an errored request another time before succeeding" do
|
34
|
-
expect(net_http).to receive(:do_start).twice.and_call_original
|
35
|
-
expect(net_http).to receive(:transport_request).once.and_raise(Net::OpenTimeout)
|
36
|
-
expect(net_http).to receive(:transport_request).once.and_return(double(:response, body: "OK", code: "200"))
|
37
|
-
expect(net_http).to receive(:do_finish).twice.and_call_original
|
38
|
-
execute_request
|
39
|
-
end
|
40
|
-
|
41
|
-
it "re-raises a Net::OpenTimeout error after 3 retries" do
|
42
|
-
expect(net_http).to receive(:do_start).exactly(4).times.and_call_original
|
43
|
-
expect(net_http).to receive(:transport_request).exactly(4).times.and_raise(Net::OpenTimeout)
|
44
|
-
expect(net_http).to receive(:do_finish).exactly(4).times.and_call_original
|
45
|
-
expect{execute_request}.to raise_error(Net::OpenTimeout)
|
46
|
-
end
|
47
|
-
|
48
|
-
it "re-raises a Net::ReadTimeout error after 3 retries" do
|
49
|
-
expect(net_http).to receive(:do_start).exactly(4).times.and_call_original
|
50
|
-
expect(net_http).to receive(:transport_request).exactly(4).times.and_raise(Net::ReadTimeout)
|
51
|
-
expect(net_http).to receive(:do_finish).exactly(4).times.and_call_original
|
52
|
-
expect{execute_request}.to raise_error(Net::ReadTimeout)
|
53
|
-
end
|
54
|
-
|
55
|
-
it "re-raises a SocketError error after 3 retries" do
|
56
|
-
expect(net_http).to receive(:do_start).exactly(4).times.and_call_original
|
57
|
-
expect(net_http).to receive(:transport_request).exactly(4).times.and_raise(SocketError)
|
58
|
-
expect(net_http).to receive(:do_finish).exactly(4).times.and_call_original
|
59
|
-
expect{execute_request}.to raise_error(SocketError)
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
describe '#build_request' do
|
64
|
-
subject(:request_uri){ verification_module.send(:build_request) }
|
65
|
-
|
66
|
-
context 'with minimal arguments' do
|
67
|
-
let(:args){ {q: '186 willis st', http: http} }
|
68
|
-
|
69
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186+willis+st&key=XXX&secret=YYY&format=json') }
|
70
|
-
end
|
71
|
-
|
72
|
-
context 'with more arguments' do
|
73
|
-
let(:args){ {q: '186 willis st', census: '2011', http: http} }
|
74
|
-
|
75
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186+willis+st&census=2011&key=XXX&secret=YYY&format=json') }
|
76
|
-
end
|
77
|
-
|
78
|
-
context 'with a state codes as an array' do
|
79
|
-
let(:args){ {q: '186 willis st', state_codes: ['ACT','NSW'], http: http} }
|
80
|
-
|
81
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186+willis+st&key=XXX&secret=YYY&state_codes[]=ACT&state_codes[]=NSW&format=json') }
|
82
|
-
end
|
83
|
-
|
84
|
-
context 'with a reserved character in the query' do
|
85
|
-
let(:args){ {q: '186=willis st', state_codes: ['ACT','NSW'], http: http} }
|
86
|
-
|
87
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186%3Dwillis+st&key=XXX&secret=YYY&state_codes[]=ACT&state_codes[]=NSW&format=json') }
|
88
|
-
end
|
89
|
-
|
90
|
-
context 'with a state codes as a string' do
|
91
|
-
let(:args){ {q: '186 willis st', state_codes: 'ACT,NSW', http: http} }
|
92
|
-
|
93
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186+willis+st&key=XXX&secret=YYY&state_codes=ACT%2CNSW&format=json') }
|
94
|
-
end
|
95
|
-
|
96
|
-
context 'with a key override' do
|
97
|
-
let(:args){ {q: '186 willis st', key: 'AAA', http: http} }
|
98
|
-
|
99
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186+willis+st&key=AAA&secret=YYY&format=json') }
|
100
|
-
end
|
101
|
-
|
102
|
-
context 'with a secret override' do
|
103
|
-
let(:args){ {q: '186 willis st', secret: 'BBB', http: http} }
|
104
|
-
|
105
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186+willis+st&key=XXX&secret=BBB&format=json') }
|
106
|
-
end
|
107
|
-
|
108
|
-
context 'with a domain given' do
|
109
|
-
let(:args){ {q: '123', domain: 'testdomain.com', http: http} }
|
110
|
-
|
111
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=123&domain=testdomain.com&key=XXX&secret=YYY&format=json') }
|
112
|
-
|
113
|
-
context 'given in the AF configuration' do
|
114
|
-
|
115
|
-
let(:args){ {q: '123', http: http} }
|
116
|
-
|
117
|
-
it 'should use the config domain if set' do
|
118
|
-
AddressFinder.configuration.domain = 'anotherdomain.com'
|
119
|
-
expect(request_uri).to eq('/api/au/address/v2/verification?q=123&domain=anotherdomain.com&key=XXX&secret=YYY&format=json')
|
120
|
-
AddressFinder.configuration.domain = nil # set back to nil after
|
121
|
-
end
|
122
|
-
end
|
123
|
-
end
|
124
|
-
|
125
|
-
context 'with a post_box exclusion' do
|
126
|
-
let(:args){ {q: '186 willis st', post_box: '0', http: http} }
|
127
|
-
|
128
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186+willis+st&post_box=0&key=XXX&secret=YYY&format=json') }
|
129
|
-
end
|
130
|
-
|
131
|
-
context 'with a gnaf request' do
|
132
|
-
let(:args){ {q: '186 willis st', gnaf: '1', http: http} }
|
133
|
-
|
134
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186+willis+st&key=XXX&secret=YYY&gnaf=1&format=json') }
|
135
|
-
end
|
136
|
-
|
137
|
-
context 'with a paf request' do
|
138
|
-
let(:args){ {q: '186 willis st', paf: '1', http: http} }
|
139
|
-
|
140
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186+willis+st&key=XXX&secret=YYY&paf=1&format=json') }
|
141
|
-
end
|
142
|
-
|
143
|
-
context 'with a all args included request' do
|
144
|
-
let(:args){ {q: '186 willis st', paf: '1', gnaf:'1', post_box:'0', state_codes:'ACT', census: '2016', domain: 'mysite.com', gps: '1', extended: '1', http: http} }
|
145
|
-
|
146
|
-
it { expect(request_uri).to eq('/api/au/address/v2/verification?q=186+willis+st&post_box=0&census=2016&domain=mysite.com&key=XXX&secret=YYY&paf=1&gnaf=1&gps=1&extended=1&state_codes=ACT&format=json') }
|
147
|
-
end
|
148
|
-
end
|
149
|
-
|
150
|
-
describe '#build_result' do
|
151
|
-
let(:args){ {q: 'ignored', http: nil} }
|
152
|
-
|
153
|
-
before do
|
154
|
-
verification_module.send('response_body=', body)
|
155
|
-
verification_module.send('response_status=', status)
|
156
|
-
end
|
157
|
-
|
158
|
-
subject(:result){ verification_module.send(:build_result) }
|
159
|
-
|
160
|
-
context 'with a successful nz result' do
|
161
|
-
let(:body){ '{"matched": true, "postal_address": "Texas"}' }
|
162
|
-
let(:status){ '200' }
|
163
|
-
|
164
|
-
it { expect(result.class).to eq(AddressFinder::V2::Au::Verification::Result) }
|
165
|
-
|
166
|
-
it { expect(result.matched).to eq(true) }
|
167
|
-
|
168
|
-
it { expect(result.postal_address).to eq("Texas") }
|
169
|
-
end
|
170
|
-
|
171
|
-
context 'with a successful au result' do
|
172
|
-
let(:body){ %Q({"matched": true, "success": true, "address": {"full_address": "Texas"}}) }
|
173
|
-
let(:status){ '200' }
|
174
|
-
|
175
|
-
it { expect(result.class).to eq(AddressFinder::V2::Au::Verification::Result) }
|
176
|
-
|
177
|
-
it { expect(result.full_address).to eq("Texas") }
|
178
|
-
end
|
179
|
-
|
180
|
-
context 'with an unfound result' do
|
181
|
-
let(:body){ '{"matched": false}' }
|
182
|
-
let(:status){ '200' }
|
183
|
-
|
184
|
-
it { expect(result).to eq(nil) }
|
185
|
-
end
|
186
|
-
end
|
187
|
-
end
|