summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusion/scripts/view-models/reportdashboard-page/src/components/directives/dashboard/dashboard.spec.js
blob: 453de43181c035384d2c7b58696bbcc47338aed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
/*
 * Copyright (c) 2014 DataTorrent, Inc. ALL Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

'use strict';

describe('Directive: dashboard', function () {

  var scope, element, childScope, DashboardState, mockModal, modalOptions, $compile, $q, mockLog;

  // mock UI Sortable
  beforeEach(function () {
    angular.module('ui.sortable', []);
  });

  // load the directive's module
  beforeEach(module('ui.dashboard', function($provide) {
    mockModal = {
      open: function(options) {
        modalOptions = options;
      }
    };
    mockLog = {
      info: function() {

      }
    };
    $provide.value('$uibModal', mockModal);
    $provide.value('$log', mockLog);
  }));

  beforeEach(inject(function (_$compile_, $rootScope, _DashboardState_, _$q_) {
    // services
    scope = $rootScope.$new();
    $compile = _$compile_;
    DashboardState = _DashboardState_;
    $q = _$q_;

    // options
    var widgetDefinitions = [
      {
        name: 'wt-one',
        template: '<div class="wt-one-value">{{2 + 2}}</div>'
      },
      {
        name: 'wt-two',
        template: '<span class="wt-two-value">{{value}}</span>'
      }
    ];
    var defaultWidgets = _.clone(widgetDefinitions);
    scope.dashboardOptions = {
      widgetButtons: true,
      widgetDefinitions: widgetDefinitions,
      defaultWidgets: defaultWidgets,
      sortableOptions: {
        testProperty: 'foobar'
      }
    };
    scope.value = 10;

    // element setup
    element = $compile('<div dashboard="dashboardOptions"></div>')(scope);
    scope.$digest();
    childScope = element.scope();
  }));

  it('should have toolbar', function () {
    var toolbar = element.find('.btn-toolbar');
    expect(toolbar.length).toEqual(1);
  });

  it('should have UI.Sortable directive', function () {
    var widgetArea = element.find('.dashboard-widget-area');
    expect(widgetArea.attr('ui-sortable')).toBeDefined();
  });

  it('should render widgets', function () {
    var widgets = element.find('.widget');
    expect(widgets.length).toEqual(2);
  });

  it('should evaluate widget expressions', function () {
    var divWidget = element.find('.wt-one-value');
    expect(divWidget.html()).toEqual('4');
  });

  it('should evaluate scope expressions', function () {
    var spanWidget = element.find('.wt-two-value');
    expect(spanWidget.html()).toEqual('10');
  });

  it('should fill options with defaults', function() {
    expect(scope.dashboardOptions.stringifyStorage).toEqual(true);
  });

  it('should not overwrite specified options with defaults', inject(function($compile) {
    scope.dashboardOptions.stringifyStorage = false;
    element = $compile('<div dashboard="dashboardOptions"></div>')(scope);
    $compile(element)(scope);
    scope.$digest();
    expect(scope.dashboardOptions.stringifyStorage).toEqual(false);
  }));

  it('should be able to use a different dashboard template', inject(function($compile, $templateCache) {
    $templateCache.put(
      'myCustomTemplate.html',
        '<div>' +
        '<div ui-sortable="sortableOptions" ng-model="widgets">' +
        '<div ng-repeat="widget in widgets" ng-style="widget.style" class="widget-container custom-widget" widget>' +
        '<h3 class="widget-header">' +
        '{{widget.title}}' +
        '<span ng-click="removeWidget(widget);" class="glyphicon glyphicon-remove icon-erase" ng-if="!options.hideWidgetClose"></span>' +
        '<span ng-click="openWidgetSettings(widget);" class="glyphicon glyphicon-cog icon-settings" ng-if="!options.hideWidgetSettings"></span>' +
        '</h3>' +
        '<div class="widget-content"></div>' +
        '<div class="widget-ew-resizer" ng-mousedown="grabResizer($event)"></div>' +
        '</div>' +
        '</div>' +
        '</div>'
    );
    var customElement = $compile('<div dashboard="dashboardOptions" template-url="myCustomTemplate.html"></div>')(scope);
    scope.$digest();
    expect(customElement.find('.custom-widget').length).toEqual(2);
  }));

  it('should set scope.widgets to an empty array if no defaultWidgets are specified', inject(function($compile) {
    delete scope.dashboardOptions.defaultWidgets;
    var element2 = $compile('<div dashboard="dashboardOptions"></div>')(scope);
    scope.$digest();
    var childScope2 = element2.scope();
    expect(childScope2.widgets instanceof Array).toEqual(true);
  }));

  it('should set options.unsavedChangeCount to 0 upon load', function() {
    expect(scope.dashboardOptions.unsavedChangeCount).toEqual(0);
  });

  it('should not call saveDashboard on load', inject(function($compile) {
    spyOn(DashboardState.prototype, 'save');
    var s = scope.$new();
    element = $compile('<div dashboard="dashboardOptions"></div>')(s);
    scope.$digest();
    expect(DashboardState.prototype.save).not.toHaveBeenCalled();
  }));

  describe('the sortableOptions', function() {

    it('should exist', function() {
      expect(typeof childScope.sortableOptions).toEqual('object');
    });

    it('should be possible to be extendable from the dashboardOptions', function() {
      expect(childScope.sortableOptions.testProperty).toEqual('foobar');
    })

    it('should have a stop function that calls $scope.saveDashboard', function() {
      expect(typeof childScope.sortableOptions.stop).toEqual('function');
      spyOn(childScope, 'saveDashboard');
      childScope.sortableOptions.stop();
      expect(childScope.saveDashboard).toHaveBeenCalled();
    });
  });

  describe('the addWidget function', function() {

    var widgetCreated, widgetPassed, widgetDefault;

    beforeEach(function() {
      childScope.widgets.push = function(w) {
        widgetCreated = w;
      }
    });

    it('should be a function', function() {
      expect(typeof childScope.addWidget).toEqual('function');
    });

    it('should throw if no default widgetDefinition was found', function() {
      spyOn(childScope.widgetDefs, 'getByName').and.returnValue(false);
      function fn () {
        childScope.addWidget({ name: 'notReal' });
      }
      expect(fn).toThrow();
    });

    it('should look to the passed widgetToInstantiate object for the title before anything else', function() {
      spyOn(childScope.widgetDefs, 'getByName').and.returnValue({ title: 'defaultTitle', name: 'A' });
      childScope.addWidget({ title: 'highestPrecedence', name: 'A' });
      expect(widgetCreated.title).toEqual('highestPrecedence');
    });

    it('should use the defaultWidget\'s title second', function() {
      spyOn(childScope.widgetDefs, 'getByName').and.returnValue({ title: 'defaultTitle', name: 'A' });
      childScope.addWidget({ name: 'A' });
      expect(widgetCreated.title).toEqual('defaultTitle');
    });

    it('should call the saveDashboard method (internal)', function() {
      spyOn(childScope.widgetDefs, 'getByName').and.returnValue({ title: 'defaultTitle', name: 'A' });
        spyOn(childScope, 'saveDashboard');
        childScope.addWidget({ name: 'A' });
        expect(childScope.saveDashboard).toHaveBeenCalled();
    });

    it('should support passing just the widget name as a string', function() {
      spyOn(childScope.widgetDefs, 'getByName').and.returnValue({ title: 'defaultTitle', name: 'A' });
      childScope.addWidget('A');
      expect(childScope.widgetDefs.getByName).toHaveBeenCalledWith('A');
      expect(widgetCreated.title).toEqual('defaultTitle');
    });

    describe('@awashbrook Test Case', function() {
      beforeEach(function() {
        spyOn(childScope.widgetDefs, 'getByName').and.returnValue(widgetDefault = {
          "name": "nvLineChartAlpha",
          "directive": "nvd3-line-chart",
          "dataAttrName": "data",
          "attrs": {
            "isArea": true,
            "height": 400,
            "showXAxis": true,
            "showYAxis": true,
            "xAxisTickFormat": "xAxisTickFormat()",
            "interactive": true,
            "useInteractiveGuideline": true,
            "tooltips": true,
            "showLegend": true,
            "noData": "No data for YOU!",
            "color": "colorFunction()",
            "forcey": "[0,2]"
          },
          "dataModelOptions": {
            "params": {
              "from": "-2h",
              "until": "now"
            }
          },
          "style": {
            "width": "400px"
          },
        });
        childScope.addWidget(widgetPassed = {
          "title": "Andy",
          "name": "nvLineChartAlpha",
          "style": {
            "width": "400px"
          },
          "dataModelOptions": {
            "params": {
              "from": "-1h",
              "target": [
              "randomWalk(\"random Andy 1\")",
              "randomWalk(\"random walk 2\")",
              "randomWalk(\"random walk 3\")"
              ]
            }
          },
          "attrs": {
            "height": 400,
            "showXAxis": true,
            "showYAxis": true,
            "xAxisTickFormat": "xAxisTickFormat()",
            "interactive": false,
            "useInteractiveGuideline": true,
            "tooltips": true,
            "showLegend": true,
            "noData": "No data for YOU!",
            "color": "colorFunction()",
            "forcey": "[0,2]",
            "data": "widgetData"
          }
        });
      });

      it('should keep overrides from widgetPassed', function() {
        expect(widgetCreated.attrs.interactive).toEqual(widgetPassed.attrs.interactive);
      });

      it('should fill in default attrs', function() {
        expect(widgetCreated.attrs.isArea).toEqual(widgetDefault.attrs.isArea);
      });

      it('should override deep options in dataModelOptions', function() {
        expect(widgetCreated.dataModelOptions.params.from).toEqual(widgetPassed.dataModelOptions.params.from);
      });

      it('should fill in deep default attrs', function() {
        expect(widgetCreated.dataModelOptions.params.until).toEqual(widgetDefault.dataModelOptions.params.until);
      });
    });

    describe('the doNotSave parameter', function() {

      it('should prevent save from being called if set to true', function() {
        spyOn(childScope.widgetDefs, 'getByName').and.returnValue({ title: 'defaultTitle', name: 'A' });
        spyOn(childScope, 'saveDashboard');
        childScope.addWidget({ name: 'A' }, true);
        expect(childScope.saveDashboard).not.toHaveBeenCalled();
      });

    });

  });

  describe('the removeWidget function', function() {

    it('should be a function', function() {
      expect(typeof childScope.removeWidget).toEqual('function');
    });

    it('should remove the provided widget from childScope.widgets array', function() {
      var startingLength = childScope.widgets.length;
      var expectedLength = startingLength - 1;

      var widgetToRemove = childScope.widgets[0];
      childScope.removeWidget(widgetToRemove);

      expect(childScope.widgets.length).toEqual(expectedLength);
      expect(childScope.widgets.indexOf(widgetToRemove)).toEqual(-1);
    });

    it('should call saveDashboard', function() {
      spyOn(childScope, 'saveDashboard');
      var widgetToRemove = childScope.widgets[0];
      childScope.removeWidget(widgetToRemove);
      expect(childScope.saveDashboard).toHaveBeenCalled();
    });

  });

  describe('the saveDashboard function', function() {

    it('should be attached to the options object after initialization', function() {
      expect(typeof scope.dashboardOptions.saveDashboard).toEqual('function');
      expect(scope.dashboardOptions.saveDashboard === childScope.externalSaveDashboard).toEqual(true);
    });

    it('should call scope.dashboardState.save when called internally if explicitSave is falsey', function() {
      spyOn(childScope.dashboardState, 'save').and.returnValue(true);
      childScope.saveDashboard();
      expect(childScope.dashboardState.save).toHaveBeenCalled();
    });

    it('should not call scope.dashboardState.save when called internally if explicitSave is truthy', function() {
      scope.dashboardOptions.explicitSave = true;
      spyOn(childScope.dashboardState, 'save').and.returnValue(true);
      childScope.saveDashboard();
      expect(childScope.dashboardState.save).not.toHaveBeenCalled();
    });

    it('should call scope.dashboardState.save when called externally, no matter what explicitSave value is', function() {
      spyOn(childScope.dashboardState, 'save').and.returnValue(true);

      scope.dashboardOptions.explicitSave = false;
      scope.dashboardOptions.saveDashboard();
      expect(childScope.dashboardState.save.calls.count()).toEqual(1);

      scope.dashboardOptions.explicitSave = true;
      scope.dashboardOptions.saveDashboard();
      expect(childScope.dashboardState.save.calls.count()).toEqual(2);
    });

    it('should keep a count of unsaved changes as unsavedChangeCount', function() {
      scope.dashboardOptions.explicitSave = true;
      spyOn(childScope.dashboardState, 'save').and.returnValue(true);
      childScope.saveDashboard();
      expect(scope.dashboardOptions.unsavedChangeCount).toEqual(1);
      childScope.saveDashboard();
      childScope.saveDashboard();
      expect(scope.dashboardOptions.unsavedChangeCount).toEqual(3);
    });

    it('should reset the cound of unsaved changes if a successful force save occurs', function() {
      scope.dashboardOptions.explicitSave = true;
      spyOn(childScope.dashboardState, 'save').and.returnValue(true);

      childScope.saveDashboard();
      childScope.saveDashboard();
      childScope.saveDashboard();

      childScope.saveDashboard(true);

      expect(scope.dashboardOptions.unsavedChangeCount).toEqual(0);
    });

  });

  describe('the loadWidgets function', function() {

    it('should be a function', function() {
      expect(typeof childScope.loadWidgets).toEqual('function');
    });

    it('should set savedWidgetDefs on scope as passed array', function() {
      var widgets = [];
      childScope.loadWidgets(widgets);
      expect(childScope.savedWidgetDefs === widgets).toEqual(true);
    });

    it('should call clear on the scope with true as the only argument', function() {
      spyOn(childScope, 'clear');
      childScope.loadWidgets([]);
      expect(childScope.clear).toHaveBeenCalled();
      expect(childScope.clear.calls.argsFor(0)).toEqual([true]);
    });

    it('should call addWidget for each widget in the array', function() {
      spyOn(childScope, 'addWidget').and.returnValue(null);
      var widgets = [{},{},{}];
      childScope.loadWidgets(widgets);
      expect(childScope.addWidget.calls.count()).toEqual(3);
    });

    it('should call addWidget for each widget with true as the second parameter (doNotSave)', function() {
      spyOn(childScope, 'addWidget').and.returnValue(null);
      var widgets = [{},{},{}];
      childScope.loadWidgets(widgets);
      expect(childScope.addWidget.calls.argsFor(0)).toEqual( [ widgets[0], true] );
      expect(childScope.addWidget.calls.argsFor(1)).toEqual( [ widgets[1], true] );
      expect(childScope.addWidget.calls.argsFor(2)).toEqual( [ widgets[2], true] );
    });

  });

  describe('the clear function', function() {

    it('should set the scope to an empty array', function() {
      childScope.clear();
      expect(childScope.widgets).toEqual([]);
    });

    it('should not call saveDashboard if first arg is true', function() {
      spyOn(childScope, 'saveDashboard');
      childScope.clear(true);
      expect(childScope.saveDashboard).not.toHaveBeenCalled();
    });

    it('should call saveDashboard if first arg is not true', function() {
      spyOn(childScope, 'saveDashboard');
      childScope.clear();
      expect(childScope.saveDashboard).toHaveBeenCalled();
    });

  });

  describe('the openWidgetSettings function', function() {

    it('should be a function', function() {
      expect(typeof childScope.openWidgetSettings).toEqual('function');
    });

    it('should call $uibModal.open with default options', function() {
      var widget = {};
      spyOn(mockModal, 'open').and.returnValue({
        result: { then: function(fn) {} }
      });
      childScope.openWidgetSettings(widget);
      expect(mockModal.open).toHaveBeenCalled();
    });

    it('should have widget in the resolve object', function() {
      var widget = {};
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      childScope.openWidgetSettings(widget);
      expect(modalOptions.resolve.widget() === widget).toEqual(true);
    });

    it('should set the templateUrl in modal options to the default ("app/fusion/scripts/view-models/reportdashboard-page/src/components/directives/dashboard/widget-settings-template.html")', function() {
      var widget = {};
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      childScope.openWidgetSettings(widget);
      expect(modalOptions.templateUrl).toEqual('app/fusion/scripts/view-models/reportdashboard-page/src/components/directives/dashboard/widget-settings-template.html');
    });

    it('should set the templateUrl in modal options to scope.options.settingsModalOptions.templateUrl', function() {
      var other;
      scope.dashboardOptions.settingsModalOptions = {
        templateUrl: other = 'some/other/url.html'
      };
      var widget = {};
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      childScope.openWidgetSettings(widget);
      expect(modalOptions.templateUrl).toEqual(other);
    });

    it('should set the templateUrl in modal options to widget.settingsModalOptions.templateUrl, if present', function() {
      var expected;
      var widget = {
        settingsModalOptions: {
          templateUrl: expected = 'specific/template.html'
        }
      };
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      childScope.openWidgetSettings(widget);
      expect(modalOptions.templateUrl).toEqual(expected);
    });

    it('should set the controller in modal options to the default ("WidgetSettingsCtrl")', function() {
      var widget = {};
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      childScope.openWidgetSettings(widget);
      expect(modalOptions.controller).toEqual('WidgetSettingsCtrl');
    });

    it('should set the controller in modal options to the default ("WidgetSettingsCtrl"), even when settingsModalOptions is supplied in options', inject(function($rootScope) {
      
      scope = $rootScope.$new();

      // options
      var widgetDefinitions = [
        {
          name: 'wt-one',
          template: '<div class="wt-one-value">{{2 + 2}}</div>'
        },
        {
          name: 'wt-two',
          template: '<span class="wt-two-value">{{value}}</span>'
        }
      ];
      var defaultWidgets = _.clone(widgetDefinitions);
      scope.dashboardOptions = {
        widgetButtons: true,
        widgetDefinitions: widgetDefinitions,
        defaultWidgets: defaultWidgets,
        sortableOptions: {
          testProperty: 'foobar'
        },
        settingsModalOptions: {
          backdrop: false
        }
      };
      scope.value = 10;

      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });

      // element setup
      element = $compile('<div dashboard="dashboardOptions"></div>')(scope);
      scope.$digest();
      childScope = element.scope();

      childScope.openWidgetSettings({});
      expect(modalOptions.controller).toEqual('WidgetSettingsCtrl');

    }));

    it('should set the controller in modal options to the default ("WidgetSettingsCtrl"), even when settingsModalOptions is supplied in widget', inject(function($rootScope) {
      
      scope = $rootScope.$new();

      // options
      var widgetDefinitions = [
        {
          name: 'wt-one',
          template: '<div class="wt-one-value">{{2 + 2}}</div>'
        },
        {
          name: 'wt-two',
          template: '<span class="wt-two-value">{{value}}</span>'
        }
      ];
      var defaultWidgets = _.clone(widgetDefinitions);
      scope.dashboardOptions = {
        widgetButtons: true,
        widgetDefinitions: widgetDefinitions,
        defaultWidgets: defaultWidgets,
        sortableOptions: {
          testProperty: 'foobar'
        },
        settingsModalOptions: {
          backdrop: false
        }
      };
      scope.value = 10;

      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });

      // element setup
      element = $compile('<div dashboard="dashboardOptions"></div>')(scope);
      scope.$digest();
      childScope = element.scope();

      childScope.openWidgetSettings({
        settingsModalOptions: {
          templateUrl: 'custom/widget/template.html'
        }
      });
      expect(modalOptions.controller).toEqual('WidgetSettingsCtrl');
      expect(modalOptions.backdrop).toEqual(false);
      expect(modalOptions.templateUrl).toEqual('custom/widget/template.html');

    }));

    it('should set the controller to scope.options.settingsModalOptions.controller if provided', function() {
      scope.dashboardOptions.settingsModalOptions = {};
      var expected = scope.dashboardOptions.settingsModalOptions.controller = 'MyCustomCtrl';
      var widget = {};
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      childScope.openWidgetSettings(widget);
      expect(modalOptions.controller).toEqual(expected);
    });

    it('should set the controller to widget.settingsModalOptions.controller if provided', function() {
      var expected;
      var widget = {
        settingsModalOptions: {
          controller: expected = 'MyWidgetCtrl'
        }
      };
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      childScope.openWidgetSettings(widget);
      expect(modalOptions.controller).toEqual(expected);
    });

    it('should pass in other modal options set in scope.options.settingsModalOptions', function() {
      scope.dashboardOptions.settingsModalOptions = {
        keyboard: false,
        windowClass: 'my-extra-class'
      };
      var widget = {};
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      childScope.openWidgetSettings(widget);
      expect(modalOptions.keyboard).toEqual(false);
      expect(modalOptions.windowClass).toEqual('my-extra-class');
    });

    it('should pass in other modal options set in widget.settingsModalOptions', function() {
      scope.dashboardOptions.settingsModalOptions = {
        keyboard: false,
        windowClass: 'my-extra-class'
      };
      var widget = {
        settingsModalOptions: {
          keyboard: true,
          size: 'sm'
        }
      };
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      childScope.openWidgetSettings(widget);
      expect(modalOptions.keyboard).toEqual(true);
      expect(modalOptions.size).toEqual('sm');
      expect(modalOptions.windowClass).toEqual('my-extra-class');
    });

    it('should emit a "widgetChanged" event on the childScope when the modal promise is called', function(done) {
      var widget = {};
      var result = {};
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      spyOn(childScope.options, 'onSettingsClose');
      childScope.openWidgetSettings(widget);
      childScope.$on('widgetChanged', done);
      dfr.resolve(result, widget);
      childScope.$digest();
    });

    it('should call scope.options.onSettingsClose when the modal promise is resolved by default', function() {
      var widget = {};
      var result = {};
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      spyOn(childScope.options, 'onSettingsClose');
      childScope.openWidgetSettings(widget);
      dfr.resolve(result);
      childScope.$digest();
      expect(scope.dashboardOptions.onSettingsClose).toHaveBeenCalledWith(result, widget, childScope);
    });

    it('should call scope.options.onSettingsDismiss when the modal promise is rejected by default', function() {
      var widget = {};
      var result = {};
      var dfr = $q.defer();
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      spyOn(childScope.options, 'onSettingsDismiss');
      childScope.openWidgetSettings(widget);
      dfr.reject('Testing failure');
      childScope.$digest();
      expect(scope.dashboardOptions.onSettingsDismiss).toHaveBeenCalledWith('Testing failure', childScope);
    });

    it('should call widget.onSettingsClose if provided when the modal promise is resolved', function() {
      var widget = {
        onSettingsClose: function(result, widget, scope) {

        }
      };
      var result = {};
      var dfr = $q.defer();
      spyOn(widget, 'onSettingsClose');
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      spyOn(childScope.options, 'onSettingsClose');
      childScope.openWidgetSettings(widget);
      dfr.resolve(result);
      childScope.$digest();
      expect(scope.dashboardOptions.onSettingsClose).not.toHaveBeenCalled();
      expect(widget.onSettingsClose).toHaveBeenCalledWith(result, widget, childScope);
    });

    it('should call widget.onSettingsDismiss if provided when the modal promise is rejected', function() {
      var widget = {
        onSettingsDismiss: function(result, widget, scope) {

        }
      };
      var result = {};
      var dfr = $q.defer();
      spyOn(widget, 'onSettingsDismiss');
      spyOn(mockModal, 'open').and.callFake(function(options) {
        modalOptions = options;
        return {
          result: dfr.promise
        };
      });
      spyOn(childScope.options, 'onSettingsDismiss');
      childScope.openWidgetSettings(widget);
      dfr.reject('Testing failure');
      childScope.$digest();
      expect(scope.dashboardOptions.onSettingsDismiss).not.toHaveBeenCalled();
      expect(widget.onSettingsDismiss).toHaveBeenCalledWith('Testing failure', childScope);
    });

  });

  describe('the default onSettingsClose callback', function() {

    var onSettingsClose;

    beforeEach(function() {
      onSettingsClose = childScope.options.onSettingsClose;
    });
    
    it('should exist', function() {
      expect(typeof onSettingsClose).toEqual('function');
    });

    it('should deep extend widget with result', function() {
      var result = {
        title: 'andy',
        style: {
          'float': 'left'
        }
      };
      var widget = {
        title: 'scott',
        style: {
          width: '100px'
        }
      };
      onSettingsClose(result, widget, {});
      expect(widget).toEqual({
        title: 'andy',
        style: {
          width: '100px',
          'float': 'left'
        }
      });
    });

  });

  describe('the default onSettingsDismiss callback', function() {
    
    var onSettingsDismiss;

    beforeEach(function() {
      onSettingsDismiss = childScope.options.onSettingsDismiss;
    });

    it('should exist', function() {
      expect(typeof onSettingsDismiss).toEqual('function');
    });

    it('should call $log.info with the reason', function() {
      spyOn(mockLog, 'info');
      onSettingsDismiss('dismiss reason');
      expect(mockLog.info).toHaveBeenCalled();
    });

  });

});