summaryrefslogtreecommitdiff
path: root/spec/support/helpers/keyset_pagination_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/helpers/keyset_pagination_helpers.rb')
-rw-r--r--spec/support/helpers/keyset_pagination_helpers.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/support/helpers/keyset_pagination_helpers.rb b/spec/support/helpers/keyset_pagination_helpers.rb
new file mode 100644
index 00000000000..4a476c47fda
--- /dev/null
+++ b/spec/support/helpers/keyset_pagination_helpers.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+
+module KeysetPaginationHelpers
+ def pagination_links(response)
+ link = response.headers['LINK']
+ return unless link
+
+ link.split(',').filter_map do |link|
+ match = link.match(/<(?<url>.*)>; rel="(?<rel>\w+)"/)
+ next unless match
+
+ { url: match[:url], rel: match[:rel] }
+ end
+ end
+
+ def pagination_params_from_next_url(response)
+ next_link = pagination_links(response).find { |link| link[:rel] == 'next' }
+ next_url = next_link&.fetch(:url)
+ return unless next_url
+
+ Rack::Utils.parse_query(URI.parse(next_url).query)
+ end
+end