Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
7f83460f
Commit
7f83460f
authored
Oct 31, 2017
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: migrated tests for link_srv to jest, #9666
parent
9aa6a6b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
0 deletions
+64
-0
public/app/features/panellinks/specs/link_srv.jest.ts
+47
-0
public/test/mocks/angular.ts
+17
-0
No files found.
public/app/features/panellinks/specs/link_srv.jest.ts
0 → 100644
View file @
7f83460f
import
{
LinkSrv
}
from
'../link_srv'
;
import
_
from
'lodash'
;
jest
.
mock
(
'angular'
,
()
=>
{
let
AngularJSMock
=
require
(
'test/mocks/angular'
);
return
new
AngularJSMock
();
});
describe
(
'linkSrv'
,
function
()
{
var
linkSrv
;
var
templateSrvMock
=
{};
var
timeSrvMock
=
{};
beforeEach
(()
=>
{
linkSrv
=
new
LinkSrv
(
templateSrvMock
,
timeSrvMock
);
});
describe
(
'when appending query strings'
,
function
()
{
it
(
'add ? to URL if not present'
,
function
()
{
var
url
=
linkSrv
.
appendToQueryString
(
'http://example.com'
,
'foo=bar'
);
expect
(
url
).
toBe
(
'http://example.com?foo=bar'
);
});
it
(
'do not add & to URL if ? is present but query string is empty'
,
function
()
{
var
url
=
linkSrv
.
appendToQueryString
(
'http://example.com?'
,
'foo=bar'
);
expect
(
url
).
toBe
(
'http://example.com?foo=bar'
);
});
it
(
'add & to URL if query string is present'
,
function
()
{
var
url
=
linkSrv
.
appendToQueryString
(
'http://example.com?foo=bar'
,
'hello=world'
);
expect
(
url
).
toBe
(
'http://example.com?foo=bar&hello=world'
);
});
it
(
'do not change the URL if there is nothing to append'
,
function
()
{
_
.
each
([
''
,
undefined
,
null
],
function
(
toAppend
)
{
var
url1
=
linkSrv
.
appendToQueryString
(
'http://example.com'
,
toAppend
);
expect
(
url1
).
toBe
(
'http://example.com'
);
var
url2
=
linkSrv
.
appendToQueryString
(
'http://example.com?'
,
toAppend
);
expect
(
url2
).
toBe
(
'http://example.com?'
);
var
url3
=
linkSrv
.
appendToQueryString
(
'http://example.com?foo=bar'
,
toAppend
);
expect
(
url3
).
toBe
(
'http://example.com?foo=bar'
);
});
});
});
});
public/test/mocks/angular.ts
0 → 100644
View file @
7f83460f
export
default
class
AngularJSMock
{
service
:
any
;
controller
:
any
;
directive
:
any
;
constructor
()
{
this
.
service
=
jest
.
fn
();
this
.
controller
=
jest
.
fn
();
this
.
directive
=
jest
.
fn
();
}
module
()
{
return
this
;
}
}
module
.
exports
=
AngularJSMock
;
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