Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
44eabdac
Commit
44eabdac
authored
May 28, 2024
by
Max Alekseenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add tests
parent
7ea03ef8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
67 additions
and
0 deletions
+67
-0
utils.test.ts
ui/marketplace/utils.test.ts
+67
-0
No files found.
ui/marketplace/utils.test.ts
0 → 100644
View file @
44eabdac
import
type
{
NextRouter
}
from
'
next/router
'
;
import
getQueryParamString
from
'
lib/router/getQueryParamString
'
;
import
removeQueryParam
from
'
lib/router/removeQueryParam
'
;
import
{
getAppUrl
}
from
'
./utils
'
;
// Mocking the dependencies
jest
.
mock
(
'
lib/router/getQueryParamString
'
);
jest
.
mock
(
'
lib/router/removeQueryParam
'
);
describe
(
'
getAppUrl
'
,
()
=>
{
let
router
:
NextRouter
;
beforeEach
(()
=>
{
router
=
{
asPath
:
'
/current/path?someParam=value
'
,
query
:
{
url
:
'
https://example.com/custom-path?query=value
'
,
},
}
as
unknown
as
NextRouter
;
});
it
(
'
should return undefined if url is undefined
'
,
()
=>
{
const
result
=
getAppUrl
(
undefined
,
router
);
expect
(
result
).
toBeUndefined
();
});
it
(
'
should return the custom url if origins match
'
,
()
=>
{
(
getQueryParamString
as
jest
.
Mock
).
mockReturnValue
(
'
https://example.com/custom-path?query=value
'
);
const
result
=
getAppUrl
(
'
https://example.com/app
'
,
router
);
expect
(
result
).
toBe
(
'
https://example.com/custom-path?query=value
'
);
});
it
(
'
should remove the query param and return original url if origins do not match
'
,
()
=>
{
(
getQueryParamString
as
jest
.
Mock
).
mockReturnValue
(
'
https://different.com/custom-path?query=value
'
);
const
result
=
getAppUrl
(
'
https://example.com/app
'
,
router
);
expect
(
result
).
toBe
(
'
https://example.com/app?someParam=value
'
);
expect
(
removeQueryParam
).
toHaveBeenCalledWith
(
router
,
'
url
'
);
});
it
(
'
should construct the new url with custom params and hash
'
,
()
=>
{
router
.
asPath
=
'
/current/path?path=newPath&newParam=newValue#section
'
;
const
result
=
getAppUrl
(
'
https://example.com/app?existingParam=1
'
,
router
);
expect
(
result
).
toBe
(
'
https://example.com/newPath?existingParam=1&newParam=newValue#section
'
);
});
it
(
'
should handle url without query and hash
'
,
()
=>
{
router
.
asPath
=
'
/current/path
'
;
const
result
=
getAppUrl
(
'
https://example.com/app
'
,
router
);
expect
(
result
).
toBe
(
'
https://example.com/app
'
);
});
it
(
'
should handle error in custom url parsing
'
,
()
=>
{
(
getQueryParamString
as
jest
.
Mock
).
mockImplementation
(()
=>
{
throw
new
Error
(
'
Invalid URL
'
);
});
const
result
=
getAppUrl
(
'
https://example.com/app
'
,
router
);
expect
(
result
).
toBe
(
'
https://example.com/app?someParam=value
'
);
});
it
(
'
should handle error in target url parsing
'
,
()
=>
{
router
.
asPath
=
'
/current/path?invalidQuery#section
'
;
const
result
=
getAppUrl
(
'
invalid-url
'
,
router
);
expect
(
result
).
toBe
(
'
invalid-url
'
);
});
});
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