| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- import '../playlist_edit_ctrl';
- import { PlaylistEditCtrl } from '../playlist_edit_ctrl';
- describe('PlaylistEditCtrl', () => {
- let ctx: any;
- beforeEach(() => {
- const navModelSrv = {
- getNav: () => {
- return { breadcrumbs: [], node: {} };
- },
- };
- ctx = new PlaylistEditCtrl(null, null, null, { current: { params: {} } }, navModelSrv);
- ctx.dashboardresult = [{ id: 2, title: 'dashboard: 2' }, { id: 3, title: 'dashboard: 3' }];
- ctx.tagresult = [{ term: 'graphite', count: 1 }, { term: 'nyc', count: 2 }];
- });
- describe('searchresult returns 2 dashboards, ', () => {
- it('found dashboard should be 2', () => {
- expect(ctx.dashboardresult.length).toBe(2);
- });
- it('filtred result should be 2', () => {
- ctx.filterFoundPlaylistItems();
- expect(ctx.filteredDashboards.length).toBe(2);
- expect(ctx.filteredTags.length).toBe(2);
- });
- describe('adds one dashboard to playlist, ', () => {
- beforeEach(() => {
- ctx.addPlaylistItem({ id: 2, title: 'dashboard: 2' });
- ctx.addTagPlaylistItem({ term: 'graphite' });
- ctx.filterFoundPlaylistItems();
- });
- it('playlistitems should be increased by one', () => {
- expect(ctx.playlistItems.length).toBe(2);
- });
- it('filtred playlistitems should be reduced by one', () => {
- expect(ctx.filteredDashboards.length).toBe(1);
- expect(ctx.filteredTags.length).toBe(1);
- });
- it('found dashboard should be 2', () => {
- expect(ctx.dashboardresult.length).toBe(2);
- });
- describe('removes one dashboard from playlist, ', () => {
- beforeEach(() => {
- ctx.removePlaylistItem(ctx.playlistItems[0]);
- ctx.removePlaylistItem(ctx.playlistItems[0]);
- ctx.filterFoundPlaylistItems();
- });
- it('playlistitems should be increased by one', () => {
- expect(ctx.playlistItems.length).toBe(0);
- });
- it('found dashboard should be 2', () => {
- expect(ctx.dashboardresult.length).toBe(2);
- expect(ctx.filteredDashboards.length).toBe(2);
- expect(ctx.filteredTags.length).toBe(2);
- expect(ctx.tagresult.length).toBe(2);
- });
- });
- });
- });
- });
|