2021-10-27 15:23:28 +05:30
import setWindowLocation from 'helpers/set_window_location_helper' ;
2021-07-02 01:05:55 +05:30
import { TEST _HOST } from 'helpers/test_constants' ;
2019-03-02 22:35:43 +05:30
import * as urlUtils from '~/lib/utils/url_utility' ;
2018-11-08 19:23:39 +05:30
2020-03-13 15:44:24 +05:30
const shas = {
valid : [
'ad9be38573f9ee4c4daec22673478c2dd1d81cd8' ,
'76e07a692f65a2f4fd72f107a3e83908bea9b7eb' ,
'9dd8f215b1e8605b1d59eaf9df1178081cda0aaf' ,
'f2e0be58c4091b033203bae1cc0302febd54117d' ,
] ,
invalid : [
'zd9be38573f9ee4c4daec22673478c2dd1d81cd8' ,
':6e07a692f65a2f4fd72f107a3e83908bea9b7eb' ,
'-dd8f215b1e8605b1d59eaf9df1178081cda0aaf' ,
' 2e0be58c4091b033203bae1cc0302febd54117d' ,
] ,
} ;
2021-10-27 15:23:28 +05:30
beforeEach ( ( ) => {
setWindowLocation ( TEST _HOST ) ;
} ) ;
2019-09-04 21:01:54 +05:30
2018-11-08 19:23:39 +05:30
describe ( 'URL utility' , ( ) => {
describe ( 'webIDEUrl' , ( ) => {
afterEach ( ( ) => {
gon . relative _url _root = '' ;
} ) ;
2020-03-13 15:44:24 +05:30
it ( 'escapes special characters' , ( ) => {
expect ( urlUtils . webIDEUrl ( '/gitlab-org/gitlab-#-foss/merge_requests/1' ) ) . toBe (
'/-/ide/project/gitlab-org/gitlab-%23-foss/merge_requests/1' ,
) ;
} ) ;
2018-11-08 19:23:39 +05:30
describe ( 'without relative_url_root' , ( ) => {
it ( 'returns IDE path with route' , ( ) => {
2019-12-04 20:38:33 +05:30
expect ( urlUtils . webIDEUrl ( '/gitlab-org/gitlab-foss/merge_requests/1' ) ) . toBe (
'/-/ide/project/gitlab-org/gitlab-foss/merge_requests/1' ,
2018-11-08 19:23:39 +05:30
) ;
} ) ;
} ) ;
describe ( 'with relative_url_root' , ( ) => {
beforeEach ( ( ) => {
gon . relative _url _root = '/gitlab' ;
} ) ;
it ( 'returns IDE path with route' , ( ) => {
2019-12-04 20:38:33 +05:30
expect ( urlUtils . webIDEUrl ( '/gitlab/gitlab-org/gitlab-foss/merge_requests/1' ) ) . toBe (
'/gitlab/-/ide/project/gitlab-org/gitlab-foss/merge_requests/1' ,
2018-11-08 19:23:39 +05:30
) ;
} ) ;
} ) ;
} ) ;
2019-02-15 15:39:39 +05:30
2019-10-12 21:52:04 +05:30
describe ( 'getParameterValues' , ( ) => {
beforeEach ( ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( 'https://gitlab.com?test=passing&multiple=1&multiple=2' ) ;
2019-10-12 21:52:04 +05:30
} ) ;
it ( 'returns empty array for no params' , ( ) => {
expect ( urlUtils . getParameterValues ( ) ) . toEqual ( [ ] ) ;
} ) ;
it ( 'returns empty array for non-matching params' , ( ) => {
expect ( urlUtils . getParameterValues ( 'notFound' ) ) . toEqual ( [ ] ) ;
} ) ;
it ( 'returns single match' , ( ) => {
expect ( urlUtils . getParameterValues ( 'test' ) ) . toEqual ( [ 'passing' ] ) ;
} ) ;
it ( 'returns multiple matches' , ( ) => {
expect ( urlUtils . getParameterValues ( 'multiple' ) ) . toEqual ( [ '1' , '2' ] ) ;
} ) ;
it ( 'accepts url as second arg' , ( ) => {
const url = 'https://gitlab.com?everything=works' ;
expect ( urlUtils . getParameterValues ( 'everything' , url ) ) . toEqual ( [ 'works' ] ) ;
expect ( urlUtils . getParameterValues ( 'test' , url ) ) . toEqual ( [ ] ) ;
} ) ;
} ) ;
2019-02-15 15:39:39 +05:30
describe ( 'mergeUrlParams' , ( ) => {
2020-05-24 23:13:21 +05:30
const { mergeUrlParams } = urlUtils ;
2019-02-15 15:39:39 +05:30
it ( 'adds w' , ( ) => {
2020-05-24 23:13:21 +05:30
expect ( mergeUrlParams ( { w : 1 } , '#frag' ) ) . toBe ( '?w=1#frag' ) ;
expect ( mergeUrlParams ( { w : 1 } , '' ) ) . toBe ( '?w=1' ) ;
expect ( mergeUrlParams ( { w : 1 } , '/path#frag' ) ) . toBe ( '/path?w=1#frag' ) ;
expect ( mergeUrlParams ( { w : 1 } , 'https://host/path' ) ) . toBe ( 'https://host/path?w=1' ) ;
expect ( mergeUrlParams ( { w : 1 } , 'https://host/path#frag' ) ) . toBe ( 'https://host/path?w=1#frag' ) ;
expect ( mergeUrlParams ( { w : 1 } , 'https://h/p?k1=v1#frag' ) ) . toBe ( 'https://h/p?k1=v1&w=1#frag' ) ;
expect ( mergeUrlParams ( { w : 'null' } , '' ) ) . toBe ( '?w=null' ) ;
} ) ;
2019-03-02 22:35:43 +05:30
2020-05-24 23:13:21 +05:30
it ( 'adds multiple params' , ( ) => {
expect ( mergeUrlParams ( { a : 1 , b : 2 , c : 3 } , '#frag' ) ) . toBe ( '?a=1&b=2&c=3#frag' ) ;
2019-02-15 15:39:39 +05:30
} ) ;
it ( 'updates w' , ( ) => {
2020-05-24 23:13:21 +05:30
expect ( mergeUrlParams ( { w : 2 } , '/path?w=1#frag' ) ) . toBe ( '/path?w=2#frag' ) ;
expect ( mergeUrlParams ( { w : 2 } , 'https://host/path?w=1' ) ) . toBe ( 'https://host/path?w=2' ) ;
2019-02-15 15:39:39 +05:30
} ) ;
2020-05-24 23:13:21 +05:30
it ( 'removes null w' , ( ) => {
expect ( mergeUrlParams ( { w : null } , '?w=1#frag' ) ) . toBe ( '#frag' ) ;
expect ( mergeUrlParams ( { w : null } , '/path?w=1#frag' ) ) . toBe ( '/path#frag' ) ;
expect ( mergeUrlParams ( { w : null } , 'https://host/path?w=1' ) ) . toBe ( 'https://host/path' ) ;
expect ( mergeUrlParams ( { w : null } , 'https://host/path?w=1#frag' ) ) . toBe (
'https://host/path#frag' ,
) ;
expect ( mergeUrlParams ( { w : null } , 'https://h/p?k1=v1&w=1#frag' ) ) . toBe (
'https://h/p?k1=v1#frag' ,
) ;
2019-02-15 15:39:39 +05:30
} ) ;
2020-05-24 23:13:21 +05:30
it ( 'adds and updates encoded param values' , ( ) => {
expect ( mergeUrlParams ( { foo : '&' , q : '?' } , '?foo=%23#frag' ) ) . toBe ( '?foo=%26&q=%3F#frag' ) ;
expect ( mergeUrlParams ( { foo : 'a value' } , '' ) ) . toBe ( '?foo=a%20value' ) ;
expect ( mergeUrlParams ( { foo : 'a value' } , '?foo=1' ) ) . toBe ( '?foo=a%20value' ) ;
} ) ;
it ( 'adds and updates encoded param names' , ( ) => {
expect ( mergeUrlParams ( { 'a name' : 1 } , '' ) ) . toBe ( '?a%20name=1' ) ;
expect ( mergeUrlParams ( { 'a name' : 2 } , '?a%20name=1' ) ) . toBe ( '?a%20name=2' ) ;
expect ( mergeUrlParams ( { 'a name' : null } , '?a%20name=1' ) ) . toBe ( '' ) ;
2019-03-02 22:35:43 +05:30
} ) ;
2019-12-04 20:38:33 +05:30
it ( 'treats "+" as "%20"' , ( ) => {
2020-05-24 23:13:21 +05:30
expect ( mergeUrlParams ( { ref : 'bogus' } , '?a=lorem+ipsum&ref=charlie' ) ) . toBe (
2019-12-04 20:38:33 +05:30
'?a=lorem%20ipsum&ref=bogus' ,
) ;
} ) ;
2020-05-24 23:13:21 +05:30
it ( 'treats question marks and slashes as part of the query' , ( ) => {
expect ( mergeUrlParams ( { ending : '!' } , '?ending=?&foo=bar' ) ) . toBe ( '?ending=!&foo=bar' ) ;
expect ( mergeUrlParams ( { ending : '!' } , 'https://host/path?ending=?&foo=bar' ) ) . toBe (
'https://host/path?ending=!&foo=bar' ,
) ;
expect ( mergeUrlParams ( { ending : '?' } , '?ending=!&foo=bar' ) ) . toBe ( '?ending=%3F&foo=bar' ) ;
expect ( mergeUrlParams ( { ending : '?' } , 'https://host/path?ending=!&foo=bar' ) ) . toBe (
'https://host/path?ending=%3F&foo=bar' ,
) ;
expect ( mergeUrlParams ( { ending : '!' , op : '+' } , '?ending=?&op=/' ) ) . toBe ( '?ending=!&op=%2B' ) ;
expect ( mergeUrlParams ( { ending : '!' , op : '+' } , 'https://host/path?ending=?&op=/' ) ) . toBe (
'https://host/path?ending=!&op=%2B' ,
) ;
expect ( mergeUrlParams ( { op : '+' } , '?op=/&foo=bar' ) ) . toBe ( '?op=%2B&foo=bar' ) ;
expect ( mergeUrlParams ( { op : '+' } , 'https://host/path?op=/&foo=bar' ) ) . toBe (
'https://host/path?op=%2B&foo=bar' ,
) ;
} ) ;
2020-10-24 23:57:45 +05:30
2020-11-24 15:15:51 +05:30
it ( 'sorts params in alphabetical order with sort option' , ( ) => {
expect ( mergeUrlParams ( { c : 'c' , b : 'b' , a : 'a' } , 'https://host/path' , { sort : true } ) ) . toBe (
'https://host/path?a=a&b=b&c=c' ,
) ;
expect (
mergeUrlParams ( { alpha : 'alpha' } , 'https://host/path?op=/&foo=bar' , { sort : true } ) ,
) . toBe ( 'https://host/path?alpha=alpha&foo=bar&op=%2F' ) ;
} ) ;
2020-10-24 23:57:45 +05:30
describe ( 'with spread array option' , ( ) => {
const spreadArrayOptions = { spreadArrays : true } ;
it ( 'maintains multiple values' , ( ) => {
expect ( mergeUrlParams ( { } , '?array[]=foo&array[]=bar' , spreadArrayOptions ) ) . toBe (
'?array[]=foo&array[]=bar' ,
) ;
} ) ;
it ( 'overrides multiple values with one' , ( ) => {
expect (
mergeUrlParams ( { array : [ 'baz' ] } , '?array[]=foo&array[]=bar' , spreadArrayOptions ) ,
) . toBe ( '?array[]=baz' ) ;
} ) ;
it ( 'removes existing params' , ( ) => {
expect (
mergeUrlParams ( { array : null } , '?array[]=foo&array[]=bar' , spreadArrayOptions ) ,
) . toBe ( '' ) ;
} ) ;
it ( 'removes existing params and keeps others' , ( ) => {
expect (
mergeUrlParams (
{ array : null } ,
'?array[]=foo&array[]=bar&other=quis' ,
spreadArrayOptions ,
) ,
) . toBe ( '?other=quis' ) ;
} ) ;
it ( 'removes existing params along others' , ( ) => {
expect (
mergeUrlParams (
{ array : null , other : 'quis' } ,
'?array[]=foo&array[]=bar' ,
spreadArrayOptions ,
) ,
) . toBe ( '?other=quis' ) ;
} ) ;
it ( 'handles empty arrays along other parameters' , ( ) => {
expect ( mergeUrlParams ( { array : [ ] , other : 'quis' } , '?array=baz' , spreadArrayOptions ) ) . toBe (
'?array[]=&other=quis' ,
) ;
} ) ;
it ( 'handles multiple values along other parameters' , ( ) => {
expect (
mergeUrlParams (
{ array : [ 'foo' , 'bar' ] , other : 'quis' } ,
'?array=baz' ,
spreadArrayOptions ,
) ,
) . toBe ( '?array[]=foo&array[]=bar&other=quis' ) ;
} ) ;
it ( 'handles array values with encoding' , ( ) => {
expect (
mergeUrlParams ( { array : [ 'foo+' , 'bar,baz' ] } , '?array[]=%2Fbaz' , spreadArrayOptions ) ,
) . toBe ( '?array[]=foo%2B&array[]=bar%2Cbaz' ) ;
} ) ;
it ( 'handles multiple arrays' , ( ) => {
expect (
mergeUrlParams (
{ array1 : [ 'foo+' , 'bar,baz' ] , array2 : [ 'quis' , 'quux' ] } ,
'?array1[]=%2Fbaz' ,
spreadArrayOptions ,
) ,
) . toBe ( '?array1[]=foo%2B&array1[]=bar%2Cbaz&array2[]=quis&array2[]=quux' ) ;
} ) ;
} ) ;
describe ( 'without spread array option' , ( ) => {
it ( 'maintains multiple values' , ( ) => {
expect ( mergeUrlParams ( { } , '?array=foo%2Cbar' ) ) . toBe ( '?array=foo%2Cbar' ) ;
} ) ;
it ( 'overrides multiple values with one' , ( ) => {
expect ( mergeUrlParams ( { array : [ 'baz' ] } , '?array=foo%2Cbar' ) ) . toBe ( '?array=baz' ) ;
} ) ;
it ( 'removes existing params' , ( ) => {
expect ( mergeUrlParams ( { array : null } , '?array=foo%2Cbar' ) ) . toBe ( '' ) ;
} ) ;
it ( 'removes existing params and keeps others' , ( ) => {
expect ( mergeUrlParams ( { array : null } , '?array=foo&array=bar&other=quis' ) ) . toBe (
'?other=quis' ,
) ;
} ) ;
it ( 'removes existing params along others' , ( ) => {
expect ( mergeUrlParams ( { array : null , other : 'quis' } , '?array=foo&array=bar' ) ) . toBe (
'?other=quis' ,
) ;
} ) ;
it ( 'handles empty arrays along other parameters' , ( ) => {
expect ( mergeUrlParams ( { array : [ ] , other : 'quis' } , '?array=baz' ) ) . toBe (
'?array=&other=quis' ,
) ;
} ) ;
it ( 'handles multiple values along other parameters' , ( ) => {
expect ( mergeUrlParams ( { array : [ 'foo' , 'bar' ] , other : 'quis' } , '?array=baz' ) ) . toBe (
'?array=foo%2Cbar&other=quis' ,
) ;
} ) ;
it ( 'handles array values with encoding' , ( ) => {
expect ( mergeUrlParams ( { array : [ 'foo+' , 'bar,baz' ] } , '?array=%2Fbaz' ) ) . toBe (
'?array=foo%2B%2Cbar%2Cbaz' ,
) ;
} ) ;
it ( 'handles multiple arrays' , ( ) => {
expect (
mergeUrlParams (
{ array1 : [ 'foo+' , 'bar,baz' ] , array2 : [ 'quis' , 'quux' ] } ,
'?array1=%2Fbaz' ,
) ,
) . toBe ( '?array1=foo%2B%2Cbar%2Cbaz&array2=quis%2Cquux' ) ;
} ) ;
} ) ;
2019-03-02 22:35:43 +05:30
} ) ;
describe ( 'removeParams' , ( ) => {
describe ( 'when url is passed' , ( ) => {
it ( 'removes query param with encoded ampersand' , ( ) => {
const url = urlUtils . removeParams ( [ 'filter' ] , '/mail?filter=n%3Djoe%26l%3Dhome' ) ;
expect ( url ) . toBe ( '/mail' ) ;
} ) ;
it ( 'should remove param when url has no other params' , ( ) => {
const url = urlUtils . removeParams ( [ 'size' ] , '/feature/home?size=5' ) ;
expect ( url ) . toBe ( '/feature/home' ) ;
} ) ;
it ( 'should remove param when url has other params' , ( ) => {
const url = urlUtils . removeParams ( [ 'size' ] , '/feature/home?q=1&size=5&f=html' ) ;
expect ( url ) . toBe ( '/feature/home?q=1&f=html' ) ;
} ) ;
it ( 'should remove param and preserve fragment' , ( ) => {
const url = urlUtils . removeParams ( [ 'size' ] , '/feature/home?size=5#H2' ) ;
expect ( url ) . toBe ( '/feature/home#H2' ) ;
} ) ;
it ( 'should remove multiple params' , ( ) => {
const url = urlUtils . removeParams ( [ 'z' , 'a' ] , '/home?z=11111&l=en_US&a=true#H2' ) ;
expect ( url ) . toBe ( '/home?l=en_US#H2' ) ;
} ) ;
} ) ;
} ) ;
2019-12-21 20:55:43 +05:30
describe ( 'doesHashExistInUrl' , ( ) => {
2021-09-30 23:02:18 +05:30
beforeEach ( ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( '#note_1' ) ;
2021-09-30 23:02:18 +05:30
} ) ;
2019-12-21 20:55:43 +05:30
2021-09-30 23:02:18 +05:30
it ( 'should return true when the given string exists in the URL hash' , ( ) => {
2019-12-21 20:55:43 +05:30
expect ( urlUtils . doesHashExistInUrl ( 'note_' ) ) . toBe ( true ) ;
} ) ;
it ( 'should return false when the given string does not exist in the URL hash' , ( ) => {
expect ( urlUtils . doesHashExistInUrl ( 'doesnotexist' ) ) . toBe ( false ) ;
} ) ;
} ) ;
2020-03-13 15:44:24 +05:30
describe ( 'urlContainsSha' , ( ) => {
it ( 'returns true when there is a valid 40-character SHA1 hash in the URL' , ( ) => {
2021-03-08 18:12:59 +05:30
shas . valid . forEach ( ( sha ) => {
2020-03-13 15:44:24 +05:30
expect (
urlUtils . urlContainsSha ( { url : ` http://urlstuff/ ${ sha } /moreurlstuff ` } ) ,
) . toBeTruthy ( ) ;
} ) ;
} ) ;
it ( 'returns false when there is not a valid 40-character SHA1 hash in the URL' , ( ) => {
2021-03-08 18:12:59 +05:30
shas . invalid . forEach ( ( str ) => {
2020-03-13 15:44:24 +05:30
expect ( urlUtils . urlContainsSha ( { url : ` http://urlstuff/ ${ str } /moreurlstuff ` } ) ) . toBeFalsy ( ) ;
} ) ;
} ) ;
} ) ;
describe ( 'getShaFromUrl' , ( ) => {
let validUrls = [ ] ;
let invalidUrls = [ ] ;
beforeAll ( ( ) => {
2021-03-08 18:12:59 +05:30
validUrls = shas . valid . map ( ( sha ) => ` http://urlstuff/ ${ sha } /moreurlstuff ` ) ;
invalidUrls = shas . invalid . map ( ( str ) => ` http://urlstuff/ ${ str } /moreurlstuff ` ) ;
2020-03-13 15:44:24 +05:30
} ) ;
it ( 'returns the valid 40-character SHA1 hash from the URL' , ( ) => {
validUrls . forEach ( ( url , idx ) => {
expect ( urlUtils . getShaFromUrl ( { url } ) ) . toBe ( shas . valid [ idx ] ) ;
} ) ;
} ) ;
it ( 'returns null from a URL with no valid 40-character SHA1 hash' , ( ) => {
2021-03-08 18:12:59 +05:30
invalidUrls . forEach ( ( url ) => {
2020-03-13 15:44:24 +05:30
expect ( urlUtils . getShaFromUrl ( { url } ) ) . toBeNull ( ) ;
} ) ;
} ) ;
} ) ;
2019-03-02 22:35:43 +05:30
describe ( 'setUrlFragment' , ( ) => {
it ( 'should set fragment when url has no fragment' , ( ) => {
const url = urlUtils . setUrlFragment ( '/home/feature' , 'usage' ) ;
expect ( url ) . toBe ( '/home/feature#usage' ) ;
} ) ;
it ( 'should set fragment when url has existing fragment' , ( ) => {
const url = urlUtils . setUrlFragment ( '/home/feature#overview' , 'usage' ) ;
expect ( url ) . toBe ( '/home/feature#usage' ) ;
} ) ;
it ( 'should set fragment when given fragment includes #' , ( ) => {
const url = urlUtils . setUrlFragment ( '/home/feature#overview' , '#install' ) ;
expect ( url ) . toBe ( '/home/feature#install' ) ;
2019-02-15 15:39:39 +05:30
} ) ;
} ) ;
2019-09-04 21:01:54 +05:30
2020-03-13 15:44:24 +05:30
describe ( 'updateHistory' , ( ) => {
const state = { key : 'prop' } ;
const title = 'TITLE' ;
const url = 'URL' ;
const win = {
history : {
pushState : jest . fn ( ) ,
replaceState : jest . fn ( ) ,
} ,
} ;
beforeEach ( ( ) => {
win . history . pushState . mockReset ( ) ;
win . history . replaceState . mockReset ( ) ;
} ) ;
it ( 'should call replaceState if the replace option is true' , ( ) => {
urlUtils . updateHistory ( { state , title , url , replace : true , win } ) ;
expect ( win . history . replaceState ) . toHaveBeenCalledWith ( state , title , url ) ;
expect ( win . history . pushState ) . not . toHaveBeenCalled ( ) ;
} ) ;
it ( 'should call pushState if the replace option is missing' , ( ) => {
urlUtils . updateHistory ( { state , title , url , win } ) ;
expect ( win . history . replaceState ) . not . toHaveBeenCalled ( ) ;
expect ( win . history . pushState ) . toHaveBeenCalledWith ( state , title , url ) ;
} ) ;
it ( 'should call pushState if the replace option is false' , ( ) => {
urlUtils . updateHistory ( { state , title , url , replace : false , win } ) ;
expect ( win . history . replaceState ) . not . toHaveBeenCalled ( ) ;
expect ( win . history . pushState ) . toHaveBeenCalledWith ( state , title , url ) ;
} ) ;
} ) ;
2019-09-04 21:01:54 +05:30
describe ( 'getBaseURL' , ( ) => {
beforeEach ( ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( 'https://gitlab.com' ) ;
2019-09-04 21:01:54 +05:30
} ) ;
it ( 'returns correct base URL' , ( ) => {
expect ( urlUtils . getBaseURL ( ) ) . toBe ( 'https://gitlab.com' ) ;
} ) ;
} ) ;
2020-05-24 23:13:21 +05:30
describe ( 'isAbsolute' , ( ) => {
it . each `
url | valid
$ { 'https://gitlab.com/' } | $ { true }
$ { 'http://gitlab.com/' } | $ { true }
$ { '/users/sign_in' } | $ { false }
$ { ' https://gitlab.com' } | $ { false }
$ { 'somepath.php?url=https://gitlab.com' } | $ { false }
$ { 'notaurl' } | $ { false }
$ { '../relative_url' } | $ { false }
$ { '<a></a>' } | $ { false }
` ('returns $ valid for $ url', ({ url, valid }) => {
expect ( urlUtils . isAbsolute ( url ) ) . toBe ( valid ) ;
} ) ;
} ) ;
2019-09-04 21:01:54 +05:30
2020-05-24 23:13:21 +05:30
describe ( 'isRootRelative' , ( ) => {
it . each `
url | valid
$ { 'https://gitlab.com/' } | $ { false }
$ { 'http://gitlab.com/' } | $ { false }
$ { '/users/sign_in' } | $ { true }
$ { ' https://gitlab.com' } | $ { false }
$ { '/somepath.php?url=https://gitlab.com' } | $ { true }
$ { 'notaurl' } | $ { false }
$ { '../relative_url' } | $ { false }
$ { '<a></a>' } | $ { false }
2021-09-04 01:27:46 +05:30
$ { '//other-host.test' } | $ { false }
2020-05-24 23:13:21 +05:30
` ('returns $ valid for $ url', ({ url, valid }) => {
expect ( urlUtils . isRootRelative ( url ) ) . toBe ( valid ) ;
2019-09-04 21:01:54 +05:30
} ) ;
2020-05-24 23:13:21 +05:30
} ) ;
2019-09-04 21:01:54 +05:30
2020-05-24 23:13:21 +05:30
describe ( 'isAbsoluteOrRootRelative' , ( ) => {
it . each `
url | valid
$ { 'https://gitlab.com/' } | $ { true }
$ { 'http://gitlab.com/' } | $ { true }
$ { '/users/sign_in' } | $ { true }
$ { ' https://gitlab.com' } | $ { false }
$ { '/somepath.php?url=https://gitlab.com' } | $ { true }
$ { 'notaurl' } | $ { false }
$ { '../relative_url' } | $ { false }
$ { '<a></a>' } | $ { false }
` ('returns $ valid for $ url', ({ url, valid }) => {
expect ( urlUtils . isAbsoluteOrRootRelative ( url ) ) . toBe ( valid ) ;
2019-09-04 21:01:54 +05:30
} ) ;
} ) ;
2021-03-11 19:13:27 +05:30
describe ( 'isExternal' , ( ) => {
const gitlabUrl = 'https://gitlab.com/' ;
beforeEach ( ( ) => {
gon . gitlab _url = gitlabUrl ;
} ) ;
afterEach ( ( ) => {
gon . gitlab _url = '' ;
} ) ;
it . each `
url | urlType | external
$ { '/gitlab-org/gitlab-test/-/issues/2' } | $ { 'relative' } | $ { false }
$ { gitlabUrl } | $ { 'absolute and internal' } | $ { false }
$ { ` ${ gitlabUrl } /gitlab-org/gitlab-test ` } | $ { 'absolute and internal' } | $ { false }
$ { 'http://jira.atlassian.net/browse/IG-1' } | $ { 'absolute and external' } | $ { true }
` ('returns $ external for $ url ( $ urlType)', ({ url, external }) => {
expect ( urlUtils . isExternal ( url ) ) . toBe ( external ) ;
} ) ;
} ) ;
2020-06-23 00:09:42 +05:30
describe ( 'isBase64DataUrl' , ( ) => {
it . each `
url | valid
$ { undefined } | $ { false }
$ { 'http://gitlab.com' } | $ { false }
$ { 'data:image/png;base64,abcdef' } | $ { true }
$ { 'data:application/smil+xml;base64,abcdef' } | $ { true }
$ { 'data:application/vnd.syncml+xml;base64,abcdef' } | $ { true }
$ { 'data:application/vnd.3m.post-it-notes;base64,abcdef' } | $ { true }
$ { 'notaurl' } | $ { false }
$ { '../relative_url' } | $ { false }
$ { '<a></a>' } | $ { false }
` ('returns $ valid for $ url', ({ url, valid }) => {
expect ( urlUtils . isBase64DataUrl ( url ) ) . toBe ( valid ) ;
} ) ;
} ) ;
2021-01-03 14:25:43 +05:30
describe ( 'isBlobUrl' , ( ) => {
it . each `
url | valid
$ { undefined } | $ { false }
$ { 'blob:http://gitlab.com/abcd' } | $ { true }
$ { 'data:image/png;base64,abcdef' } | $ { false }
$ { 'notaurl' } | $ { false }
$ { '../relative_url' } | $ { false }
$ { '<a></a>' } | $ { false }
` ('returns $ valid for $ url', ({ url, valid }) => {
expect ( urlUtils . isBlobUrl ( url ) ) . toBe ( valid ) ;
} ) ;
} ) ;
2020-05-24 23:13:21 +05:30
describe ( 'relativePathToAbsolute' , ( ) => {
it . each `
path | base | result
$ { './foo' } | $ { 'bar/' } | $ { '/bar/foo' }
$ { '../john.md' } | $ { 'bar/baz/foo.php' } | $ { '/bar/john.md' }
$ { '../images/img.png' } | $ { 'bar/baz/foo.php' } | $ { '/bar/images/img.png' }
$ { '../images/Image 1.png' } | $ { 'bar/baz/foo.php' } | $ { '/bar/images/Image 1.png' }
$ { '/images/img.png' } | $ { 'bar/baz/foo.php' } | $ { '/images/img.png' }
$ { '/images/img.png' } | $ { '/bar/baz/foo.php' } | $ { '/images/img.png' }
$ { '../john.md' } | $ { '/bar/baz/foo.php' } | $ { '/bar/john.md' }
$ { '../john.md' } | $ { '///bar/baz/foo.php' } | $ { '/bar/john.md' }
$ { '/images/img.png' } | $ { 'https://gitlab.com/user/project/' } | $ { 'https://gitlab.com/images/img.png' }
$ { '../images/img.png' } | $ { 'https://gitlab.com/user/project/' } | $ { 'https://gitlab.com/user/images/img.png' }
$ { '../images/Image 1.png' } | $ { 'https://gitlab.com/user/project/' } | $ { 'https://gitlab.com/user/images/Image%201.png' }
` (
'converts relative path "$path" with base "$base" to absolute path => "expected"' ,
( { path , base , result } ) => {
expect ( urlUtils . relativePathToAbsolute ( path , base ) ) . toBe ( result ) ;
} ,
) ;
} ) ;
2019-09-04 21:01:54 +05:30
describe ( 'isSafeUrl' , ( ) => {
const absoluteUrls = [
'http://example.org' ,
'http://example.org:8080' ,
'https://example.org' ,
'https://example.org:8080' ,
'https://192.168.1.1' ,
] ;
const rootRelativeUrls = [ '/relative/link' ] ;
const relativeUrls = [ './relative/link' , '../relative/link' ] ;
const urlsWithoutHost = [ 'http://' , 'https://' , 'https:https:https:' ] ;
/* eslint-disable no-script-url */
const nonHttpUrls = [
'javascript:' ,
'javascript:alert("XSS")' ,
'jav\tascript:alert("XSS");' ,
'  javascript:alert("XSS");' ,
'ftp://192.168.1.1' ,
'file:///' ,
'file:///etc/hosts' ,
] ;
/* eslint-enable no-script-url */
// javascript:alert('XSS')
const encodedJavaScriptUrls = [
'javascript:alert('XSS')' ,
'javascript:alert('XSS')' ,
'javascript:alert('XSS')' ,
'\\u006A\\u0061\\u0076\\u0061\\u0073\\u0063\\u0072\\u0069\\u0070\\u0074\\u003A\\u0061\\u006C\\u0065\\u0072\\u0074\\u0028\\u0027\\u0058\\u0053\\u0053\\u0027\\u0029' ,
] ;
const safeUrls = [ ... absoluteUrls , ... rootRelativeUrls ] ;
const unsafeUrls = [
... relativeUrls ,
... urlsWithoutHost ,
... nonHttpUrls ,
... encodedJavaScriptUrls ,
] ;
describe ( 'with URL constructor support' , ( ) => {
2021-03-08 18:12:59 +05:30
it . each ( safeUrls ) ( 'returns true for %s' , ( url ) => {
2019-09-04 21:01:54 +05:30
expect ( urlUtils . isSafeURL ( url ) ) . toBe ( true ) ;
} ) ;
2021-03-08 18:12:59 +05:30
it . each ( unsafeUrls ) ( 'returns false for %s' , ( url ) => {
2019-09-04 21:01:54 +05:30
expect ( urlUtils . isSafeURL ( url ) ) . toBe ( false ) ;
} ) ;
} ) ;
} ) ;
describe ( 'getWebSocketProtocol' , ( ) => {
it . each `
protocol | expectation
$ { 'http:' } | $ { 'ws:' }
$ { 'https:' } | $ { 'wss:' }
` ('returns " $ expectation" with " $ protocol" protocol', ({ protocol, expectation }) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( ` ${ protocol } //example.com ` ) ;
2019-09-04 21:01:54 +05:30
expect ( urlUtils . getWebSocketProtocol ( ) ) . toEqual ( expectation ) ;
} ) ;
} ) ;
describe ( 'getWebSocketUrl' , ( ) => {
it ( 'joins location host to path' , ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( 'http://example.com' ) ;
2019-09-04 21:01:54 +05:30
const path = '/lorem/ipsum?a=bc' ;
expect ( urlUtils . getWebSocketUrl ( path ) ) . toEqual ( 'ws://example.com/lorem/ipsum?a=bc' ) ;
} ) ;
} ) ;
2020-01-01 13:55:28 +05:30
2021-09-30 23:02:18 +05:30
describe ( 'urlParamsToArray' , ( ) => {
it ( 'returns empty array for empty querystring' , ( ) => {
expect ( urlUtils . urlParamsToArray ( '' ) ) . toEqual ( [ ] ) ;
} ) ;
it ( 'should decode params' , ( ) => {
expect ( urlUtils . urlParamsToArray ( '?label_name%5B%5D=test' ) [ 0 ] ) . toBe ( 'label_name[]=test' ) ;
} ) ;
it ( 'should remove the question mark from the search params' , ( ) => {
const paramsArray = urlUtils . urlParamsToArray ( '?test=thing' ) ;
expect ( paramsArray [ 0 ] [ 0 ] ) . not . toBe ( '?' ) ;
} ) ;
} ) ;
describe ( 'urlParamsToObject' , ( ) => {
it ( 'parses path for label with trailing +' , ( ) => {
// eslint-disable-next-line import/no-deprecated
expect ( urlUtils . urlParamsToObject ( 'label_name[]=label%2B' , { } ) ) . toEqual ( {
label _name : [ 'label+' ] ,
} ) ;
} ) ;
it ( 'parses path for milestone with trailing +' , ( ) => {
// eslint-disable-next-line import/no-deprecated
expect ( urlUtils . urlParamsToObject ( 'milestone_title=A%2B' , { } ) ) . toEqual ( {
milestone _title : 'A+' ,
} ) ;
} ) ;
it ( 'parses path for search terms with spaces' , ( ) => {
// eslint-disable-next-line import/no-deprecated
expect ( urlUtils . urlParamsToObject ( 'search=two+words' , { } ) ) . toEqual ( {
search : 'two words' ,
} ) ;
} ) ;
} ) ;
2020-01-01 13:55:28 +05:30
describe ( 'queryToObject' , ( ) => {
2021-09-04 01:27:46 +05:30
it . each `
2021-10-27 15:23:28 +05:30
case | query | options | result
$ { 'converts query' } | $ { '?one=1&two=2' } | $ { undefined } | $ { { one : '1' , two : '2' } }
$ { 'converts query without ?' } | $ { 'one=1&two=2' } | $ { undefined } | $ { { one : '1' , two : '2' } }
$ { 'removes undefined values' } | $ { '?one=1&two=2&three' } | $ { undefined } | $ { { one : '1' , two : '2' } }
$ { 'overwrites values with same key and does not change key' } | $ { '?one[]=1&one[]=2&two=2&two=3' } | $ { undefined } | $ { { 'one[]' : '2' , two : '3' } }
$ { 'gathers values with the same array-key, strips `[]` from key' } | $ { '?one[]=1&one[]=2&two=2&two=3' } | $ { { gatherArrays : true } } | $ { { one : [ '1' , '2' ] , two : '3' } }
$ { 'overwrites values with the same array-key name' } | $ { '?one=1&one[]=2&two=2&two=3' } | $ { { gatherArrays : true } } | $ { { one : [ '2' ] , two : '3' } }
$ { 'overwrites values with the same key name' } | $ { '?one[]=1&one=2&two=2&two=3' } | $ { { gatherArrays : true } } | $ { { one : '2' , two : '3' } }
$ { 'ignores plus symbols' } | $ { '?search=a+b' } | $ { { legacySpacesDecode : true } } | $ { { search : 'a+b' } }
$ { 'ignores plus symbols in keys' } | $ { '?search+term=a' } | $ { { legacySpacesDecode : true } } | $ { { 'search+term' : 'a' } }
$ { 'ignores plus symbols when gathering arrays' } | $ { '?search[]=a+b' } | $ { { gatherArrays : true , legacySpacesDecode : true } } | $ { { search : [ 'a+b' ] } }
$ { 'replaces plus symbols with spaces' } | $ { '?search=a+b' } | $ { undefined } | $ { { search : 'a b' } }
$ { 'replaces plus symbols in keys with spaces' } | $ { '?search+term=a' } | $ { undefined } | $ { { 'search term' : 'a' } }
$ { 'preserves square brackets in array params' } | $ { '?search[]=a&search[]=b' } | $ { { gatherArrays : true } } | $ { { search : [ 'a' , 'b' ] } }
$ { 'decodes encoded square brackets in array params' } | $ { '?search%5B%5D=a&search%5B%5D=b' } | $ { { gatherArrays : true } } | $ { { search : [ 'a' , 'b' ] } }
$ { 'replaces plus symbols when gathering arrays' } | $ { '?search[]=a+b' } | $ { { gatherArrays : true } } | $ { { search : [ 'a b' ] } }
$ { 'replaces plus symbols when gathering arrays for values with same key' } | $ { '?search[]=a+b&search[]=c+d' } | $ { { gatherArrays : true } } | $ { { search : [ 'a b' , 'c d' ] } }
2021-09-04 01:27:46 +05:30
` (' $ case', ({ query, options, result }) => {
expect ( urlUtils . queryToObject ( query , options ) ) . toEqual ( result ) ;
2020-11-24 15:15:51 +05:30
} ) ;
2020-01-01 13:55:28 +05:30
} ) ;
2021-09-30 23:02:18 +05:30
describe ( 'getParameterByName' , ( ) => {
const { getParameterByName } = urlUtils ;
it ( 'should return valid parameter' , ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( '?scope=all&p=2' ) ;
2021-09-30 23:02:18 +05:30
expect ( getParameterByName ( 'p' ) ) . toEqual ( '2' ) ;
expect ( getParameterByName ( 'scope' ) ) . toBe ( 'all' ) ;
} ) ;
it ( 'should return invalid parameter' , ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( '?scope=all&p=2' ) ;
2021-09-30 23:02:18 +05:30
expect ( getParameterByName ( 'fakeParameter' ) ) . toBe ( null ) ;
} ) ;
it ( 'should return a parameter with spaces' , ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( '?search=my terms' ) ;
2021-09-30 23:02:18 +05:30
expect ( getParameterByName ( 'search' ) ) . toBe ( 'my terms' ) ;
} ) ;
it ( 'should return a parameter with encoded spaces' , ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( '?search=my%20terms' ) ;
2021-09-30 23:02:18 +05:30
expect ( getParameterByName ( 'search' ) ) . toBe ( 'my terms' ) ;
} ) ;
it ( 'should return a parameter with plus signs as spaces' , ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( '?search=my+terms' ) ;
2021-09-30 23:02:18 +05:30
expect ( getParameterByName ( 'search' ) ) . toBe ( 'my terms' ) ;
} ) ;
it ( 'should return valid parameters if search is provided' , ( ) => {
expect ( getParameterByName ( 'foo' , 'foo=bar' ) ) . toBe ( 'bar' ) ;
expect ( getParameterByName ( 'foo' , '?foo=bar' ) ) . toBe ( 'bar' ) ;
expect ( getParameterByName ( 'manan' , 'foo=bar&manan=canchu' ) ) . toBe ( 'canchu' ) ;
expect ( getParameterByName ( 'manan' , '?foo=bar&manan=canchu' ) ) . toBe ( 'canchu' ) ;
} ) ;
} ) ;
2020-01-01 13:55:28 +05:30
describe ( 'objectToQuery' , ( ) => {
it ( 'converts search query object back into a search query' , ( ) => {
const searchQueryObject = { one : '1' , two : '2' } ;
expect ( urlUtils . objectToQuery ( searchQueryObject ) ) . toEqual ( 'one=1&two=2' ) ;
} ) ;
2021-09-30 23:02:18 +05:30
it ( 'returns empty string when `params` is undefined, null or empty string' , ( ) => {
expect ( urlUtils . objectToQuery ( ) ) . toBe ( '' ) ;
expect ( urlUtils . objectToQuery ( '' ) ) . toBe ( '' ) ;
} ) ;
it ( 'returns query string with values of `params`' , ( ) => {
const singleQueryParams = { foo : true } ;
const multipleQueryParams = { foo : true , bar : true } ;
expect ( urlUtils . objectToQuery ( singleQueryParams ) ) . toBe ( 'foo=true' ) ;
expect ( urlUtils . objectToQuery ( multipleQueryParams ) ) . toBe ( 'foo=true&bar=true' ) ;
} ) ;
2020-01-01 13:55:28 +05:30
} ) ;
2021-01-03 14:25:43 +05:30
describe ( 'cleanLeadingSeparator' , ( ) => {
it . each `
path | expected
$ { '/foo/bar' } | $ { 'foo/bar' }
$ { 'foo/bar' } | $ { 'foo/bar' }
$ { '//foo/bar' } | $ { 'foo/bar' }
$ { '/./foo/bar' } | $ { './foo/bar' }
$ { '' } | $ { '' }
` (' $ path becomes $ expected', ({ path, expected }) => {
expect ( urlUtils . cleanLeadingSeparator ( path ) ) . toBe ( expected ) ;
} ) ;
} ) ;
2020-01-01 13:55:28 +05:30
describe ( 'joinPaths' , ( ) => {
it . each `
paths | expected
$ { [ 'foo' , 'bar' ] } | $ { 'foo/bar' }
$ { [ 'foo/' , 'bar' ] } | $ { 'foo/bar' }
$ { [ 'foo//' , 'bar' ] } | $ { 'foo/bar' }
$ { [ 'abc/' , '/def' ] } | $ { 'abc/def' }
$ { [ 'foo' , '/bar' ] } | $ { 'foo/bar' }
$ { [ 'foo' , '/bar/' ] } | $ { 'foo/bar/' }
$ { [ 'foo' , '//bar/' ] } | $ { 'foo/bar/' }
$ { [ 'foo' , '' , '/bar' ] } | $ { 'foo/bar' }
$ { [ 'foo' , '/bar' , '' ] } | $ { 'foo/bar' }
$ { [ '/' , '' , 'foo/bar/ ' , '' , '/ninja' ] } | $ { '/foo/bar/ /ninja' }
$ { [ '' , '/ninja' , '/' , ' ' , '' , 'bar' , ' ' ] } | $ { '/ninja/ /bar/ ' }
$ { [ 'http://something/bar/' , 'foo' ] } | $ { 'http://something/bar/foo' }
$ { [ 'foo/bar' , null , 'ninja' , null ] } | $ { 'foo/bar/ninja' }
$ { [ null , 'abc/def' , 'zoo' ] } | $ { 'abc/def/zoo' }
$ { [ '' , '' , '' ] } | $ { '' }
$ { [ '///' , '/' , '//' ] } | $ { '/' }
` ('joins paths $ paths => $ expected', ({ paths, expected }) => {
expect ( urlUtils . joinPaths ( ... paths ) ) . toBe ( expected ) ;
} ) ;
} ) ;
2021-01-03 14:25:43 +05:30
describe ( 'stripFinalUrlSegment' , ( ) => {
it . each `
path | expected
$ { 'http://fake.domain/twitter/typeahead-js/-/tags/v0.11.0' } | $ { 'http://fake.domain/twitter/typeahead-js/-/tags/' }
$ { 'http://fake.domain/bar/cool/-/nested/content' } | $ { 'http://fake.domain/bar/cool/-/nested/' }
$ { 'http://fake.domain/bar/cool?q="search"' } | $ { 'http://fake.domain/bar/' }
$ { 'http://fake.domain/bar/cool#link-to-something' } | $ { 'http://fake.domain/bar/' }
` ('stripFinalUrlSegment $ path => $ expected', ({ path, expected }) => {
expect ( urlUtils . stripFinalUrlSegment ( path ) ) . toBe ( expected ) ;
} ) ;
} ) ;
2020-01-01 13:55:28 +05:30
describe ( 'escapeFileUrl' , ( ) => {
it ( 'encodes URL excluding the slashes' , ( ) => {
expect ( urlUtils . escapeFileUrl ( '/foo-bar/file.md' ) ) . toBe ( '/foo-bar/file.md' ) ;
expect ( urlUtils . escapeFileUrl ( 'foo bar/file.md' ) ) . toBe ( 'foo%20bar/file.md' ) ;
expect ( urlUtils . escapeFileUrl ( 'foo/bar/file.md' ) ) . toBe ( 'foo/bar/file.md' ) ;
} ) ;
} ) ;
2020-03-13 15:44:24 +05:30
describe ( 'urlIsDifferent' , ( ) => {
2021-10-27 15:23:28 +05:30
const current = 'http://current.test/' ;
2020-03-13 15:44:24 +05:30
beforeEach ( ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( current ) ;
2020-03-13 15:44:24 +05:30
} ) ;
it ( 'should compare against the window location if no compare value is provided' , ( ) => {
expect ( urlUtils . urlIsDifferent ( 'different' ) ) . toBeTruthy ( ) ;
2021-10-27 15:23:28 +05:30
expect ( urlUtils . urlIsDifferent ( current ) ) . toBeFalsy ( ) ;
2020-03-13 15:44:24 +05:30
} ) ;
it ( 'should use the provided compare value' , ( ) => {
2021-10-27 15:23:28 +05:30
expect ( urlUtils . urlIsDifferent ( 'different' , current ) ) . toBeTruthy ( ) ;
expect ( urlUtils . urlIsDifferent ( current , current ) ) . toBeFalsy ( ) ;
2020-03-13 15:44:24 +05:30
} ) ;
} ) ;
2020-01-01 13:55:28 +05:30
describe ( 'setUrlParams' , ( ) => {
it ( 'adds new params as query string' , ( ) => {
const url = 'https://gitlab.com/test' ;
expect (
urlUtils . setUrlParams ( { group _id : 'gitlab-org' , project _id : 'my-project' } , url ) ,
) . toEqual ( 'https://gitlab.com/test?group_id=gitlab-org&project_id=my-project' ) ;
} ) ;
it ( 'updates an existing parameter' , ( ) => {
const url = 'https://gitlab.com/test?group_id=gitlab-org&project_id=my-project' ;
expect ( urlUtils . setUrlParams ( { project _id : 'gitlab-test' } , url ) ) . toEqual (
'https://gitlab.com/test?group_id=gitlab-org&project_id=gitlab-test' ,
) ;
} ) ;
it ( "removes the project_id param when it's value is null" , ( ) => {
const url = 'https://gitlab.com/test?group_id=gitlab-org&project_id=my-project' ;
expect ( urlUtils . setUrlParams ( { project _id : null } , url ) ) . toEqual (
'https://gitlab.com/test?group_id=gitlab-org' ,
) ;
} ) ;
2021-09-04 01:27:46 +05:30
it ( 'adds parameters from arrays' , ( ) => {
2020-01-01 13:55:28 +05:30
const url = 'https://gitlab.com/test' ;
2021-09-04 01:27:46 +05:30
expect ( urlUtils . setUrlParams ( { labels : [ 'foo' , 'bar' ] } , url ) ) . toEqual (
'https://gitlab.com/test?labels=foo&labels=bar' ,
2020-01-01 13:55:28 +05:30
) ;
} ) ;
2021-09-04 01:27:46 +05:30
it ( 'removes parameters from empty arrays' , ( ) => {
const url = 'https://gitlab.com/test?labels=foo&labels=bar' ;
expect ( urlUtils . setUrlParams ( { labels : [ ] } , url ) ) . toEqual ( 'https://gitlab.com/test' ) ;
} ) ;
it ( 'removes parameters from empty arrays while keeping other parameters' , ( ) => {
const url = 'https://gitlab.com/test?labels=foo&labels=bar&unrelated=unrelated' ;
expect ( urlUtils . setUrlParams ( { labels : [ ] } , url ) ) . toEqual (
'https://gitlab.com/test?unrelated=unrelated' ,
) ;
} ) ;
it ( 'adds parameters from arrays when railsArraySyntax=true' , ( ) => {
2020-07-28 23:09:34 +05:30
const url = 'https://gitlab.com/test' ;
expect ( urlUtils . setUrlParams ( { labels : [ 'foo' , 'bar' ] } , url , false , true ) ) . toEqual (
'https://gitlab.com/test?labels%5B%5D=foo&labels%5B%5D=bar' ,
) ;
} ) ;
2021-09-04 01:27:46 +05:30
it ( 'removes parameters from empty arrays when railsArraySyntax=true' , ( ) => {
const url = 'https://gitlab.com/test?labels%5B%5D=foo&labels%5B%5D=bar' ;
expect ( urlUtils . setUrlParams ( { labels : [ ] } , url , false , true ) ) . toEqual (
'https://gitlab.com/test' ,
) ;
} ) ;
2021-04-17 20:07:23 +05:30
it ( 'decodes URI when decodeURI=true' , ( ) => {
const url = 'https://gitlab.com/test' ;
expect ( urlUtils . setUrlParams ( { labels : [ 'foo' , 'bar' ] } , url , false , true , true ) ) . toEqual (
'https://gitlab.com/test?labels[]=foo&labels[]=bar' ,
) ;
} ) ;
2020-01-01 13:55:28 +05:30
it ( 'removes all existing URL params and sets a new param when cleanParams=true' , ( ) => {
const url = 'https://gitlab.com/test?group_id=gitlab-org&project_id=my-project' ;
expect ( urlUtils . setUrlParams ( { foo : 'bar' } , url , true ) ) . toEqual (
'https://gitlab.com/test?foo=bar' ,
) ;
} ) ;
} ) ;
2020-04-22 19:07:51 +05:30
describe ( 'getHTTPProtocol' , ( ) => {
const httpProtocol = 'http:' ;
const httpsProtocol = 'https:' ;
it . each ( [ [ httpProtocol ] , [ httpsProtocol ] ] ) (
'when no url passed, returns correct protocol for %i from window location' ,
2021-03-08 18:12:59 +05:30
( protocol ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( ` ${ protocol } //test.host ` ) ;
2020-04-22 19:07:51 +05:30
expect ( urlUtils . getHTTPProtocol ( ) ) . toBe ( protocol . slice ( 0 , - 1 ) ) ;
} ,
) ;
it . each `
url | expectation
$ { 'not-a-url' } | $ { undefined }
$ { 'wss://example.com' } | $ { 'wss' }
$ { 'https://foo.bar' } | $ { 'https' }
$ { 'http://foo.bar' } | $ { 'http' }
$ { 'http://foo.bar:8080' } | $ { 'http' }
` ('returns correct protocol for $ url', ({ url, expectation }) => {
expect ( urlUtils . getHTTPProtocol ( url ) ) . toBe ( expectation ) ;
} ) ;
} ) ;
2021-01-03 14:25:43 +05:30
describe ( 'stripPathTail' , ( ) => {
it . each `
path | expected
$ { '' } | $ { '' }
$ { 'index.html' } | $ { '' }
$ { '/' } | $ { '/' }
$ { '/foo/bar' } | $ { '/foo/' }
$ { '/foo/bar/' } | $ { '/foo/bar/' }
$ { '/foo/bar/index.html' } | $ { '/foo/bar/' }
` ('strips the filename from $ path => $ expected', ({ path, expected }) => {
expect ( urlUtils . stripPathTail ( path ) ) . toBe ( expected ) ;
} ) ;
} ) ;
describe ( 'getURLOrigin' , ( ) => {
it ( 'when no url passed, returns correct origin from window location' , ( ) => {
2021-10-27 15:23:28 +05:30
setWindowLocation ( 'https://user:pass@origin.test:1234/foo/bar?foo=1#bar' ) ;
expect ( urlUtils . getURLOrigin ( ) ) . toBe ( 'https://origin.test:1234' ) ;
2021-01-03 14:25:43 +05:30
} ) ;
it . each `
url | expectation
$ { 'not-a-url' } | $ { null }
$ { 'wss://example.com' } | $ { 'wss://example.com' }
$ { 'https://foo.bar/foo/bar' } | $ { 'https://foo.bar' }
` ('returns correct origin for $ url', ({ url, expectation }) => {
expect ( urlUtils . getURLOrigin ( url ) ) . toBe ( expectation ) ;
} ) ;
} ) ;
2021-03-11 19:13:27 +05:30
describe ( 'encodeSaferUrl' , ( ) => {
it . each `
character | input | output
$ { ' ' } | $ { '/url/hello 1.jpg' } | $ { '/url/hello%201.jpg' }
$ { '#' } | $ { '/url/hello#1.jpg' } | $ { '/url/hello%231.jpg' }
$ { '!' } | $ { '/url/hello!.jpg' } | $ { '/url/hello%21.jpg' }
$ { '~' } | $ { '/url/hello~.jpg' } | $ { '/url/hello%7E.jpg' }
$ { '*' } | $ { '/url/hello*.jpg' } | $ { '/url/hello%2A.jpg' }
$ { "'" } | $ { "/url/hello'.jpg" } | $ { '/url/hello%27.jpg' }
$ { '(' } | $ { '/url/hello(.jpg' } | $ { '/url/hello%28.jpg' }
$ { ')' } | $ { '/url/hello).jpg' } | $ { '/url/hello%29.jpg' }
$ { '?' } | $ { '/url/hello?.jpg' } | $ { '/url/hello%3F.jpg' }
$ { '=' } | $ { '/url/hello=.jpg' } | $ { '/url/hello%3D.jpg' }
$ { '+' } | $ { '/url/hello+.jpg' } | $ { '/url/hello%2B.jpg' }
$ { '&' } | $ { '/url/hello&.jpg' } | $ { '/url/hello%26.jpg' }
` (
'properly escapes `$character` characters while retaining the integrity of the URL' ,
( { input , output } ) => {
expect ( urlUtils . encodeSaferUrl ( input ) ) . toBe ( output ) ;
} ,
) ;
it . each `
character | input
$ { '/, .' } | $ { '/url/hello.png' }
$ { '\\d' } | $ { '/url/hello123.png' }
$ { '-' } | $ { '/url/hello-123.png' }
$ { '_' } | $ { '/url/hello_123.png' }
` ('makes no changes to unproblematic characters ( $ character)', ({ input }) => {
expect ( urlUtils . encodeSaferUrl ( input ) ) . toBe ( input ) ;
} ) ;
} ) ;
2021-07-02 01:05:55 +05:30
describe ( 'isSameOriginUrl' , ( ) => {
// eslint-disable-next-line no-script-url
const javascriptUrl = 'javascript:alert(1)' ;
it . each `
url | expected
$ { TEST _HOST } | $ { true }
$ { ` ${ TEST _HOST } /a/path ` } | $ { true }
$ { '//test.host/no-protocol' } | $ { true }
$ { '/a/root/relative/path' } | $ { true }
$ { 'a/relative/path' } | $ { true }
$ { '#hash' } | $ { true }
$ { '?param=foo' } | $ { true }
$ { '' } | $ { true }
$ { '../../../' } | $ { true }
$ { ` ${ TEST _HOST } :8080/wrong-port ` } | $ { false }
$ { 'ws://test.host/wrong-protocol' } | $ { false }
$ { 'http://phishing.test' } | $ { false }
$ { '//phishing.test' } | $ { false }
$ { '//invalid:url' } | $ { false }
$ { javascriptUrl } | $ { false }
$ { 'data:,Hello%2C%20World%21' } | $ { false }
$ { null } | $ { false }
$ { undefined } | $ { false }
` ('returns $ expected given $ url', ({ url, expected }) => {
expect ( urlUtils . isSameOriginUrl ( url ) ) . toBe ( expected ) ;
} ) ;
} ) ;
2018-11-08 19:23:39 +05:30
} ) ;