BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
670e1d74
Commit
670e1d74
authored
Mar 31, 2017
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change order of specs
parent
c4d4f4d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
41 deletions
+42
-41
common_utils_spec.js
spec/javascripts/lib/utils/common_utils_spec.js
+42
-41
No files found.
spec/javascripts/lib/utils/common_utils_spec.js
View file @
670e1d74
...
@@ -79,13 +79,54 @@ require('~/lib/utils/common_utils');
...
@@ -79,13 +79,54 @@ require('~/lib/utils/common_utils');
});
});
});
});
describe
(
'gl.utils.setParamInURL'
,
()
=>
{
afterEach
(()
=>
{
window
.
history
.
pushState
({},
null
,
''
);
});
it
(
'should return the parameter'
,
()
=>
{
window
.
history
.
replaceState
({},
null
,
''
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
156
)).
toBe
(
'?page=156'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
'156'
)).
toBe
(
'?page=156'
);
});
it
(
'should update the existing parameter when its a number'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'?page=15'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
16
)).
toBe
(
'?page=16'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
'16'
)).
toBe
(
'?page=16'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
true
)).
toBe
(
'?page=true'
);
});
it
(
'should update the existing parameter when its a string'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'?scope=all'
);
expect
(
gl
.
utils
.
setParamInURL
(
'scope'
,
'finished'
)).
toBe
(
'?scope=finished'
);
});
it
(
'should update the existing parameter when more than one parameter exists'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'?scope=all&page=15'
);
expect
(
gl
.
utils
.
setParamInURL
(
'scope'
,
'finished'
)).
toBe
(
'?scope=finished&page=15'
);
});
it
(
'should add a new parameter to the end of the existing ones'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'?scope=all'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
16
)).
toBe
(
'?scope=all&page=16'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
'16'
)).
toBe
(
'?scope=all&page=16'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
true
)).
toBe
(
'?scope=all&page=true'
);
});
});
describe
(
'gl.utils.getParameterByName'
,
()
=>
{
describe
(
'gl.utils.getParameterByName'
,
()
=>
{
beforeEach
(()
=>
{
beforeEach
(()
=>
{
window
.
history
.
pushState
({},
null
,
'?scope=all&p=2'
);
window
.
history
.
pushState
({},
null
,
'?scope=all&p=2'
);
});
});
afterEach
(()
=>
{
afterEach
(()
=>
{
window
.
history
.
pushState
({},
null
,
''
);
window
.
history
.
replaceState
({},
null
,
null
);
});
});
it
(
'should return valid parameter'
,
()
=>
{
it
(
'should return valid parameter'
,
()
=>
{
...
@@ -269,45 +310,5 @@ require('~/lib/utils/common_utils');
...
@@ -269,45 +310,5 @@ require('~/lib/utils/common_utils');
});
});
},
10000
);
},
10000
);
});
});
describe
(
'gl.utils.setParamInURL'
,
()
=>
{
afterEach
(()
=>
{
window
.
history
.
pushState
({},
null
,
''
);
});
it
(
'should return the parameter'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
''
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
156
)).
toBe
(
'?page=156'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
'156'
)).
toBe
(
'?page=156'
);
});
it
(
'should update the existing parameter when its a number'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'?page=15'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
16
)).
toBe
(
'?page=16'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
'16'
)).
toBe
(
'?page=16'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
true
)).
toBe
(
'?page=true'
);
});
it
(
'should update the existing parameter when its a string'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'?scope=all'
);
expect
(
gl
.
utils
.
setParamInURL
(
'scope'
,
'finished'
)).
toBe
(
'?scope=finished'
);
});
it
(
'should update the existing parameter when more than one parameter exists'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'?scope=all&page=15'
);
expect
(
gl
.
utils
.
setParamInURL
(
'scope'
,
'finished'
)).
toBe
(
'?scope=finished&page=15'
);
});
it
(
'should add a new parameter to the end of the existing ones'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'?scope=all'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
16
)).
toBe
(
'?scope=all&page=16'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
'16'
)).
toBe
(
'?scope=all&page=16'
);
expect
(
gl
.
utils
.
setParamInURL
(
'page'
,
true
)).
toBe
(
'?scope=all&page=true'
);
});
});
});
});
})();
})();
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