Skip to content
Snippets Groups Projects
Commit 0057ed1e authored by Valery Sizov's avatar Valery Sizov
Browse files

BB importer: Fixed after code review[ci skip]

parent a2be3954
No related branches found
No related tags found
No related merge requests found
Loading
@@ -29,7 +29,7 @@ module Bitbucket
Loading
@@ -29,7 +29,7 @@ module Bitbucket
end end
   
def fetch_next_page def fetch_next_page
parsed_response = connection.get(next_url, { pagelen: PAGE_LENGTH, sort: :created_on }) parsed_response = connection.get(next_url, pagelen: PAGE_LENGTH, sort: :created_on)
Page.new(parsed_response, type) Page.new(parsed_response, type)
end end
end end
Loading
Loading
Loading
@@ -18,6 +18,7 @@ end
Loading
@@ -18,6 +18,7 @@ end
describe Bitbucket::Collection do describe Bitbucket::Collection do
it "iterates paginator" do it "iterates paginator" do
collection = described_class.new(TestPaginator.new) collection = described_class.new(TestPaginator.new)
expect(collection.to_a).to match(["result_1_page_1", "result_2_page_1", "result_1_page_2", "result_2_page_2"]) expect(collection.to_a).to match(["result_1_page_1", "result_2_page_1", "result_1_page_2", "result_2_page_2"])
end end
end end
Loading
@@ -4,7 +4,9 @@ describe Bitbucket::Connection do
Loading
@@ -4,7 +4,9 @@ describe Bitbucket::Connection do
describe '#get' do describe '#get' do
it 'calls OAuth2::AccessToken::get' do it 'calls OAuth2::AccessToken::get' do
expect_any_instance_of(OAuth2::AccessToken).to receive(:get).and_return(double(parsed: true)) expect_any_instance_of(OAuth2::AccessToken).to receive(:get).and_return(double(parsed: true))
connection = described_class.new({}) connection = described_class.new({})
connection.get('/users') connection.get('/users')
end end
end end
Loading
@@ -12,6 +14,7 @@ describe Bitbucket::Connection do
Loading
@@ -12,6 +14,7 @@ describe Bitbucket::Connection do
describe '#expired?' do describe '#expired?' do
it 'calls connection.expired?' do it 'calls connection.expired?' do
expect_any_instance_of(OAuth2::AccessToken).to receive(:expired?).and_return(true) expect_any_instance_of(OAuth2::AccessToken).to receive(:expired?).and_return(true)
expect(described_class.new({}).expired?).to be_truthy expect(described_class.new({}).expired?).to be_truthy
end end
end end
Loading
@@ -19,7 +22,9 @@ describe Bitbucket::Connection do
Loading
@@ -19,7 +22,9 @@ describe Bitbucket::Connection do
describe '#refresh!' do describe '#refresh!' do
it 'calls connection.refresh!' do it 'calls connection.refresh!' do
response = double(token: nil, expires_at: nil, expires_in: nil, refresh_token: nil) response = double(token: nil, expires_at: nil, expires_in: nil, refresh_token: nil)
expect_any_instance_of(OAuth2::AccessToken).to receive(:refresh!).and_return(response) expect_any_instance_of(OAuth2::AccessToken).to receive(:refresh!).and_return(response)
described_class.new({}).refresh! described_class.new({}).refresh!
end end
end end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment