finapps 5.0.14 → 5.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/finapps.rb +1 -0
- data/lib/finapps/rest/client.rb +1 -0
- data/lib/finapps/rest/plaid/plaid_institution_logos.rb +11 -0
- data/lib/finapps/version.rb +1 -1
- data/spec/rest/client_spec.rb +8 -0
- data/spec/rest/plaid/plaid_institution_logos_spec.rb +22 -0
- data/spec/support/fake_api.rb +14 -1
- data/spec/support/fixtures/plaid/institution/logo.png +0 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f34e507fa4a0cf5496d1993d7b064512f1a2237d8bcf79a6c566d15391575881
|
4
|
+
data.tar.gz: 3a021151ddf042be1deb2e372df83cc296e1aa88f8d283a9c0bd68b76d44b815
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ac04e060de22bb5daed4c8002a23ae7a7e992886b519b553ab7f220c26c2d3066b6cff8d7a7d0fbe52b3f9f76c35ddb1bc73438feaab84fc280d28f1a4c7c7e
|
7
|
+
data.tar.gz: 22198e41021ba24d43ee6a7feacdf3e1298b2747181f5d310a77f91657d23537937b3af22966b84a6cbb481d7d4706ce181f71e576b0208fcf99cfb8e6c085f2
|
data/lib/finapps.rb
CHANGED
@@ -36,6 +36,7 @@ require 'finapps/rest/plaid/plaid_webhooks'
|
|
36
36
|
require 'finapps/rest/plaid/plaid_consumer_institutions'
|
37
37
|
require 'finapps/rest/plaid/plaid_accounts'
|
38
38
|
require 'finapps/rest/plaid/plaid_account_permissions'
|
39
|
+
require 'finapps/rest/plaid/plaid_institution_logos'
|
39
40
|
|
40
41
|
require 'finapps/utils/query_builder'
|
41
42
|
require 'finapps/version' unless defined?(FinApps::VERSION)
|
data/lib/finapps/rest/client.rb
CHANGED
data/lib/finapps/version.rb
CHANGED
data/spec/rest/client_spec.rb
CHANGED
@@ -215,5 +215,13 @@ RSpec.describe FinApps::REST::Client do
|
|
215
215
|
)
|
216
216
|
end
|
217
217
|
end
|
218
|
+
|
219
|
+
describe '#plaid_institution_logos' do
|
220
|
+
it do
|
221
|
+
expect(subject.plaid_institution_logos).to be_an_instance_of(
|
222
|
+
FinApps::REST::PlaidInstitutionLogos
|
223
|
+
)
|
224
|
+
end
|
225
|
+
end
|
218
226
|
end
|
219
227
|
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helpers/client'
|
4
|
+
require 'rest/api_request'
|
5
|
+
|
6
|
+
RSpec.describe FinApps::REST::PlaidInstitutionLogos do
|
7
|
+
include SpecHelpers::Client
|
8
|
+
|
9
|
+
# noinspection RubyBlockToMethodReference
|
10
|
+
let(:api_client) { client }
|
11
|
+
|
12
|
+
describe '#show' do
|
13
|
+
subject(:show) do
|
14
|
+
FinApps::REST::PlaidInstitutionLogos.new(api_client).show(
|
15
|
+
:inst_id
|
16
|
+
)
|
17
|
+
end
|
18
|
+
|
19
|
+
it_behaves_like 'an API request'
|
20
|
+
it_behaves_like 'a successful request'
|
21
|
+
end
|
22
|
+
end
|
data/spec/support/fake_api.rb
CHANGED
@@ -75,6 +75,11 @@ class FakeApi < Sinatra::Base
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
+
# plaid_institution_logos
|
79
|
+
get("/#{version}/p/institution/logo/:inst_id") do
|
80
|
+
png_response 'plaid/institution/logo.png'
|
81
|
+
end
|
82
|
+
|
78
83
|
# version
|
79
84
|
get("/#{version}/version") { 'Version => 2.1.29-.20161208.172810' }
|
80
85
|
|
@@ -381,7 +386,15 @@ class FakeApi < Sinatra::Base
|
|
381
386
|
private
|
382
387
|
|
383
388
|
def json_response(response_code, file_name)
|
384
|
-
|
389
|
+
http_response :json, response_code, file_name
|
390
|
+
end
|
391
|
+
|
392
|
+
def png_response(file_name)
|
393
|
+
http_response :png, 200, file_name
|
394
|
+
end
|
395
|
+
|
396
|
+
def http_response(content_type, response_code, file_name)
|
397
|
+
content_type content_type
|
385
398
|
status response_code
|
386
399
|
File.open(File.dirname(__FILE__) + '/fixtures/' + file_name, 'rb').read
|
387
400
|
end
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: finapps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erich Quintero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-09-
|
11
|
+
date: 2019-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: finapps_core
|
@@ -315,6 +315,7 @@ files:
|
|
315
315
|
- lib/finapps/rest/plaid/plaid_account_permissions.rb
|
316
316
|
- lib/finapps/rest/plaid/plaid_accounts.rb
|
317
317
|
- lib/finapps/rest/plaid/plaid_consumer_institutions.rb
|
318
|
+
- lib/finapps/rest/plaid/plaid_institution_logos.rb
|
318
319
|
- lib/finapps/rest/plaid/plaid_resources.rb
|
319
320
|
- lib/finapps/rest/plaid/plaid_webhooks.rb
|
320
321
|
- lib/finapps/rest/portfolio_reports.rb
|
@@ -350,6 +351,7 @@ files:
|
|
350
351
|
- spec/rest/plaid/plaid_account_permissions_spec.rb
|
351
352
|
- spec/rest/plaid/plaid_accounts_spec.rb
|
352
353
|
- spec/rest/plaid/plaid_consumer_institutions_spec.rb
|
354
|
+
- spec/rest/plaid/plaid_institution_logos_spec.rb
|
353
355
|
- spec/rest/plaid/plaid_webhooks_spec.rb
|
354
356
|
- spec/rest/portfolio_reports_spec.rb
|
355
357
|
- spec/rest/portfolios_alerts_spec.rb
|
@@ -394,6 +396,7 @@ files:
|
|
394
396
|
- spec/support/fixtures/plaid/institution/consumer/list.json
|
395
397
|
- spec/support/fixtures/plaid/institution/consumer/show.json
|
396
398
|
- spec/support/fixtures/plaid/institution/consumer/show_accounts.json
|
399
|
+
- spec/support/fixtures/plaid/institution/logo.png
|
397
400
|
- spec/support/fixtures/plaid/webhook.json
|
398
401
|
- spec/support/fixtures/portfolio.json
|
399
402
|
- spec/support/fixtures/portfolio_reports.json
|
@@ -446,6 +449,7 @@ test_files:
|
|
446
449
|
- spec/rest/alert_definitions_spec.rb
|
447
450
|
- spec/rest/portfolios_consumers_spec.rb
|
448
451
|
- spec/rest/plaid/plaid_accounts_spec.rb
|
452
|
+
- spec/rest/plaid/plaid_institution_logos_spec.rb
|
449
453
|
- spec/rest/plaid/plaid_webhooks_spec.rb
|
450
454
|
- spec/rest/plaid/plaid_account_permissions_spec.rb
|
451
455
|
- spec/rest/plaid/plaid_consumer_institutions_spec.rb
|