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
feca2871
Commit
feca2871
authored
Jan 12, 2016
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests(playlist): adds ctrl test for playlist edit
parent
b79f0449
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
92 additions
and
2 deletions
+92
-2
public/app/features/playlist/playlist_edit_ctrl.js
+5
-2
public/app/features/playlist/specs/playlist-edit-ctrl-specs.ts
+87
-0
No files found.
public/app/features/playlist/playlist_edit_ctrl.js
View file @
feca2871
...
...
@@ -9,7 +9,6 @@ function (angular, config, _) {
var
module
=
angular
.
module
(
'grafana.controllers'
);
module
.
controller
(
'PlaylistEditCtrl'
,
function
(
$scope
,
playlistSrv
,
backendSrv
,
$location
,
$route
)
{
$scope
.
timespan
=
config
.
playlist_timespan
;
$scope
.
filteredPlaylistItems
=
[];
$scope
.
foundPlaylistItems
=
[];
$scope
.
searchQuery
=
''
;
...
...
@@ -17,6 +16,7 @@ function (angular, config, _) {
$scope
.
playlist
=
{};
$scope
.
playlistItems
=
[];
$scope
.
init
=
function
()
{
if
(
$route
.
current
.
params
.
id
)
{
var
playlistId
=
$route
.
current
.
params
.
id
;
...
...
@@ -31,6 +31,9 @@ function (angular, config, _) {
});
}
$scope
.
search
();
};
$scope
.
search
=
function
()
{
var
query
=
{
starred
:
true
,
limit
:
10
};
...
...
@@ -136,6 +139,6 @@ function (angular, config, _) {
$scope
.
moveDashboard
(
playlistItem
,
1
);
};
$scope
.
search
();
$scope
.
init
();
});
});
public/app/features/playlist/specs/playlist-edit-ctrl-specs.ts
0 → 100644
View file @
feca2871
import
'../playlist_edit_ctrl'
;
import
{
describe
,
beforeEach
,
it
,
sinon
,
expect
,
angularMocks
}
from
'test/lib/common'
;
import
helpers
from
'test/specs/helpers'
;
describe
(
'PlaylistEditCtrl'
,
function
()
{
var
ctx
=
new
helpers
.
ControllerTestContext
();
var
dashboards
=
[
{
id
:
2
,
title
:
'dashboard: 2'
},
{
id
:
3
,
title
:
'dashboard: 3'
}
];
var
playlistSrv
=
{};
var
backendSrv
=
{
search
:
(
query
)
=>
{
return
ctx
.
$q
.
when
(
dashboards
);
}
};
beforeEach
(
angularMocks
.
module
(
'grafana.core'
));
beforeEach
(
angularMocks
.
module
(
'grafana.controllers'
));
beforeEach
(
angularMocks
.
module
(
'grafana.services'
));
beforeEach
(
ctx
.
providePhase
({
playlistSrv
:
playlistSrv
,
backendSrv
:
backendSrv
,
$route
:
{
current
:
{
params
:
{
}
}
},
}));
beforeEach
(
ctx
.
createControllerPhase
(
'PlaylistEditCtrl'
));
beforeEach
(()
=>
{
ctx
.
scope
.
$digest
();
});
describe
.
only
(
'searchresult returns 2 dashboards'
,
function
()
{
it
(
'found dashboard should be 2'
,
function
()
{
expect
(
ctx
.
scope
.
foundPlaylistItems
.
length
).
to
.
be
(
2
);
});
it
(
'filtred dashboard should be 2'
,
function
()
{
expect
(
ctx
.
scope
.
filteredPlaylistItems
.
length
).
to
.
be
(
2
);
});
describe
(
'adds one dashboard to playlist'
,
()
=>
{
beforeEach
(()
=>
{
ctx
.
scope
.
addPlaylistItem
({
id
:
2
,
title
:
'dashboard: 2'
});
});
it
(
'playlistitems should be increased by one'
,
()
=>
{
expect
(
ctx
.
scope
.
playlistItems
.
length
).
to
.
be
(
1
);
});
it
(
'filtred playlistitems should be reduced by one'
,
()
=>
{
expect
(
ctx
.
scope
.
filteredPlaylistItems
.
length
).
to
.
be
(
1
);
});
it
(
'found dashboard should be 2'
,
function
()
{
expect
(
ctx
.
scope
.
foundPlaylistItems
.
length
).
to
.
be
(
2
);
});
describe
(
'removes one dashboard from playlist'
,
()
=>
{
beforeEach
(()
=>
{
ctx
.
scope
.
removePlaylistItem
(
ctx
.
scope
.
playlistItems
[
0
]);
});
it
(
'playlistitems should be increased by one'
,
()
=>
{
expect
(
ctx
.
scope
.
playlistItems
.
length
).
to
.
be
(
0
);
});
it
(
'found dashboard should be 2'
,
function
()
{
expect
(
ctx
.
scope
.
foundPlaylistItems
.
length
).
to
.
be
(
2
);
});
it
(
'filtred playlist should be reduced by one'
,
()
=>
{
expect
(
ctx
.
scope
.
filteredPlaylistItems
.
length
).
to
.
be
(
2
);
});
});
});
});
});
\ No newline at end of file
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