Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle pagination #4

Merged
merged 1 commit into from
May 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions lib/psenv/retriever.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,16 @@ def ssm
end

def parameters
ssm.
get_parameters_by_path(path: @path, with_decryption: true).
parameters
parameters = []
response = ssm.get_parameters_by_path(path: @path, with_decryption: true)
parameters << response.parameters

while response.next_page?
response = response.next_page
parameters << response.parameters
end

parameters.flatten
rescue StandardError => error
raise RetrieveError, error
end
Expand Down
30 changes: 29 additions & 1 deletion spec/retriever_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

subject { Psenv::Retriever.new("/psenv/test").call }

context "with a successful request" do
context "with a single page request" do
before(:each) do
allow(ssm).to receive(:get_parameters_by_path) {
OpenStruct.new(
Expand All @@ -60,6 +60,34 @@
end
end

context "with multiple pages" do
before(:each) do
allow(ssm).to receive(:get_parameters_by_path) {
OpenStruct.new(
parameters: [{
name: "/psenv/test/API_KEY",
value: "value",
type: "String",
version: 1,
}],
next_page?: true,
next_page: OpenStruct.new(
parameters: [{
name: "/psenv/test/CLIENT_KEY",
value: "value",
type: "String",
version: 1,
}],
),
)
}
end

it "returns both parameters" do
expect(subject).to eq("API_KEY" => "value", "CLIENT_KEY" => "value")
end
end

context "when the request fails" do
before(:each) { allow(ssm).to receive(:get_parameters_by_path).and_raise }

Expand Down