omise 0.7.1 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/workflows/ruby.yml +27 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +27 -1
- data/LICENSE.txt +1 -1
- data/README.md +27 -45
- data/lib/omise/account.rb +12 -1
- data/lib/omise/all.rb +4 -0
- data/lib/omise/capability.rb +32 -0
- data/lib/omise/charge.rb +8 -0
- data/lib/omise/config.rb +5 -1
- data/lib/omise/dispute.rb +4 -0
- data/lib/omise/integration.rb +16 -0
- data/lib/omise/link.rb +4 -0
- data/lib/omise/receipt.rb +20 -0
- data/lib/omise/resource.rb +0 -2
- data/lib/omise/schedule.rb +4 -0
- data/lib/omise/scheduler.rb +1 -1
- data/lib/omise/source.rb +15 -0
- data/lib/omise/version.rb +1 -1
- data/test/fixtures/api.omise.co/account-get.json +2 -0
- data/test/fixtures/api.omise.co/account-patch.json +8 -0
- data/test/fixtures/api.omise.co/capability-get.json +29 -0
- data/test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/events-get.json +28 -0
- data/test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/expire-post.json +51 -0
- data/test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs/accept-patch.json +12 -0
- data/test/fixtures/api.omise.co/integrations/integration_test_5h24qlv37qyx537p1ub-get.json +12 -0
- data/test/fixtures/api.omise.co/links/link_test_55pcclmznvrv9lc7r9s-delete.json +6 -0
- data/test/fixtures/api.omise.co/receipts-get.json +90 -0
- data/test/fixtures/api.omise.co/receipts/rcpt_5ls0b8zb53qmw3mlvfz-get.json +39 -0
- data/test/fixtures/api.omise.co/schedules/schd_test_4yq7duw15p9hdrjp8oq-delete.json +1 -1
- data/test/fixtures/api.omise.co/schedules/schd_test_4yq7duw15p9hdrjp8oq-get.json +1 -0
- data/test/fixtures/api.omise.co/sources-post.json +6 -0
- data/test/fixtures/api.omise.co/sources/src_test_59trf2nxk43b5nml8z0-get.json +8 -0
- data/test/omise/test_account.rb +7 -1
- data/test/omise/test_capability.rb +30 -0
- data/test/omise/test_charge.rb +11 -0
- data/test/omise/test_dispute.rb +18 -0
- data/test/omise/test_integration.rb +12 -0
- data/test/omise/test_link.rb +7 -0
- data/test/omise/test_receipt.rb +29 -0
- data/test/omise/test_schedule.rb +8 -0
- data/test/omise/test_scheduler.rb +13 -0
- data/test/omise/test_source.rb +20 -0
- data/test/support.rb +1 -0
- metadata +42 -10
- data/circle.yml +0 -3
- data/data/ca_certificates.pem +0 -162
@@ -0,0 +1,12 @@
|
|
1
|
+
require "support"
|
2
|
+
|
3
|
+
class TestIntegration < Omise::Test
|
4
|
+
setup do
|
5
|
+
@integration = Omise::Integration.retrieve("integration_test_5h24qlv37qyx537p1ub")
|
6
|
+
end
|
7
|
+
|
8
|
+
def test_that_we_can_retrieve_an_integration
|
9
|
+
assert_instance_of Omise::Integration, @integration
|
10
|
+
assert_equal "integration_test_5h24qlv37qyx537p1ub", @integration.id
|
11
|
+
end
|
12
|
+
end
|
data/test/omise/test_link.rb
CHANGED
@@ -17,6 +17,13 @@ class TestLink < Omise::Test
|
|
17
17
|
assert_equal "link_test_55pcclmznvrv9lc7r9s", @link.id
|
18
18
|
end
|
19
19
|
|
20
|
+
def test_that_we_can_destroy_a_link
|
21
|
+
@link.destroy
|
22
|
+
|
23
|
+
assert @link.deleted
|
24
|
+
assert @link.destroyed?
|
25
|
+
end
|
26
|
+
|
20
27
|
def test_that_we_can_list_all_links
|
21
28
|
links = Omise::Link.list
|
22
29
|
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require "support"
|
2
|
+
|
3
|
+
class TestReceipt < Omise::Test
|
4
|
+
setup do
|
5
|
+
@receipt = Omise::Receipt.retrieve("rcpt_5ls0b8zb53qmw3mlvfz")
|
6
|
+
end
|
7
|
+
|
8
|
+
def test_that_we_can_list_all_receipts
|
9
|
+
receipts = Omise::Receipt.list
|
10
|
+
|
11
|
+
assert receipts
|
12
|
+
assert_instance_of Omise::List, receipts
|
13
|
+
assert_instance_of Omise::Receipt, receipts.first
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_that_we_can_retrieve_a_receipt
|
17
|
+
receipt = Omise::Receipt.retrieve("rcpt_5ls0b8zb53qmw3mlvfz")
|
18
|
+
|
19
|
+
assert receipt
|
20
|
+
assert_instance_of Omise::Receipt, receipt
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_that_we_can_reload_a_receipt
|
24
|
+
@receipt.attributes.taint
|
25
|
+
@receipt.reload
|
26
|
+
|
27
|
+
refute @receipt.attributes.tainted?
|
28
|
+
end
|
29
|
+
end
|
data/test/omise/test_schedule.rb
CHANGED
@@ -40,6 +40,14 @@ class TestSchedule < Omise::Test
|
|
40
40
|
assert @schedule.destroyed?
|
41
41
|
end
|
42
42
|
|
43
|
+
def test_that_we_can_get_correct_schedule_status_when_it_destroyed
|
44
|
+
refute @schedule.destroyed?
|
45
|
+
|
46
|
+
@schedule.destroy
|
47
|
+
|
48
|
+
assert @schedule.destroyed?
|
49
|
+
end
|
50
|
+
|
43
51
|
def test_that_we_can_list_occurences
|
44
52
|
occurrences = @schedule.occurrences
|
45
53
|
|
@@ -87,6 +87,16 @@ class TestScheduler < Omise::Test
|
|
87
87
|
assert_equal "first_monday", scheduler.to_attributes[:on][:weekday_of_month]
|
88
88
|
end
|
89
89
|
|
90
|
+
def test_we_can_set_month_with_weekday_in_other_formats
|
91
|
+
scheduler = @scheduler.every(1).month(on: "1st_monday")
|
92
|
+
|
93
|
+
assert_scheduler_attributes(@scheduler)
|
94
|
+
refute_equal scheduler.object_id, @scheduler.object_id
|
95
|
+
assert_equal 1, scheduler.to_attributes[:every]
|
96
|
+
assert_equal "month", scheduler.to_attributes[:period]
|
97
|
+
assert_equal "1st_monday", scheduler.to_attributes[:on][:weekday_of_month]
|
98
|
+
end
|
99
|
+
|
90
100
|
def test_we_can_set_months_with_weekday
|
91
101
|
scheduler = @scheduler.every(3).months(on: "last_friday")
|
92
102
|
|
@@ -155,6 +165,9 @@ class TestScheduler < Omise::Test
|
|
155
165
|
scheduler = @scheduler.parse("every month on the third Thursday until January 1st 2020")
|
156
166
|
assert_scheduler_attributes(scheduler, 1, "month", "2020-01-01", weekday_of_month: "third_thursday")
|
157
167
|
|
168
|
+
scheduler = @scheduler.parse("every month on the 2nd Monday until January 1st 2020")
|
169
|
+
assert_scheduler_attributes(scheduler, 1, "month", "2020-01-01", weekday_of_month: "2nd_monday")
|
170
|
+
|
158
171
|
scheduler = @scheduler.parse("every 3 months on 1, 2 and 3 until January 1st 2020")
|
159
172
|
assert_scheduler_attributes(scheduler, 3, "month", "2020-01-01", days_of_month: [1, 2, 3])
|
160
173
|
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require "support"
|
2
|
+
|
3
|
+
class TestSource < Omise::Test
|
4
|
+
setup do
|
5
|
+
@id = "src_test_59trf2nxk43b5nml8z0"
|
6
|
+
@source = Omise::Source.retrieve @id
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_that_we_can_create_a_source
|
10
|
+
source = Omise::Source.create
|
11
|
+
|
12
|
+
assert_instance_of Omise::Source, source
|
13
|
+
assert_equal @id, source.id
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_that_we_can_retrieve_a_source
|
17
|
+
assert_instance_of Omise::Source, @source
|
18
|
+
assert_equal @id, @source.id
|
19
|
+
end
|
20
|
+
end
|
data/test/support.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robin Clart
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -94,13 +94,14 @@ dependencies:
|
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '5.4'
|
97
|
-
description:
|
97
|
+
description:
|
98
98
|
email:
|
99
99
|
- robin@omise.co
|
100
100
|
executables: []
|
101
101
|
extensions: []
|
102
102
|
extra_rdoc_files: []
|
103
103
|
files:
|
104
|
+
- ".github/workflows/ruby.yml"
|
104
105
|
- ".gitignore"
|
105
106
|
- CHANGELOG.md
|
106
107
|
- Gemfile
|
@@ -109,14 +110,13 @@ files:
|
|
109
110
|
- Rakefile
|
110
111
|
- bin/console
|
111
112
|
- bin/rake
|
112
|
-
- circle.yml
|
113
|
-
- data/ca_certificates.pem
|
114
113
|
- lib/omise.rb
|
115
114
|
- lib/omise/account.rb
|
116
115
|
- lib/omise/all.rb
|
117
116
|
- lib/omise/attributes.rb
|
118
117
|
- lib/omise/balance.rb
|
119
118
|
- lib/omise/bank_account.rb
|
119
|
+
- lib/omise/capability.rb
|
120
120
|
- lib/omise/card.rb
|
121
121
|
- lib/omise/card_list.rb
|
122
122
|
- lib/omise/chain.rb
|
@@ -131,11 +131,13 @@ files:
|
|
131
131
|
- lib/omise/event.rb
|
132
132
|
- lib/omise/forex.rb
|
133
133
|
- lib/omise/http_logger.rb
|
134
|
+
- lib/omise/integration.rb
|
134
135
|
- lib/omise/link.rb
|
135
136
|
- lib/omise/list.rb
|
136
137
|
- lib/omise/object.rb
|
137
138
|
- lib/omise/occurrence.rb
|
138
139
|
- lib/omise/occurrence_list.rb
|
140
|
+
- lib/omise/receipt.rb
|
139
141
|
- lib/omise/recipient.rb
|
140
142
|
- lib/omise/refund.rb
|
141
143
|
- lib/omise/refund_list.rb
|
@@ -145,6 +147,7 @@ files:
|
|
145
147
|
- lib/omise/search.rb
|
146
148
|
- lib/omise/search_scope.rb
|
147
149
|
- lib/omise/singleton_resource.rb
|
150
|
+
- lib/omise/source.rb
|
148
151
|
- lib/omise/testing/resource.rb
|
149
152
|
- lib/omise/token.rb
|
150
153
|
- lib/omise/transaction.rb
|
@@ -154,7 +157,9 @@ files:
|
|
154
157
|
- lib/omise/version.rb
|
155
158
|
- omise.gemspec
|
156
159
|
- test/fixtures/api.omise.co/account-get.json
|
160
|
+
- test/fixtures/api.omise.co/account-patch.json
|
157
161
|
- test/fixtures/api.omise.co/balance-get.json
|
162
|
+
- test/fixtures/api.omise.co/capability-get.json
|
158
163
|
- test/fixtures/api.omise.co/chains-get.json
|
159
164
|
- test/fixtures/api.omise.co/chains/acch_test_57io26ws5af7plco6k1-get.json
|
160
165
|
- test/fixtures/api.omise.co/chains/acch_test_57io26ws5af7plco6k1/revoke-post.json
|
@@ -167,6 +172,8 @@ files:
|
|
167
172
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq-get.json
|
168
173
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq-patch.json
|
169
174
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/capture-post.json
|
175
|
+
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/events-get.json
|
176
|
+
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/expire-post.json
|
170
177
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/refunds-get.json
|
171
178
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/refunds-post.json
|
172
179
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/refunds/404-get.json
|
@@ -188,6 +195,7 @@ files:
|
|
188
195
|
- test/fixtures/api.omise.co/disputes/closed-get.json
|
189
196
|
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs-get.json
|
190
197
|
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs-patch.json
|
198
|
+
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs/accept-patch.json
|
191
199
|
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs/documents-get.json
|
192
200
|
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs/documents-post.json
|
193
201
|
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs/documents/docu_test_55869onwfm2g3bsw8d8-delete.json
|
@@ -197,10 +205,14 @@ files:
|
|
197
205
|
- test/fixtures/api.omise.co/events-get.json
|
198
206
|
- test/fixtures/api.omise.co/events/evnt_test_52cin5n9bb6lytxduh9-get.json
|
199
207
|
- test/fixtures/api.omise.co/forex/usd-get.json
|
208
|
+
- test/fixtures/api.omise.co/integrations/integration_test_5h24qlv37qyx537p1ub-get.json
|
200
209
|
- test/fixtures/api.omise.co/links-get.json
|
201
210
|
- test/fixtures/api.omise.co/links-post.json
|
211
|
+
- test/fixtures/api.omise.co/links/link_test_55pcclmznvrv9lc7r9s-delete.json
|
202
212
|
- test/fixtures/api.omise.co/links/link_test_55pcclmznvrv9lc7r9s-get.json
|
203
213
|
- test/fixtures/api.omise.co/occurrences/occu_test_57s33hmja9t3fs4wmop-get.json
|
214
|
+
- test/fixtures/api.omise.co/receipts-get.json
|
215
|
+
- test/fixtures/api.omise.co/receipts/rcpt_5ls0b8zb53qmw3mlvfz-get.json
|
204
216
|
- test/fixtures/api.omise.co/recipients-get.json
|
205
217
|
- test/fixtures/api.omise.co/recipients-post.json
|
206
218
|
- test/fixtures/api.omise.co/recipients/recp_test_50894vc13y8z4v51iuc-delete.json
|
@@ -212,6 +224,8 @@ files:
|
|
212
224
|
- test/fixtures/api.omise.co/schedules/schd_test_4yq7duw15p9hdrjp8oq-delete.json
|
213
225
|
- test/fixtures/api.omise.co/schedules/schd_test_4yq7duw15p9hdrjp8oq-get.json
|
214
226
|
- test/fixtures/api.omise.co/search-get-scope-charge.json
|
227
|
+
- test/fixtures/api.omise.co/sources-post.json
|
228
|
+
- test/fixtures/api.omise.co/sources/src_test_59trf2nxk43b5nml8z0-get.json
|
215
229
|
- test/fixtures/api.omise.co/transactions-get.json
|
216
230
|
- test/fixtures/api.omise.co/transactions/trxn_test_4yq7duwb9jts1vxgqua-get.json
|
217
231
|
- test/fixtures/api.omise.co/transactions/trxn_test_4yqafnvlztbf3908vs1-get.json
|
@@ -226,6 +240,7 @@ files:
|
|
226
240
|
- test/omise/test_account.rb
|
227
241
|
- test/omise/test_attributes.rb
|
228
242
|
- test/omise/test_balance.rb
|
243
|
+
- test/omise/test_capability.rb
|
229
244
|
- test/omise/test_card.rb
|
230
245
|
- test/omise/test_chain.rb
|
231
246
|
- test/omise/test_charge.rb
|
@@ -236,9 +251,11 @@ files:
|
|
236
251
|
- test/omise/test_event.rb
|
237
252
|
- test/omise/test_forex.rb
|
238
253
|
- test/omise/test_http_logger.rb
|
254
|
+
- test/omise/test_integration.rb
|
239
255
|
- test/omise/test_link.rb
|
240
256
|
- test/omise/test_list.rb
|
241
257
|
- test/omise/test_occurrence.rb
|
258
|
+
- test/omise/test_receipt.rb
|
242
259
|
- test/omise/test_recipient.rb
|
243
260
|
- test/omise/test_refund.rb
|
244
261
|
- test/omise/test_resource.rb
|
@@ -246,6 +263,7 @@ files:
|
|
246
263
|
- test/omise/test_scheduler.rb
|
247
264
|
- test/omise/test_search.rb
|
248
265
|
- test/omise/test_search_scope.rb
|
266
|
+
- test/omise/test_source.rb
|
249
267
|
- test/omise/test_token.rb
|
250
268
|
- test/omise/test_transaction.rb
|
251
269
|
- test/omise/test_transfer.rb
|
@@ -255,7 +273,7 @@ homepage: https://www.omise.co/
|
|
255
273
|
licenses:
|
256
274
|
- MIT
|
257
275
|
metadata: {}
|
258
|
-
post_install_message:
|
276
|
+
post_install_message:
|
259
277
|
rdoc_options: []
|
260
278
|
require_paths:
|
261
279
|
- lib
|
@@ -270,14 +288,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
270
288
|
- !ruby/object:Gem::Version
|
271
289
|
version: '0'
|
272
290
|
requirements: []
|
273
|
-
|
274
|
-
|
275
|
-
signing_key:
|
291
|
+
rubygems_version: 3.0.3
|
292
|
+
signing_key:
|
276
293
|
specification_version: 4
|
277
294
|
summary: Omise Ruby client
|
278
295
|
test_files:
|
279
296
|
- test/fixtures/api.omise.co/account-get.json
|
297
|
+
- test/fixtures/api.omise.co/account-patch.json
|
280
298
|
- test/fixtures/api.omise.co/balance-get.json
|
299
|
+
- test/fixtures/api.omise.co/capability-get.json
|
281
300
|
- test/fixtures/api.omise.co/chains-get.json
|
282
301
|
- test/fixtures/api.omise.co/chains/acch_test_57io26ws5af7plco6k1-get.json
|
283
302
|
- test/fixtures/api.omise.co/chains/acch_test_57io26ws5af7plco6k1/revoke-post.json
|
@@ -290,6 +309,8 @@ test_files:
|
|
290
309
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq-get.json
|
291
310
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq-patch.json
|
292
311
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/capture-post.json
|
312
|
+
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/events-get.json
|
313
|
+
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/expire-post.json
|
293
314
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/refunds-get.json
|
294
315
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/refunds-post.json
|
295
316
|
- test/fixtures/api.omise.co/charges/chrg_test_4yq7duw15p9hdrjp8oq/refunds/404-get.json
|
@@ -311,6 +332,7 @@ test_files:
|
|
311
332
|
- test/fixtures/api.omise.co/disputes/closed-get.json
|
312
333
|
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs-get.json
|
313
334
|
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs-patch.json
|
335
|
+
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs/accept-patch.json
|
314
336
|
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs/documents-get.json
|
315
337
|
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs/documents-post.json
|
316
338
|
- test/fixtures/api.omise.co/disputes/dspt_test_5089off452g5m5te7xs/documents/docu_test_55869onwfm2g3bsw8d8-delete.json
|
@@ -320,10 +342,14 @@ test_files:
|
|
320
342
|
- test/fixtures/api.omise.co/events-get.json
|
321
343
|
- test/fixtures/api.omise.co/events/evnt_test_52cin5n9bb6lytxduh9-get.json
|
322
344
|
- test/fixtures/api.omise.co/forex/usd-get.json
|
345
|
+
- test/fixtures/api.omise.co/integrations/integration_test_5h24qlv37qyx537p1ub-get.json
|
323
346
|
- test/fixtures/api.omise.co/links-get.json
|
324
347
|
- test/fixtures/api.omise.co/links-post.json
|
348
|
+
- test/fixtures/api.omise.co/links/link_test_55pcclmznvrv9lc7r9s-delete.json
|
325
349
|
- test/fixtures/api.omise.co/links/link_test_55pcclmznvrv9lc7r9s-get.json
|
326
350
|
- test/fixtures/api.omise.co/occurrences/occu_test_57s33hmja9t3fs4wmop-get.json
|
351
|
+
- test/fixtures/api.omise.co/receipts-get.json
|
352
|
+
- test/fixtures/api.omise.co/receipts/rcpt_5ls0b8zb53qmw3mlvfz-get.json
|
327
353
|
- test/fixtures/api.omise.co/recipients-get.json
|
328
354
|
- test/fixtures/api.omise.co/recipients-post.json
|
329
355
|
- test/fixtures/api.omise.co/recipients/recp_test_50894vc13y8z4v51iuc-delete.json
|
@@ -335,6 +361,8 @@ test_files:
|
|
335
361
|
- test/fixtures/api.omise.co/schedules/schd_test_4yq7duw15p9hdrjp8oq-delete.json
|
336
362
|
- test/fixtures/api.omise.co/schedules/schd_test_4yq7duw15p9hdrjp8oq-get.json
|
337
363
|
- test/fixtures/api.omise.co/search-get-scope-charge.json
|
364
|
+
- test/fixtures/api.omise.co/sources-post.json
|
365
|
+
- test/fixtures/api.omise.co/sources/src_test_59trf2nxk43b5nml8z0-get.json
|
338
366
|
- test/fixtures/api.omise.co/transactions-get.json
|
339
367
|
- test/fixtures/api.omise.co/transactions/trxn_test_4yq7duwb9jts1vxgqua-get.json
|
340
368
|
- test/fixtures/api.omise.co/transactions/trxn_test_4yqafnvlztbf3908vs1-get.json
|
@@ -349,6 +377,7 @@ test_files:
|
|
349
377
|
- test/omise/test_account.rb
|
350
378
|
- test/omise/test_attributes.rb
|
351
379
|
- test/omise/test_balance.rb
|
380
|
+
- test/omise/test_capability.rb
|
352
381
|
- test/omise/test_card.rb
|
353
382
|
- test/omise/test_chain.rb
|
354
383
|
- test/omise/test_charge.rb
|
@@ -359,9 +388,11 @@ test_files:
|
|
359
388
|
- test/omise/test_event.rb
|
360
389
|
- test/omise/test_forex.rb
|
361
390
|
- test/omise/test_http_logger.rb
|
391
|
+
- test/omise/test_integration.rb
|
362
392
|
- test/omise/test_link.rb
|
363
393
|
- test/omise/test_list.rb
|
364
394
|
- test/omise/test_occurrence.rb
|
395
|
+
- test/omise/test_receipt.rb
|
365
396
|
- test/omise/test_recipient.rb
|
366
397
|
- test/omise/test_refund.rb
|
367
398
|
- test/omise/test_resource.rb
|
@@ -369,6 +400,7 @@ test_files:
|
|
369
400
|
- test/omise/test_scheduler.rb
|
370
401
|
- test/omise/test_search.rb
|
371
402
|
- test/omise/test_search_scope.rb
|
403
|
+
- test/omise/test_source.rb
|
372
404
|
- test/omise/test_token.rb
|
373
405
|
- test/omise/test_transaction.rb
|
374
406
|
- test/omise/test_transfer.rb
|
data/circle.yml
DELETED
data/data/ca_certificates.pem
DELETED
@@ -1,162 +0,0 @@
|
|
1
|
-
Country: US
|
2
|
-
Organization: Equifax
|
3
|
-
Common Name: Equifax Secure CA
|
4
|
-
-----BEGIN CERTIFICATE-----
|
5
|
-
MIIDIDCCAomgAwIBAgIENd70zzANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJV
|
6
|
-
UzEQMA4GA1UEChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2Vy
|
7
|
-
dGlmaWNhdGUgQXV0aG9yaXR5MB4XDTk4MDgyMjE2NDE1MVoXDTE4MDgyMjE2NDE1
|
8
|
-
MVowTjELMAkGA1UEBhMCVVMxEDAOBgNVBAoTB0VxdWlmYXgxLTArBgNVBAsTJEVx
|
9
|
-
dWlmYXggU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eTCBnzANBgkqhkiG9w0B
|
10
|
-
AQEFAAOBjQAwgYkCgYEAwV2xWGcIYu6gmi0fCG2RFGiYCh7+2gRvE4RiIcPRfM6f
|
11
|
-
BeC4AfBONOziipUEZKzxa1NfBbPLZ4C/QgKO/t0BCezhABRP/PvwDN1Dulsr4R+A
|
12
|
-
cJkVV5MW8Q+XarfCaCMczE1ZMKxRHjuvK9buY0V7xdlfUNLjUA86iOe/FP3gx7kC
|
13
|
-
AwEAAaOCAQkwggEFMHAGA1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEQ
|
14
|
-
MA4GA1UEChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2VydGlm
|
15
|
-
aWNhdGUgQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMBoGA1UdEAQTMBGBDzIwMTgw
|
16
|
-
ODIyMTY0MTUxWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUSOZo+SvSspXXR9gj
|
17
|
-
IBBPM5iQn9QwHQYDVR0OBBYEFEjmaPkr0rKV10fYIyAQTzOYkJ/UMAwGA1UdEwQF
|
18
|
-
MAMBAf8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUA
|
19
|
-
A4GBAFjOKer89961zgK5F7WF0bnj4JXMJTENAKaSbn+2kmOeUJXRmm/kEd5jhW6Y
|
20
|
-
7qj/WsjTVbJmcVfewCHrPSqnI0kBBIZCe/zuf6IWUrVnZ9NA2zsmWLIodz2uFHdh
|
21
|
-
1voqZiegDfqnc1zqcPGUIWVEX/r87yloqaKHee9570+sB3c4
|
22
|
-
-----END CERTIFICATE-----
|
23
|
-
|
24
|
-
Country: US
|
25
|
-
Organization: GeoTrust Inc.
|
26
|
-
Common Name: GeoTrust Global CA
|
27
|
-
-----BEGIN CERTIFICATE-----
|
28
|
-
MIIEWTCCA0GgAwIBAgIDAjpjMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT
|
29
|
-
MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i
|
30
|
-
YWwgQ0EwHhcNMTIwODI3MjA0MDQwWhcNMjIwNTIwMjA0MDQwWjBEMQswCQYDVQQG
|
31
|
-
EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3Qg
|
32
|
-
U1NMIENBIC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC5J/lP
|
33
|
-
2Pa3FT+Pzc7WjRxr/X/aVCFOA9jK0HJSFbjJgltYeYT/JHJv8ml/vJbZmnrDPqnP
|
34
|
-
UCITDoYZ2+hJ74vm1kfy/XNFCK6PrF62+J589xD/kkNm7xzU7qFGiBGJSXl6Jc5L
|
35
|
-
avDXHHYaKTzJ5P0ehdzgMWUFRxasCgdLLnBeawanazpsrwUSxLIRJdY+lynwg2xX
|
36
|
-
HNil78zs/dYS8T/bQLSuDxjTxa9Akl0HXk7+Yhc3iemLdCai7bgK52wVWzWQct3Y
|
37
|
-
TSHUQCNcj+6AMRaraFX0DjtU6QRN8MxOgV7pb1JpTr6mFm1C9VH/4AtWPJhPc48O
|
38
|
-
bxoj8cnI2d+87FLXAgMBAAGjggFUMIIBUDAfBgNVHSMEGDAWgBTAephojYn7qwVk
|
39
|
-
DBF9qn1luMrMTjAdBgNVHQ4EFgQUEUrQcznVW2kIXLo9v2SaqIscVbwwEgYDVR0T
|
40
|
-
AQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAQYwOgYDVR0fBDMwMTAvoC2gK4Yp
|
41
|
-
aHR0cDovL2NybC5nZW90cnVzdC5jb20vY3Jscy9ndGdsb2JhbC5jcmwwNAYIKwYB
|
42
|
-
BQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nZW90cnVzdC5jb20w
|
43
|
-
TAYDVR0gBEUwQzBBBgpghkgBhvhFAQc2MDMwMQYIKwYBBQUHAgEWJWh0dHA6Ly93
|
44
|
-
d3cuZ2VvdHJ1c3QuY29tL3Jlc291cmNlcy9jcHMwKgYDVR0RBCMwIaQfMB0xGzAZ
|
45
|
-
BgNVBAMTElZlcmlTaWduTVBLSS0yLTI1NDANBgkqhkiG9w0BAQUFAAOCAQEAPOU9
|
46
|
-
WhuiNyrjRs82lhg8e/GExVeGd0CdNfAS8HgY+yKk3phLeIHmTYbjkQ9C47ncoNb/
|
47
|
-
qfixeZeZ0cNsQqWSlOBdDDMYJckrlVPg5akMfUf+f1ExRF73Kh41opQy98nuwLbG
|
48
|
-
mqzemSFqI6A4ZO6jxIhzMjtQzr+t03UepvTp+UJrYLLdRf1dVwjOLVDmEjIWE4ry
|
49
|
-
lKKbR6iGf9mY5ffldnRk2JG8hBYo2CVEMH6C2Kyx5MDkFWzbtiQnAioBEoW6MYhY
|
50
|
-
R3TjuNJkpsMyWS4pS0XxW4lJLoKaxhgVRNAuZAEVaDj59vlmAwxVG52/AECu8Egn
|
51
|
-
TOCAXi25KhV6vGb4NQ==
|
52
|
-
-----END CERTIFICATE-----
|
53
|
-
|
54
|
-
Country: US
|
55
|
-
Organization: GeoTrust Inc.
|
56
|
-
Common Name: GeoTrust SSL CA - G2
|
57
|
-
-----BEGIN CERTIFICATE-----
|
58
|
-
MIIDfTCCAuagAwIBAgIDErvmMA0GCSqGSIb3DQEBBQUAME4xCzAJBgNVBAYTAlVT
|
59
|
-
MRAwDgYDVQQKEwdFcXVpZmF4MS0wKwYDVQQLEyRFcXVpZmF4IFNlY3VyZSBDZXJ0
|
60
|
-
aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDIwNTIxMDQwMDAwWhcNMTgwODIxMDQwMDAw
|
61
|
-
WjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UE
|
62
|
-
AxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
|
63
|
-
CgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9m
|
64
|
-
OSm9BXiLnTjoBbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIu
|
65
|
-
T8rxh0PBFpVXLVDviS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6c
|
66
|
-
JmTM386DGXHKTubU1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmR
|
67
|
-
Cw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5asz
|
68
|
-
PeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo4HwMIHtMB8GA1UdIwQYMBaAFEjm
|
69
|
-
aPkr0rKV10fYIyAQTzOYkJ/UMB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrM
|
70
|
-
TjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjA6BgNVHR8EMzAxMC+g
|
71
|
-
LaArhilodHRwOi8vY3JsLmdlb3RydXN0LmNvbS9jcmxzL3NlY3VyZWNhLmNybDBO
|
72
|
-
BgNVHSAERzBFMEMGBFUdIAAwOzA5BggrBgEFBQcCARYtaHR0cHM6Ly93d3cuZ2Vv
|
73
|
-
dHJ1c3QuY29tL3Jlc291cmNlcy9yZXBvc2l0b3J5MA0GCSqGSIb3DQEBBQUAA4GB
|
74
|
-
AHbhEm5OSxYShjAGsoEIz/AIx8dxfmbuwu3UOx//8PDITtZDOLC5MH0Y0FWDomrL
|
75
|
-
NhGc6Ehmo21/uBPUR/6LWlxz/K7ZGzIZOKuXNBSqltLroxwUCEm2u+WR74M26x1W
|
76
|
-
b8ravHNjkOR/ez4iyz0H7V84dJzjA1BOoa+Y7mHyhD8S
|
77
|
-
-----END CERTIFICATE-----
|
78
|
-
|
79
|
-
Country: US
|
80
|
-
Organization: GeoTrust Inc.
|
81
|
-
Common Name: GeoTrust SSL CA - G3
|
82
|
-
-----BEGIN CERTIFICATE-----
|
83
|
-
MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCB
|
84
|
-
mDELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsT
|
85
|
-
MChjKSAyMDA4IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25s
|
86
|
-
eTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhv
|
87
|
-
cml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIzNTk1OVowgZgxCzAJ
|
88
|
-
BgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg
|
89
|
-
MjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0
|
90
|
-
BgNVBAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg
|
91
|
-
LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz
|
92
|
-
+uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5jK/BGvESyiaHAKAxJcCGVn2TAppMSAmUm
|
93
|
-
hsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdEc5IiaacDiGydY8hS2pgn
|
94
|
-
5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3CIShwiP/W
|
95
|
-
JmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exAL
|
96
|
-
DmKudlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZC
|
97
|
-
huOl1UcCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYw
|
98
|
-
HQYDVR0OBBYEFMR5yo6hTgMdHNxr2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IB
|
99
|
-
AQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9cr5HqQ6XErhK8WTTOd8lNNTB
|
100
|
-
zU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbEAp7aDHdlDkQN
|
101
|
-
kv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD
|
102
|
-
AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUH
|
103
|
-
SJsMC8tJP33st/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2G
|
104
|
-
spki4cErx5z481+oghLrGREt
|
105
|
-
-----END CERTIFICATE-----
|
106
|
-
|
107
|
-
Country: US
|
108
|
-
Organization: DigiCert Inc
|
109
|
-
Common Name: DigiCert Global Root CA
|
110
|
-
-----BEGIN CERTIFICATE-----
|
111
|
-
MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh
|
112
|
-
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
113
|
-
d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD
|
114
|
-
QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT
|
115
|
-
MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j
|
116
|
-
b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG
|
117
|
-
9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB
|
118
|
-
CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97
|
119
|
-
nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt
|
120
|
-
43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P
|
121
|
-
T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4
|
122
|
-
gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO
|
123
|
-
BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR
|
124
|
-
TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw
|
125
|
-
DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr
|
126
|
-
hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg
|
127
|
-
06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF
|
128
|
-
PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls
|
129
|
-
YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk
|
130
|
-
CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=
|
131
|
-
-----END CERTIFICATE-----
|
132
|
-
|
133
|
-
Country: US
|
134
|
-
Organization: DigiCert Inc
|
135
|
-
Common Name: DigiCert SHA2 Secure Server CA
|
136
|
-
-----BEGIN CERTIFICATE-----
|
137
|
-
MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBh
|
138
|
-
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
139
|
-
d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD
|
140
|
-
QTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVT
|
141
|
-
MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIg
|
142
|
-
U2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
|
143
|
-
ANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83
|
144
|
-
nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bd
|
145
|
-
KpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f
|
146
|
-
/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGX
|
147
|
-
kujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0
|
148
|
-
/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8C
|
149
|
-
AQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYY
|
150
|
-
aHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6
|
151
|
-
Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1
|
152
|
-
oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RD
|
153
|
-
QS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8v
|
154
|
-
d3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzh
|
155
|
-
xtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB
|
156
|
-
CwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl
|
157
|
-
5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA
|
158
|
-
8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC
|
159
|
-
2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPit
|
160
|
-
c+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0
|
161
|
-
j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz
|
162
|
-
-----END CERTIFICATE-----
|