123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- */
- var App = require('app');
- require('views/main/dashboard/widget');
- describe('App.DashboardWidgetView', function () {
- var dashboardWidgetView = App.DashboardWidgetView.create({
- parentView: Em.Object.create({
- widgetsMapper: Em.K,
- getUserPref: Em.K,
- postUserPref: Em.K,
- translateToReal: Em.K,
- visibleWidgets: [],
- hiddenWidgets: []
- })
- });
- describe('#viewID', function () {
- it('viewID is computed with id', function () {
- dashboardWidgetView.set('id', 5);
- expect(dashboardWidgetView.get('viewID')).to.equal('widget-5');
- });
- });
- describe('#model', function () {
- it('model_type is null', function () {
- dashboardWidgetView.set('model_type', null);
- dashboardWidgetView.propertyDidChange('model');
- expect(dashboardWidgetView.get('model')).to.eql({});
- });
- it('model_type is valid', function () {
- dashboardWidgetView.set('model_type', 's');
- dashboardWidgetView.propertyDidChange('model');
- dashboardWidgetView.set('parentView.s_model', {'s': {}});
- expect(dashboardWidgetView.get('model')).to.eql({'s': {}});
- });
- });
- describe("#didInsertElement()", function () {
- before(function () {
- sinon.stub(App, 'tooltip', Em.K);
- });
- after(function () {
- App.tooltip.restore();
- });
- it("call App.tooltip", function () {
- dashboardWidgetView.didInsertElement();
- expect(App.tooltip.calledOnce).to.be.true;
- });
- });
- describe("#deleteWidget()", function () {
- beforeEach(function () {
- sinon.stub(dashboardWidgetView.get('parentView'), 'widgetsMapper').returns({});
- sinon.stub(dashboardWidgetView.get('parentView'), 'getUserPref').returns({
- complete: Em.K
- });
- });
- afterEach(function () {
- dashboardWidgetView.get('parentView').widgetsMapper.restore();
- dashboardWidgetView.get('parentView').getUserPref.restore();
- });
- it("testMode is on", function () {
- App.set('testMode', true);
- dashboardWidgetView.set('id', '1');
- dashboardWidgetView.deleteWidget();
- expect(dashboardWidgetView.get('parentView').widgetsMapper.calledWith('1')).to.be.true;
- expect(dashboardWidgetView.get('parentView.visibleWidgets')).to.be.empty;
- expect(dashboardWidgetView.get('parentView.hiddenWidgets')).to.not.be.empty;
- });
- it("testMode is off", function () {
- App.set('testMode', false);
- dashboardWidgetView.set('parentView.persistKey', 'key');
- dashboardWidgetView.deleteWidget();
- expect(dashboardWidgetView.get('parentView').getUserPref.calledWith('key')).to.be.true;
- });
- });
- describe("#deleteWidgetComplete()", function () {
- before(function () {
- sinon.spy(dashboardWidgetView.get('parentView'), 'postUserPref');
- sinon.spy(dashboardWidgetView.get('parentView'), 'translateToReal');
- });
- after(function () {
- dashboardWidgetView.get('parentView').postUserPref.restore();
- dashboardWidgetView.get('parentView').translateToReal.restore();
- });
- it("", function () {
- dashboardWidgetView.set('parentView.currentPrefObject', {
- dashboardVersion: 'new',
- visible: ['1', '2'],
- hidden: [],
- threshold: 'threshold'
- });
- dashboardWidgetView.set('parentView.persistKey', 'key');
- dashboardWidgetView.deleteWidgetComplete();
- expect(dashboardWidgetView.get('parentView').postUserPref.calledWith('key', {
- dashboardVersion: 'new',
- visible: ['2'],
- hidden: ['1'],
- threshold: 'threshold'
- }));
- expect(dashboardWidgetView.get('parentView').translateToReal.calledWith({
- dashboardVersion: 'new',
- visible: ['2'],
- hidden: ['1'],
- threshold: 'threshold'
- }));
- });
- });
- describe("#editWidget()", function () {
- before(function () {
- sinon.stub(dashboardWidgetView, 'showEditDialog', Em.K);
- });
- after(function () {
- dashboardWidgetView.showEditDialog.restore();
- });
- it("call showEditDialog", function () {
- dashboardWidgetView.editWidget();
- expect(dashboardWidgetView.showEditDialog.calledOnce).to.be.true;
- });
- });
- describe("#showEditDialog()", function () {
- var obj = Em.Object.create({
- observeThresh1Value: Em.K,
- observeThresh2Value: Em.K,
- thresh1: '1',
- thresh2: '2'
- });
- before(function () {
- sinon.spy(obj, 'observeThresh1Value');
- sinon.spy(obj, 'observeThresh2Value');
- sinon.stub(dashboardWidgetView.get('parentView'), 'getUserPref').returns({
- complete: Em.K
- });
- });
- after(function () {
- obj.observeThresh1Value.restore();
- obj.observeThresh2Value.restore();
- dashboardWidgetView.get('parentView').getUserPref.restore();
- });
- it("open popup", function () {
- var popup = dashboardWidgetView.showEditDialog(obj);
- popup.onPrimary();
- expect(obj.observeThresh1Value.calledOnce).to.be.true;
- expect(obj.observeThresh2Value.calledOnce).to.be.true;
- expect(dashboardWidgetView.get('thresh1')).to.equal(1);
- expect(dashboardWidgetView.get('thresh2')).to.equal(2);
- expect(dashboardWidgetView.get('parentView').getUserPref.calledOnce).to.be.true;
- });
- });
- describe('#model', function () {
- it('model_type is null', function () {
- dashboardWidgetView.set('model_type', null);
- dashboardWidgetView.propertyDidChange('model');
- expect(dashboardWidgetView.get('model')).to.eql({});
- });
- it('model_type is valid', function () {
- dashboardWidgetView.set('model_type', 's');
- dashboardWidgetView.propertyDidChange('model');
- dashboardWidgetView.set('parentView.s_model', {'s': {}});
- expect(dashboardWidgetView.get('model')).to.eql({'s': {}});
- });
- });
- describe('#hoverContentTopClass', function () {
- var tests = [
- {
- h: ['', ''],
- e: 'content-hidden-two-line',
- m: '2 lines'
- },
- {
- h: ['', '', ''],
- e: 'content-hidden-three-line',
- m: '3 lines'
- },
- {
- h: [''],
- e: '',
- m: '1 line'
- },
- {
- h: [],
- e: '',
- m: '0 lines'
- },
- {
- h: ['', '', '', '', ''],
- e: 'content-hidden-five-line',
- m: '5 lines'
- },
- {
- h: ['', '', '', ''],
- e: 'content-hidden-four-line',
- m: '4 lines'
- },
- {
- h: ['', '', '', '', '', ''],
- e: 'content-hidden-six-line',
- m: '6 lines'
- }
- ];
- tests.forEach(function (test) {
- it(test.m, function () {
- dashboardWidgetView.set('hiddenInfo', test.h);
- expect(dashboardWidgetView.get('hoverContentTopClass')).to.equal(test.e);
- });
- });
- });
- describe("#widgetConfig", function() {
- var widget = dashboardWidgetView.get('widgetConfig').create();
- describe("#hintInfo", function() {
- it("", function() {
- widget.set('maxValue', 1);
- widget.propertyDidChange('hintInfo');
- expect(widget.get('hintInfo')).to.equal(Em.I18n.t('dashboard.widgets.hintInfo.common').format(1));
- });
- });
- describe("#observeThresh1Value", function() {
- beforeEach(function () {
- sinon.stub(widget, 'updateSlider', Em.K);
- });
- afterEach(function () {
- widget.updateSlider.restore();
- });
- var testCases = [
- {
- data: {
- thresh1: '',
- maxValue: 0
- },
- result: {
- isThresh1Error: true,
- errorMessage1: Em.I18n.t('admin.users.editError.requiredField')
- }
- },
- {
- data: {
- thresh1: 'NaN',
- maxValue: 0
- },
- result: {
- isThresh1Error: true,
- errorMessage1: Em.I18n.t('dashboard.widgets.error.invalid').format(0)
- }
- },
- {
- data: {
- thresh1: '-1',
- maxValue: 0
- },
- result: {
- isThresh1Error: true,
- errorMessage1: Em.I18n.t('dashboard.widgets.error.invalid').format(0)
- }
- },
- {
- data: {
- thresh1: '2',
- maxValue: 1
- },
- result: {
- isThresh1Error: true,
- errorMessage1: Em.I18n.t('dashboard.widgets.error.invalid').format(1)
- }
- },
- {
- data: {
- thresh1: '1',
- thresh2: '1',
- maxValue: 2
- },
- result: {
- isThresh1Error: true,
- errorMessage1: Em.I18n.t('dashboard.widgets.error.smaller')
- }
- },
- {
- data: {
- thresh1: '1',
- thresh2: '0',
- maxValue: 2
- },
- result: {
- isThresh1Error: true,
- errorMessage1: Em.I18n.t('dashboard.widgets.error.smaller')
- }
- },
- {
- data: {
- thresh1: '1',
- thresh2: '2',
- maxValue: 2
- },
- result: {
- isThresh1Error: false,
- errorMessage1: ''
- }
- }
- ];
- testCases.forEach(function (test) {
- it("thresh1 - " + test.data.thresh1 + ', maxValue - ' + test.data.maxValue, function () {
- widget.set('isThresh2Error', false);
- widget.set('thresh2', test.data.thresh2 || "");
- widget.set('thresh1', test.data.thresh1);
- widget.set('maxValue', test.data.maxValue);
- widget.observeThresh1Value();
- expect(widget.get('isThresh1Error')).to.equal(test.result.isThresh1Error);
- expect(widget.get('errorMessage1')).to.equal(test.result.errorMessage1);
- expect(widget.updateSlider.called).to.be.true;
- });
- });
- });
- describe("#observeThresh2Value", function() {
- beforeEach(function () {
- sinon.stub(widget, 'updateSlider', Em.K);
- });
- afterEach(function () {
- widget.updateSlider.restore();
- });
- var testCases = [
- {
- data: {
- thresh2: '',
- maxValue: 0
- },
- result: {
- isThresh2Error: true,
- errorMessage2: Em.I18n.t('admin.users.editError.requiredField')
- }
- },
- {
- data: {
- thresh2: 'NaN',
- maxValue: 0
- },
- result: {
- isThresh2Error: true,
- errorMessage2: Em.I18n.t('dashboard.widgets.error.invalid').format(0)
- }
- },
- {
- data: {
- thresh2: '-1',
- maxValue: 0
- },
- result: {
- isThresh2Error: true,
- errorMessage2: Em.I18n.t('dashboard.widgets.error.invalid').format(0)
- }
- },
- {
- data: {
- thresh2: '2',
- maxValue: 1
- },
- result: {
- isThresh2Error: true,
- errorMessage2: Em.I18n.t('dashboard.widgets.error.invalid').format(1)
- }
- },
- {
- data: {
- thresh2: '2',
- maxValue: 2
- },
- result: {
- isThresh2Error: false,
- errorMessage2: ''
- }
- }
- ];
- testCases.forEach(function (test) {
- it("thresh2 - " + test.data.thresh2 + ', maxValue - ' + test.data.maxValue, function () {
- widget.set('thresh2', test.data.thresh2 || "");
- widget.set('maxValue', test.data.maxValue);
- widget.observeThresh2Value();
- expect(widget.get('isThresh2Error')).to.equal(test.result.isThresh2Error);
- expect(widget.get('errorMessage2')).to.equal(test.result.errorMessage2);
- expect(widget.updateSlider.called).to.be.true;
- });
- });
- });
- });
- });
|