Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
af948677
Commit
af948677
authored
Jul 19, 2018
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add spec for paginator
parent
81b5611e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
spec/lib/bitbucket_server/paginator_spec.rb
spec/lib/bitbucket_server/paginator_spec.rb
+35
-0
No files found.
spec/lib/bitbucket_server/paginator_spec.rb
0 → 100644
View file @
af948677
require
'spec_helper'
describe
BitbucketServer
::
Paginator
do
let
(
:last_page
)
{
double
(
:page
,
next?:
false
,
items:
[
'item_2'
])
}
let
(
:first_page
)
{
double
(
:page
,
next?:
true
,
next:
last_page
,
items:
[
'item_1'
])
}
let
(
:connection
)
{
instance_double
(
BitbucketServer
::
Connection
)
}
describe
'#items'
do
let
(
:paginator
)
{
described_class
.
new
(
connection
,
'http://more-data'
,
:pull_request
)
}
let
(
:page_attrs
)
{
{
'isLastPage'
=>
false
,
'nextPageStart'
=>
1
}
}
it
'return items and raises StopIteration in the end'
do
allow
(
paginator
).
to
receive
(
:fetch_next_page
).
and_return
(
first_page
)
expect
(
paginator
.
items
).
to
match
([
'item_1'
])
allow
(
paginator
).
to
receive
(
:fetch_next_page
).
and_return
(
last_page
)
expect
(
paginator
.
items
).
to
match
([
'item_2'
])
allow
(
paginator
).
to
receive
(
:fetch_next_page
).
and_return
(
nil
)
expect
{
paginator
.
items
}.
to
raise_error
(
StopIteration
)
end
it
'calls the connection with different offsets'
do
expect
(
connection
).
to
receive
(
:get
).
with
(
'http://more-data'
,
start:
0
,
limit:
BitbucketServer
::
Paginator
::
PAGE_LENGTH
).
and_return
(
page_attrs
)
expect
(
paginator
.
items
).
to
eq
([])
expect
(
connection
).
to
receive
(
:get
).
with
(
'http://more-data'
,
start:
1
,
limit:
BitbucketServer
::
Paginator
::
PAGE_LENGTH
).
and_return
({})
expect
(
paginator
.
items
).
to
eq
([])
expect
{
paginator
.
items
}.
to
raise_error
(
StopIteration
)
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment