1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
require 'spec_helper'
describe 'Elasticsearch::Model::Response::Response WillPaginate' do
before(:all) do
class ModelClass
def self.index_name; 'foo'; end
def self.document_type; 'bar'; end
def self.per_page
33
end
end
# Subclass Response so we can include WillPaginate module without conflicts with Kaminari.
class WillPaginateResponse < Elasticsearch::Model::Response::Response
include Elasticsearch::Model::Response::Pagination::WillPaginate
end
end
after(:all) do
remove_classes(ModelClass, WillPaginateResponse)
end
let(:response_document) do
{ 'took' => '5', 'timed_out' => false, '_shards' => {'one' => 'OK'},
'hits' => { 'total' => 100, 'hits' => (1..100).to_a.map { |i| { _id: i } } } }
end
let(:search) do
Elasticsearch::Model::Searching::SearchRequest.new(model, '*')
end
let(:response) do
allow(model).to receive(:client).and_return(client)
WillPaginateResponse.new(model, search, response_document).tap do |resp|
allow(resp).to receive(:client).and_return(client)
end
end
let(:client) do
double('client')
end
shared_examples_for 'a search request that can be paginated' do
describe '#offset' do
context 'when per_page and page are set' do
before do
response.per_page(3).page(3)
end
it 'sets the correct offset' do
expect(response.offset).to eq(6)
end
end
end
describe '#length' do
context 'when per_page and page are set' do
before do
response.per_page(3).page(3)
end
it 'sets the correct offset' do
expect(response.length).to eq(3)
end
end
end
describe '#paginate' do
context 'when there are no settings' do
context 'when page is set to nil' do
before do
response.paginate(page: nil)
end
it 'uses the defaults' do
expect(response.search.definition[:size]).to eq(default_per_page)
expect(response.search.definition[:from]).to eq(0)
end
end
context 'when page is set to a value' do
before do
response.paginate(page: 2)
end
it 'uses the defaults' do
expect(response.search.definition[:size]).to eq(default_per_page)
expect(response.search.definition[:from]).to eq(default_per_page)
end
end
context 'when a custom page and per_page is set' do
before do
response.paginate(page: 3, per_page: 9)
end
it 'uses the custom values' do
expect(response.search.definition[:size]).to eq(9)
expect(response.search.definition[:from]).to eq(18)
end
end
context 'fall back to first page if invalid value is provided' do
before do
response.paginate(page: -1)
end
it 'uses the custom values' do
expect(response.search.definition[:size]).to eq(default_per_page)
expect(response.search.definition[:from]).to eq(0)
end
end
end
end
describe '#page' do
context 'when a value is provided for page' do
before do
response.page(5)
end
it 'calculates the correct :size and :from' do
expect(response.search.definition[:size]).to eq(default_per_page)
expect(response.search.definition[:from]).to eq(default_per_page * 4)
end
end
context 'when a value is provided for page and per_page' do
before do
response.page(5).per_page(3)
end
it 'calculates the correct :size and :from' do
expect(response.search.definition[:size]).to eq(3)
expect(response.search.definition[:from]).to eq(12)
end
end
context 'when a value is provided for per_page and page' do
before do
response.per_page(3).page(5)
end
it 'calculates the correct :size and :from' do
expect(response.search.definition[:size]).to eq(3)
expect(response.search.definition[:from]).to eq(12)
end
end
end
describe '#current_page' do
context 'when no values are set' do
before do
response.paginate({})
end
it 'returns the first page' do
expect(response.current_page).to eq(1)
end
end
context 'when values are provided for per_page and page' do
before do
response.paginate(page: 3, per_page: 9)
end
it 'calculates the correct current page' do
expect(response.current_page).to eq(3)
end
end
context 'when #paginate has not been called on the response' do
it 'returns nil' do
expect(response.current_page).to be_nil
end
end
end
describe '#per_page' do
context 'when a value is set via the #paginate method' do
before do
response.paginate(per_page: 8)
end
it 'returns the per_page value' do
expect(response.per_page).to eq(8)
end
end
context 'when a value is set via the #per_page method' do
before do
response.per_page(8)
end
it 'returns the per_page value' do
expect(response.per_page).to eq(8)
end
end
end
describe '#total_entries' do
before do
allow(response).to receive(:results).and_return(double('results', total: 100))
end
it 'returns the total results' do
expect(response.total_entries).to eq(100)
end
end
end
context 'when the model is a single one' do
let(:model) do
ModelClass
end
let(:default_per_page) do
33
end
it_behaves_like 'a search request that can be paginated'
end
context 'when the model is a multimodel' do
let(:model) do
Elasticsearch::Model::Multimodel.new(ModelClass)
end
let(:default_per_page) do
::WillPaginate.per_page
end
it_behaves_like 'a search request that can be paginated'
end
end
|