1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471 |
- /**
- * 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');
- var numberUtils = require('utils/number_utils');
- require('mixins/common/localStorage');
- require('models/config_group');
- require('controllers/wizard/step7_controller');
- var installerStep7Controller;
- describe('App.InstallerStep7Controller', function () {
- beforeEach(function () {
- installerStep7Controller = App.WizardStep7Controller.create();
- });
- describe('#installedServiceNames', function () {
- var tests = Em.A([
- {
- content: Em.Object.create({
- controllerName: 'installerController',
- services: Em.A([
- Em.Object.create({
- isInstalled: true,
- serviceName: 'SQOOP'
- }),
- Em.Object.create({
- isInstalled: true,
- serviceName: 'HDFS'
- })
- ])
- }),
- e: ['SQOOP', 'HDFS'],
- m: 'installerController with SQOOP'
- },
- {
- content: Em.Object.create({
- controllerName: 'installerController',
- services: Em.A([
- Em.Object.create({
- isInstalled: true,
- serviceName: 'HIVE'
- }),
- Em.Object.create({
- isInstalled: true,
- serviceName: 'HDFS'
- })
- ])
- }),
- e: ['HIVE', 'HDFS'],
- m: 'installerController without SQOOP'
- },
- {
- content: Em.Object.create({
- controllerName: 'addServiceController',
- services: Em.A([
- Em.Object.create({
- isInstalled: true,
- serviceName: 'HIVE'
- }),
- Em.Object.create({
- isInstalled: true,
- serviceName: 'HDFS'
- })
- ])
- }),
- e: ['HIVE', 'HDFS'],
- m: 'addServiceController without SQOOP'
- },
- {
- content: Em.Object.create({
- controllerName: 'addServiceController',
- services: Em.A([
- Em.Object.create({
- isInstalled: true,
- serviceName: 'SQOOP'
- }),
- Em.Object.create({
- isInstalled: true,
- serviceName: 'HIVE'
- }),
- Em.Object.create({
- isInstalled: true,
- serviceName: 'HDFS'
- })
- ])
- }),
- e: ['HIVE', 'HDFS'],
- m: 'addServiceController with SQOOP'
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- installerStep7Controller.set('content', test.content);
- expect(installerStep7Controller.get('installedServiceNames')).to.include.members(test.e);
- expect(test.e).to.include.members(installerStep7Controller.get('installedServiceNames'));
- });
- });
- });
- describe('#isSubmitDisabled', function () {
- it('should be true if miscModalVisible', function () {
- installerStep7Controller.reopen({miscModalVisible: true});
- expect(installerStep7Controller.get('isSubmitDisabled')).to.equal(true);
- });
- it('should be true if some of stepConfigs has errors', function () {
- installerStep7Controller.reopen({
- miscModalVisible: false,
- stepConfigs: [
- {
- showConfig: true,
- errorCount: 1
- }
- ]
- });
- expect(installerStep7Controller.get('isSubmitDisabled')).to.equal(true);
- });
- it('should be false if all of stepConfigs don\'t have errors and miscModalVisible is false', function () {
- installerStep7Controller.reopen({
- miscModalVisible: false,
- stepConfigs: [
- {
- showConfig: true,
- errorCount: 0
- }
- ]
- });
- expect(installerStep7Controller.get('isSubmitDisabled')).to.equal(false);
- });
- });
- describe('#selectedServiceNames', function () {
- it('should use content.services as source of data', function () {
- installerStep7Controller.set('content', {
- services: [
- {isSelected: true, isInstalled: false, serviceName: 's1'},
- {isSelected: false, isInstalled: false, serviceName: 's2'},
- {isSelected: true, isInstalled: true, serviceName: 's3'},
- {isSelected: false, isInstalled: false, serviceName: 's4'},
- {isSelected: true, isInstalled: false, serviceName: 's5'},
- {isSelected: false, isInstalled: false, serviceName: 's6'},
- {isSelected: true, isInstalled: true, serviceName: 's7'},
- {isSelected: false, isInstalled: false, serviceName: 's8'}
- ]
- });
- var expected = ['s1', 's5'];
- expect(installerStep7Controller.get('selectedServiceNames')).to.eql(expected);
- });
- });
- describe('#allSelectedServiceNames', function () {
- it('should use content.services as source of data', function () {
- installerStep7Controller.set('content', {
- services: [
- {isSelected: true, isInstalled: false, serviceName: 's1'},
- {isSelected: false, isInstalled: false, serviceName: 's2'},
- {isSelected: true, isInstalled: true, serviceName: 's3'},
- {isSelected: false, isInstalled: false, serviceName: 's4'},
- {isSelected: true, isInstalled: false, serviceName: 's5'},
- {isSelected: false, isInstalled: false, serviceName: 's6'},
- {isSelected: true, isInstalled: true, serviceName: 's7'},
- {isSelected: false, isInstalled: false, serviceName: 's8'}
- ]
- });
- var expected = ['s1', 's3', 's5', 's7'];
- expect(installerStep7Controller.get('allSelectedServiceNames')).to.eql(expected);
- });
- });
- describe('#masterComponentHosts', function () {
- it('should be equal to content.masterComponentHosts', function () {
- var masterComponentHosts = [
- {},
- {},
- {}
- ];
- installerStep7Controller.reopen({content: {masterComponentHosts: masterComponentHosts}});
- expect(installerStep7Controller.get('masterComponentHosts')).to.eql(masterComponentHosts);
- });
- });
- describe('#slaveComponentHosts', function () {
- it('should be equal to content.slaveGroupProperties', function () {
- var slaveGroupProperties = [
- {},
- {},
- {}
- ];
- installerStep7Controller.reopen({content: {slaveGroupProperties: slaveGroupProperties}});
- expect(installerStep7Controller.get('slaveComponentHosts')).to.eql(slaveGroupProperties);
- });
- });
- describe('#clearStep', function () {
- it('should clear serviceConfigTags', function () {
- installerStep7Controller.set('serviceConfigTags', [
- {},
- {}
- ]);
- installerStep7Controller.clearStep();
- expect(installerStep7Controller.get('serviceConfigTags.length')).to.equal(0);
- });
- it('should clear stepConfigs', function () {
- installerStep7Controller.set('stepConfigs', [
- {},
- {}
- ]);
- installerStep7Controller.clearStep();
- expect(installerStep7Controller.get('stepConfigs.length')).to.equal(0);
- });
- it('should clear filter', function () {
- installerStep7Controller.set('filter', 'filter');
- installerStep7Controller.clearStep();
- expect(installerStep7Controller.get('filter')).to.equal('');
- });
- it('should set for each filterColumns "selected" false', function () {
- installerStep7Controller.set('filterColumns', [
- {selected: true},
- {selected: false},
- {selected: true}
- ]);
- installerStep7Controller.clearStep();
- expect(installerStep7Controller.get('filterColumns').everyProperty('selected', false)).to.equal(true);
- });
- });
- describe('#loadInstalledServicesConfigGroups', function () {
- before(function () {
- sinon.stub(App.ajax, 'send', Em.K);
- });
- after(function () {
- App.ajax.send.restore();
- });
- it('should do ajax request for each received service name', function () {
- var serviceNames = ['s1', 's2', 's3'];
- installerStep7Controller.loadInstalledServicesConfigGroups(serviceNames);
- expect(App.ajax.send.callCount).to.equal(serviceNames.length);
- });
- });
- describe('#getConfigTags', function () {
- before(function () {
- sinon.stub(App.ajax, 'send', Em.K);
- });
- after(function () {
- App.ajax.send.restore();
- });
- it('should do ajax-request', function () {
- installerStep7Controller.getConfigTags();
- expect(App.ajax.send.calledOnce).to.equal(true);
- });
- });
- describe('#setGroupsToDelete', function () {
- beforeEach(function () {
- installerStep7Controller.set('wizardController', Em.Object.create(App.LocalStorage, {name: 'tdk'}));
- });
- it('should add new groups to groupsToDelete', function () {
- var groupsToDelete = [
- {id: '1'},
- {id: '2'}
- ],
- groups = [
- Em.Object.create({id: '3'}),
- Em.Object.create(),
- Em.Object.create({id: '5'})
- ],
- expected = [
- {id: "1"},
- {id: "2"},
- {id: "3"},
- {id: "5"}
- ];
- installerStep7Controller.set('groupsToDelete', groupsToDelete);
- installerStep7Controller.setGroupsToDelete(groups);
- expect(installerStep7Controller.get('groupsToDelete')).to.eql(expected);
- expect(installerStep7Controller.get('wizardController').getDBProperty('groupsToDelete')).to.eql(expected);
- });
- });
- describe('#selectConfigGroup', function () {
- beforeEach(function () {
- installerStep7Controller.reopen({content: {services: []}});
- sinon.stub(installerStep7Controller, 'switchConfigGroupConfigs', Em.K);
- });
- afterEach(function () {
- installerStep7Controller.switchConfigGroupConfigs.restore();
- });
- it('should set selectedConfigGroup', function () {
- var group = {':': []};
- installerStep7Controller.selectConfigGroup({context: group});
- expect(installerStep7Controller.get('selectedConfigGroup')).to.eql(group);
- });
- });
- describe('#submit', function () {
- beforeEach(function () {
- sinon.stub(App.router, 'send', Em.K);
- });
- afterEach(function () {
- App.router.send.restore();
- });
- it('should proceed if submit is not disabled', function () {
- installerStep7Controller.reopen({isSubmitDisabled: false});
- installerStep7Controller.submit();
- expect(App.router.send.calledOnce).to.equal(true);
- });
- it('should not proceed if submit is disabled', function () {
- installerStep7Controller.reopen({isSubmitDisabled: true});
- installerStep7Controller.submit();
- expect(App.router.send.called).to.equal(false);
- });
- });
- describe('#addOverrideProperty', function () {
- it('should add override property', function () {
- var groupName = 'groupName',
- selectedService = {configGroups: [Em.Object.create({name: groupName, properties: []})]},
- selectedConfigGroup = {name: groupName},
- serviceConfigProperty = Em.Object.create({overrides: []}),
- expected = Em.Object.create({
- value: '',
- isOriginalSCP: false,
- isEditable: true
- });
- installerStep7Controller.reopen({selectedService: selectedService, selectedConfigGroup: selectedConfigGroup});
- var newSCP = installerStep7Controller.addOverrideProperty(serviceConfigProperty);
- Em.keys(expected).forEach(function (k) {
- expect(newSCP.get(k)).to.equal(expected.get(k));
- });
- var group = installerStep7Controller.get('selectedService.configGroups').findProperty('name', groupName);
- expect(newSCP.get('group')).to.eql(group);
- expect(newSCP.get('parentSCP')).to.eql(serviceConfigProperty);
- expect(group.get('properties.length')).to.equal(1);
- });
- });
- describe('#getConfigTagsSuccess', function () {
- it('should update serviceConfigTags', function () {
- var installedServiceNames = ['s1', 's2'],
- serviceConfigsData = [
- {serviceName: 's1', sites: ['s1-site', 's1-log']},
- {serviceName: 's2', sites: ['s2-site', 'core-site']},
- {serviceName: 's3', sites: ['s3-site']}
- ],
- data = {
- Clusters: {
- desired_configs: {
- "core-site": {
- "user": "admin",
- "tag": "version1398780546992"
- },
- "global": {
- "user": "admin",
- "tag": "version1398780546992"
- },
- "s1-site": {
- "user": "admin",
- "tag": "version1"
- },
- "s1-log": {
- "user": "admin",
- "tag": "version1"
- },
- "s2-site": {
- "user": "admin",
- "tag": "version1"
- },
- "s3-site": {
- "user": "admin",
- "tag": "version1"
- }
- }
- }
- },
- serviceConfigTags = [
- {siteName: 'core-site', tagName: 'version1398780546992', newTagName: null},
- {siteName: 's1-site', tagName: 'version1', newTagName: null},
- {siteName: 's1-log', tagName: 'version1', newTagName: null},
- {siteName: 's2-site', tagName: 'version1', newTagName: null}
- ];
- installerStep7Controller.reopen({serviceConfigsData: serviceConfigsData, installedServiceNames: installedServiceNames});
- installerStep7Controller.getConfigTagsSuccess(data);
- expect(installerStep7Controller.get('serviceConfigTags')).to.eql(serviceConfigTags);
- });
- });
- describe('#resolveStormConfigs', function () {
- beforeEach(function () {
- installerStep7Controller.reopen({
- content: {services: []},
- wizardController: Em.Object.create({
- getDBProperty: function () {
- return [
- {component: 'GANGLIA_SERVER', hostName: 'h1'}
- ];
- }
- })
- });
- });
- it('shouldn\'t do nothing if Ganglia and Storm are installed', function () {
- var installedServiceNames = ['GANGLIA', 'STORM'],
- configs = [
- {name: 'nimbus.childopts', value: '.jar=host=', defaultValue: ''},
- {name: 'supervisor.childopts', value: '.jar=host=', defaultValue: ''},
- {name: 'worker.childopts', value: '.jar=host=', defaultValue: ''}
- ],
- expected = [
- {name: 'nimbus.childopts', value: '.jar=host=', defaultValue: ''},
- {name: 'supervisor.childopts', value: '.jar=host=', defaultValue: ''},
- {name: 'worker.childopts', value: '.jar=host=', defaultValue: ''}
- ];
- installerStep7Controller.reopen({installedServiceNames: installedServiceNames});
- installerStep7Controller.resolveStormConfigs(configs);
- expect(configs).to.eql(expected);
- });
- it('shouldn\'t do nothing if Ganglia is in allSelectedServiceNames', function () {
- var allSelectedServiceNames = ['GANGLIA'],
- configs = [
- {name: 'nimbus.childopts', value: '.jar=host=', defaultValue: ''},
- {name: 'supervisor.childopts', value: '.jar=host=', defaultValue: ''},
- {name: 'worker.childopts', value: '.jar=host=', defaultValue: ''}
- ],
- expected = [
- {name: 'nimbus.childopts', value: '.jar=host=h1', defaultValue: '.jar=host=h1', forceUpdate: true},
- {name: 'supervisor.childopts', value: '.jar=host=h1', defaultValue: '.jar=host=h1', forceUpdate: true},
- {name: 'worker.childopts', value: '.jar=host=h1', defaultValue: '.jar=host=h1', forceUpdate: true}
- ];
- installerStep7Controller.reopen({allSelectedServiceNames: allSelectedServiceNames});
- installerStep7Controller.resolveStormConfigs(configs);
- Em.keys(expected[0]).forEach(function (k) {
- expect(configs.mapProperty(k)).to.eql(expected.mapProperty(k));
- });
- });
- it('shouldn\'t do nothing if Ganglia is in installedServiceNames', function () {
- var installedServiceNames = ['GANGLIA'],
- configs = [
- {name: 'nimbus.childopts', value: '.jar=host=', defaultValue: ''},
- {name: 'supervisor.childopts', value: '.jar=host=', defaultValue: ''},
- {name: 'worker.childopts', value: '.jar=host=', defaultValue: ''}
- ],
- expected = [
- {name: 'nimbus.childopts', value: '.jar=host=h1', defaultValue: '.jar=host=h1', forceUpdate: true},
- {name: 'supervisor.childopts', value: '.jar=host=h1', defaultValue: '.jar=host=h1', forceUpdate: true},
- {name: 'worker.childopts', value: '.jar=host=h1', defaultValue: '.jar=host=h1', forceUpdate: true}
- ];
- installerStep7Controller.reopen({installedServiceNames: installedServiceNames});
- installerStep7Controller.resolveStormConfigs(configs);
- Em.keys(expected[0]).forEach(function (k) {
- expect(configs.mapProperty(k)).to.eql(expected.mapProperty(k));
- });
- });
- });
- describe('#resolveServiceDependencyConfigs', function () {
- beforeEach(function () {
- sinon.stub(installerStep7Controller, 'resolveStormConfigs', Em.K);
- });
- afterEach(function () {
- installerStep7Controller.resolveStormConfigs.restore();
- });
- it('should call resolveStormConfigs if serviceName is STORM', function () {
- var serviceName = 'STORM', configs = [
- {},
- {},
- {}
- ];
- installerStep7Controller.resolveServiceDependencyConfigs(serviceName, configs);
- expect(installerStep7Controller.resolveStormConfigs.calledWith(configs)).to.equal(true);
- });
- });
- describe('#selectedServiceObserver', function () {
- beforeEach(function () {
- installerStep7Controller.reopen({content: {services: []}});
- sinon.stub(installerStep7Controller, 'switchConfigGroupConfigs', Em.K);
- });
- afterEach(function () {
- installerStep7Controller.switchConfigGroupConfigs.restore();
- });
- it('shouldn\'t do nothing if App.supports.hostOverridesInstaller is false', function () {
- App.set('supports.hostOverridesInstaller', false);
- var configGroups = [
- {},
- {}
- ],
- selectedConfigGroup = {};
- installerStep7Controller.reopen({configGroups: configGroups, selectedConfigGroup: selectedConfigGroup});
- installerStep7Controller.selectedServiceObserver();
- expect(installerStep7Controller.get('configGroups')).to.eql(configGroups);
- expect(installerStep7Controller.get('selectedConfigGroup')).to.eql(selectedConfigGroup);
- });
- it('shouldn\'t do nothing if selectedService is null', function () {
- App.set('supports.hostOverridesInstaller', true);
- var configGroups = [
- {},
- {}
- ],
- selectedConfigGroup = {};
- installerStep7Controller.reopen({selectedService: null, configGroups: configGroups, selectedConfigGroup: selectedConfigGroup});
- installerStep7Controller.selectedServiceObserver();
- expect(installerStep7Controller.get('configGroups')).to.eql(configGroups);
- expect(installerStep7Controller.get('selectedConfigGroup')).to.eql(selectedConfigGroup);
- });
- it('shouldn\'t do nothing if selectedService.serviceName is MISC', function () {
- App.set('supports.hostOverridesInstaller', true);
- var configGroups = [
- {},
- {}
- ],
- selectedConfigGroup = {};
- installerStep7Controller.reopen({selectedService: {serviceName: 'MISC'}, configGroups: configGroups, selectedConfigGroup: selectedConfigGroup});
- installerStep7Controller.selectedServiceObserver();
- expect(installerStep7Controller.get('configGroups')).to.eql(configGroups);
- expect(installerStep7Controller.get('selectedConfigGroup')).to.eql(selectedConfigGroup);
- });
- it('should update configGroups and selectedConfigGroup', function () {
- App.set('supports.hostOverridesInstaller', true);
- var defaultGroup = {isDefault: true, n: 'n2'},
- configGroups = [
- {isDefault: false, n: 'n1'},
- defaultGroup,
- {n: 'n3'}
- ],
- selectedConfigGroup = {};
- installerStep7Controller.reopen({selectedService: {serviceName: 's1', configGroups: configGroups}});
- installerStep7Controller.selectedServiceObserver();
- expect(installerStep7Controller.get('configGroups').mapProperty('n')).to.eql(['n2', 'n1', 'n3']);
- expect(installerStep7Controller.get('selectedConfigGroup')).to.eql(defaultGroup);
- });
- });
- describe('#loadConfigGroups', function () {
- beforeEach(function () {
- installerStep7Controller.reopen({
- wizardController: Em.Object.create({
- allHosts: [
- {hostName: 'h1'},
- {hostName: 'h2'},
- {hostName: 'h3'}
- ]
- })
- });
- });
- it('shouldn\'t do nothing if only MISC available', function () {
- var configGroups = [
- {}
- ];
- installerStep7Controller.reopen({
- stepConfigs: [Em.Object.create({serviceName: 'MISC', configGroups: configGroups})]
- });
- installerStep7Controller.loadConfigGroups([]);
- expect(installerStep7Controller.get('stepConfigs.firstObject.configGroups')).to.eql(configGroups);
- });
- it('should set configGroups for service if they don\'t exist', function () {
- var configGroups = [],
- serviceName = 'HDFS',
- serviceConfigGroups = [
- {service: {id: 's1'}}
- ];
- installerStep7Controller.reopen({
- stepConfigs: [Em.Object.create({serviceName: serviceName, configGroups: configGroups})]
- });
- installerStep7Controller.loadConfigGroups(serviceConfigGroups);
- expect(installerStep7Controller.get('stepConfigs.firstObject.configGroups.length')).to.equal(1);
- var group = installerStep7Controller.get('stepConfigs.firstObject.configGroups.firstObject');
- expect(group.get('name')).to.equal(serviceName + ' Default');
- expect(group.get('description').contains(serviceName)).to.equal(true);
- expect(group.get('isDefault')).to.equal(true);
- expect(group.get('hosts')).to.eql(['h1', 'h2', 'h3']);
- expect(group.get('service.id')).to.equal(serviceName);
- expect(group.get('serviceName')).to.equal(serviceName);
- });
- it('should update configGroups for service (only default group)', function () {
- var configGroups = [],
- serviceName = 'HDFS',
- serviceConfigGroups = [
- {service: {id: 'HDFS'}, isDefault: true, n: 'n1'}
- ];
- installerStep7Controller.reopen({
- stepConfigs: [Em.Object.create({serviceName: serviceName, configGroups: configGroups})]
- });
- installerStep7Controller.loadConfigGroups(serviceConfigGroups);
- expect(installerStep7Controller.get('stepConfigs.firstObject.configGroups').findProperty('isDefault').get('n')).to.equal('n1');
- });
- it('should update configGroups for service', function () {
- var configGroups = [],
- serviceName = 'HDFS',
- serviceConfigGroups = [
- {service: {id: 'HDFS'}, properties: [
- {},
- {}
- ], isDefault: true, n: 'n1'},
- {service: {id: 'HDFS'}, properties: [
- {},
- {}
- ], isDefault: false, n: 'n2'}
- ];
- installerStep7Controller.reopen({
- stepConfigs: [Em.Object.create({serviceName: serviceName, configGroups: configGroups})]
- });
- installerStep7Controller.loadConfigGroups(serviceConfigGroups);
- expect(installerStep7Controller.get('stepConfigs.firstObject.configGroups.length')).to.equal(2);
- expect(installerStep7Controller.get('stepConfigs.firstObject.configGroups').findProperty('isDefault').get('n')).to.equal('n1');
- expect(installerStep7Controller.get('stepConfigs.firstObject.configGroups').findProperty('isDefault', false).get('properties').everyProperty('group.n', 'n2')).to.equal(true);
- expect(installerStep7Controller.get('stepConfigs.firstObject.configGroups').findProperty('isDefault', false).get('parentConfigGroup.n')).to.equal('n1');
- });
- });
- describe('#_getDisplayedConfigGroups', function () {
- it('should return [] if no selected group', function () {
- installerStep7Controller.reopen({
- content: {services: []},
- selectedConfigGroup: null
- });
- expect(installerStep7Controller._getDisplayedConfigGroups()).to.eql([]);
- });
- it('should return default config group if another selected', function () {
- var defaultGroup = Em.Object.create({isDefault: false});
- installerStep7Controller.reopen({
- content: {services: []},
- selectedConfigGroup: defaultGroup
- });
- expect(installerStep7Controller._getDisplayedConfigGroups()).to.eql([defaultGroup]);
- });
- it('should return other groups if default selected', function () {
- var defaultGroup = Em.Object.create({isDefault: true}),
- cfgG = Em.Object.create({isDefault: true}),
- configGroups = Em.A([
- Em.Object.create({isDefault: false}),
- Em.Object.create({isDefault: false}),
- cfgG,
- Em.Object.create({isDefault: false})
- ]);
- installerStep7Controller.reopen({
- content: {services: []},
- selectedConfigGroup: defaultGroup,
- selectedService: {configGroups: configGroups}
- });
- expect(installerStep7Controller._getDisplayedConfigGroups()).to.eql(configGroups.without(cfgG));
- });
- });
- describe('#_setEditableValue', function () {
- it('shouldn\'t update config if no selectedConfigGroup', function () {
- installerStep7Controller.reopen({
- selectedConfigGroup: null
- });
- var config = Em.Object.create({isEditable: null});
- var updatedConfig = installerStep7Controller._setEditableValue(config);
- expect(updatedConfig.get('isEditable')).to.be.null;
- });
- it('should set isEditable equal to selectedGroup.isDefault if service not installed', function () {
- var isDefault = true;
- installerStep7Controller.reopen({
- installedServiceNames: [],
- selectedService: {serviceName: 'abc'},
- selectedConfigGroup: Em.Object.create({isDefault: isDefault})
- });
- var config = Em.Object.create({isEditable: null});
- var updatedConfig = installerStep7Controller._setEditableValue(config);
- expect(updatedConfig.get('isEditable')).to.equal(isDefault);
- installerStep7Controller.toggleProperty('selectedConfigGroup.isDefault');
- updatedConfig = installerStep7Controller._setEditableValue(config);
- expect(updatedConfig.get('isEditable')).to.equal(!isDefault);
- });
- Em.A([
- {
- isEditable: false,
- isReconfigurable: false,
- isDefault: true,
- e: false
- },
- {
- isEditable: true,
- isReconfigurable: true,
- isDefault: true,
- e: true
- },
- {
- isEditable: false,
- isReconfigurable: true,
- isDefault: false,
- e: false
- },
- {
- isEditable: true,
- isReconfigurable: false,
- isDefault: false,
- e: false
- }
- ]).forEach(function (test) {
- it('service installed, isEditable = ' + test.isEditable.toString() + ', isReconfigurable = ' + test.isReconfigurable.toString(), function () {
- var config = Em.Object.create({
- isReconfigurable: test.isReconfigurable,
- isEditable: test.isEditable
- });
- installerStep7Controller.reopen({
- installedServiceNames: Em.A(['a']),
- selectedService: Em.Object.create({serviceName: 'a'}),
- selectedConfigGroup: Em.Object.create({isDefault: test.isDefault})
- });
- var updateConfig = installerStep7Controller._setEditableValue(config);
- expect(updateConfig.get('isEditable')).to.equal(test.e);
- });
- });
- });
- describe('#_setOverrides', function () {
- it('shouldn\'t update config if no selectedConfigGroup', function () {
- installerStep7Controller.reopen({
- selectedConfigGroup: null
- });
- var config = Em.Object.create({overrides: null});
- var updatedConfig = installerStep7Controller._setOverrides(config, []);
- expect(updatedConfig.get('overrides')).to.be.null;
- });
- it('no overrideToAdd', function () {
- var isDefault = true,
- name = 'n1',
- config = Em.Object.create({overrides: null, name: name, flag: 'flag'}),
- overrides = Em.A([
- Em.Object.create({name: name, value: 'v1'}),
- Em.Object.create({name: name, value: 'v2'}),
- Em.Object.create({name: 'n2', value: 'v3'})
- ]);
- installerStep7Controller.reopen({
- overrideToAdd: null,
- selectedConfigGroup: Em.Object.create({
- isDefault: isDefault
- })
- });
- var updatedConfig = installerStep7Controller._setOverrides(config, overrides);
- expect(updatedConfig.get('overrides.length')).to.equal(2);
- expect(updatedConfig.get('overrides').everyProperty('isEditable', !isDefault)).to.equal(true);
- expect(updatedConfig.get('overrides').everyProperty('parentSCP.flag', 'flag')).to.equal(true);
- });
- it('overrideToAdd exists', function () {
- var isDefault = true,
- name = 'n1',
- config = Em.Object.create({overrides: null, name: name, flag: 'flag'}),
- overrides = Em.A([
- Em.Object.create({name: name, value: 'v1'}),
- Em.Object.create({name: name, value: 'v2'}),
- Em.Object.create({name: 'n2', value: 'v3'})
- ]);
- installerStep7Controller.reopen({
- overrideToAdd: Em.Object.create({name: name}),
- selectedService: {configGroups: [Em.Object.create({name: 'n', properties: []})]},
- selectedConfigGroup: Em.Object.create({
- isDefault: isDefault,
- name: 'n'
- })
- });
- var updatedConfig = installerStep7Controller._setOverrides(config, overrides);
- expect(updatedConfig.get('overrides.length')).to.equal(3);
- expect(updatedConfig.get('overrides').everyProperty('isEditable', !isDefault)).to.equal(true);
- expect(updatedConfig.get('overrides').everyProperty('parentSCP.flag', 'flag')).to.equal(true);
- });
- });
- describe('#switchConfigGroupConfigs', function () {
- it('if selectedConfigGroup is null, serviceConfigs shouldn\'t be changed', function () {
- installerStep7Controller.reopen({
- selectedConfigGroup: null,
- content: {services: []},
- serviceConfigs: {configs: [
- {overrides: []},
- {overrides: []}
- ]}
- });
- installerStep7Controller.switchConfigGroupConfigs();
- expect(installerStep7Controller.get('serviceConfigs.configs').everyProperty('overrides.length', 0)).to.equal(true);
- });
- it('should set configs for serviceConfigs', function () {
- var configGroups = [
- Em.Object.create({
- properties: [
- {name: 'g1', value: 'v1'},
- {name: 'g2', value: 'v2'}
- ]
- })
- ];
- sinon.stub(installerStep7Controller, '_getDisplayedConfigGroups', function () {
- return configGroups;
- });
- sinon.stub(installerStep7Controller, '_setEditableValue', function (config) {
- config.set('isEditable', true);
- return config;
- });
- installerStep7Controller.reopen({
- selectedConfigGroup: Em.Object.create({isDefault: true, name: 'g1'}),
- content: {services: []},
- selectedService: {configs: Em.A([Em.Object.create({name: 'g1', overrides: [], properties: []}), Em.Object.create({name: 'g2', overrides: []})])},
- serviceConfigs: {configs: [Em.Object.create({name: 'g1'})]}
- });
- installerStep7Controller.switchConfigGroupConfigs();
- var configs = installerStep7Controller.get('selectedService.configs');
- expect(configs.findProperty('name', 'g1').get('overrides').length).to.equal(1);
- expect(configs.findProperty('name', 'g2').get('overrides').length).to.equal(1);
- expect(configs.everyProperty('isEditable', true)).to.equal(true);
- installerStep7Controller._getDisplayedConfigGroups.restore();
- installerStep7Controller._setEditableValue.restore();
- });
- });
- describe('#selectProperService', function () {
- Em.A([
- {
- name: 'addServiceController',
- stepConfigs: [
- {selected: false, name: 'n1'},
- {selected: true, name: 'n2'},
- {selected: true, name: 'n3'}
- ],
- e: 'n2'
- },
- {
- name: 'installerController',
- stepConfigs: [
- {showConfig: false, name: 'n1'},
- {showConfig: false, name: 'n2'},
- {showConfig: true, name: 'n3'}
- ],
- e: 'n3'
- }
- ]).forEach(function (test) {
- it(test.name, function () {
- sinon.stub(installerStep7Controller, 'selectedServiceObserver', Em.K);
- installerStep7Controller.reopen({
- wizardController: Em.Object.create({
- name: test.name
- }),
- stepConfigs: test.stepConfigs
- });
- installerStep7Controller.selectProperService();
- expect(installerStep7Controller.get('selectedService.name')).to.equal(test.e);
- installerStep7Controller.selectedServiceObserver.restore();
- });
- });
- });
- describe('#setStepConfigs', function () {
- beforeEach(function () {
- installerStep7Controller.reopen({
- content: {services: []},
- wizardController: Em.Object.create({
- getDBProperty: function (key) {
- return this.get(key);
- }
- })
- });
- });
- afterEach(function () {
- App.config.renderConfigs.restore();
- });
- it('if wizard isn\'t addService, should set output of App.config.renderConfigs', function () {
- var serviceConfigs = Em.A([
- {},
- {}
- ]);
- sinon.stub(App.config, 'renderConfigs', function () {
- return serviceConfigs;
- });
- installerStep7Controller.set('wizardController.name', 'installerController');
- installerStep7Controller.setStepConfigs([], []);
- expect(installerStep7Controller.get('stepConfigs')).to.eql(serviceConfigs);
- });
- it('addServiceWizard used', function () {
- var serviceConfigs = Em.A([Em.Object.create({serviceName: 's1'}), Em.Object.create({serviceName: 's2'})]);
- installerStep7Controller.set('wizardController.name', 'addServiceController');
- installerStep7Controller.reopen({selectedServiceNames: ['s2']});
- sinon.stub(App.config, 'renderConfigs', function () {
- return serviceConfigs;
- });
- installerStep7Controller.setStepConfigs([], []);
- expect(installerStep7Controller.get('stepConfigs').everyProperty('showConfig', true)).to.equal(true);
- expect(installerStep7Controller.get('stepConfigs').findProperty('serviceName', 's2').get('selected')).to.equal(true);
- });
- it('addServiceWizard used, HA enabled', function () {
- sinon.stub(App, 'get', function (k) {
- if (k === 'isHaEnabled') {
- return true;
- }
- return Em.get(App, k);
- });
- var serviceConfigs = Em.A([
- Em.Object.create({
- serviceName: 'HDFS',
- configs: [
- {category: 'SNameNode'},
- {category: 'SNameNode'},
- {category: 'NameNode'},
- {category: 'NameNode'},
- {category: 'SNameNode'}
- ]
- }),
- Em.Object.create({serviceName: 's2'})]
- );
- installerStep7Controller.set('wizardController.name', 'addServiceController');
- installerStep7Controller.reopen({selectedServiceNames: ['HDFS', 's2']});
- sinon.stub(App.config, 'renderConfigs', function () {
- return serviceConfigs;
- });
- installerStep7Controller.setStepConfigs([], []);
- expect(installerStep7Controller.get('stepConfigs').everyProperty('showConfig', true)).to.equal(true);
- expect(installerStep7Controller.get('stepConfigs').findProperty('serviceName', 'HDFS').get('selected')).to.equal(true);
- expect(installerStep7Controller.get('stepConfigs').findProperty('serviceName', 'HDFS').get('configs').length).to.equal(2);
- App.get.restore();
- });
- });
- describe('#checkHostOverrideInstaller', function () {
- beforeEach(function () {
- sinon.stub(installerStep7Controller, 'loadConfigGroups', Em.K);
- sinon.stub(installerStep7Controller, 'loadInstalledServicesConfigGroups', Em.K);
- });
- afterEach(function () {
- installerStep7Controller.loadConfigGroups.restore();
- installerStep7Controller.loadInstalledServicesConfigGroups.restore();
- App.get.restore();
- });
- Em.A([
- {
- hostOverridesInstaller: false,
- installedServiceNames: [],
- m: 'hostOverridesInstaller is false, installedServiceNames is empty',
- e: {
- loadConfigGroups: false,
- loadInstalledServicesConfigGroups: false
- }
- },
- {
- hostOverridesInstaller: false,
- installedServiceNames: ['s1', 's2'],
- m: 'hostOverridesInstaller is false, installedServiceNames is n\'t empty',
- e: {
- loadConfigGroups: false,
- loadInstalledServicesConfigGroups: false
- }
- },
- {
- hostOverridesInstaller: true,
- installedServiceNames: [],
- m: 'hostOverridesInstaller is true, installedServiceNames is empty',
- e: {
- loadConfigGroups: true,
- loadInstalledServicesConfigGroups: false
- }
- },
- {
- hostOverridesInstaller: true,
- installedServiceNames: ['s1', 's2', 's3'],
- m: 'hostOverridesInstaller is true, installedServiceNames isn\'t empty',
- e: {
- loadConfigGroups: true,
- loadInstalledServicesConfigGroups: true
- }
- }
- ]).forEach(function (test) {
- it(test.m, function () {
- sinon.stub(App, 'get', function (k) {
- if (k === 'supports.hostOverridesInstaller') return test.hostOverridesInstaller;
- return Em.get(App, k);
- });
- installerStep7Controller.reopen({installedServiceNames: test.installedServiceNames});
- installerStep7Controller.checkHostOverrideInstaller();
- if (test.e.loadConfigGroups) {
- expect(installerStep7Controller.loadConfigGroups.calledOnce).to.equal(true);
- }
- else {
- expect(installerStep7Controller.loadConfigGroups.called).to.equal(false);
- }
- if (test.e.loadInstalledServicesConfigGroups) {
- expect(installerStep7Controller.loadInstalledServicesConfigGroups.calledOnce).to.equal(true);
- }
- else {
- expect(installerStep7Controller.loadInstalledServicesConfigGroups.called).to.equal(false);
- }
- });
- });
- });
- describe('#loadStep', function () {
- beforeEach(function () {
- installerStep7Controller.reopen({
- content: {services: []},
- wizardController: Em.Object.create({
- getDBProperty: function (k) {
- return this.get(k);
- }
- })
- });
- sinon.stub(App.config, 'mergePreDefinedWithStored', Em.K);
- sinon.stub(App.config, 'addAdvancedConfigs', Em.K);
- sinon.stub(App.config, 'addCustomConfigs', Em.K);
- sinon.stub(App.config, 'fileConfigsIntoTextarea', Em.K);
- sinon.stub(installerStep7Controller, 'clearStep', Em.K);
- sinon.stub(installerStep7Controller, 'getConfigTags', Em.K);
- sinon.stub(installerStep7Controller, 'setInstalledServiceConfigs', Em.K);
- sinon.stub(installerStep7Controller, 'resolveServiceDependencyConfigs', Em.K);
- sinon.stub(installerStep7Controller, 'setStepConfigs', Em.K);
- sinon.stub(installerStep7Controller, 'checkHostOverrideInstaller', Em.K);
- sinon.stub(installerStep7Controller, 'activateSpecialConfigs', Em.K);
- sinon.stub(installerStep7Controller, 'selectProperService', Em.K);
- sinon.stub(App.router, 'send', Em.K);
- });
- afterEach(function () {
- App.config.mergePreDefinedWithStored.restore();
- App.config.addAdvancedConfigs.restore();
- App.config.addCustomConfigs.restore();
- App.config.fileConfigsIntoTextarea.restore();
- installerStep7Controller.clearStep.restore();
- installerStep7Controller.getConfigTags.restore();
- installerStep7Controller.setInstalledServiceConfigs.restore();
- installerStep7Controller.resolveServiceDependencyConfigs.restore();
- installerStep7Controller.setStepConfigs.restore();
- installerStep7Controller.checkHostOverrideInstaller.restore();
- installerStep7Controller.activateSpecialConfigs.restore();
- installerStep7Controller.selectProperService.restore();
- App.router.send.restore();
- });
- it('should call clearStep', function () {
- installerStep7Controller.loadStep();
- expect(installerStep7Controller.clearStep.calledOnce).to.equal(true);
- });
- it('shouldn\'t do nothing if isAdvancedConfigLoaded is false', function () {
- installerStep7Controller.set('isAdvancedConfigLoaded', false);
- installerStep7Controller.loadStep();
- expect(installerStep7Controller.clearStep.called).to.equal(false);
- });
- it('should use App.config to map configs', function () {
- installerStep7Controller.loadStep();
- expect(App.config.mergePreDefinedWithStored.calledOnce).to.equal(true);
- expect(App.config.addAdvancedConfigs.calledOnce).to.equal(true);
- expect(App.config.addCustomConfigs.calledOnce).to.equal(true);
- });
- Em.A([
- {
- allSelectedServiceNames: ['YARN'],
- capacitySchedulerUi: false,
- e: true
- },
- {
- allSelectedServiceNames: ['YARN'],
- capacitySchedulerUi: true,
- e: false
- },
- {
- allSelectedServiceNames: ['HDFS'],
- capacitySchedulerUi: false,
- e: false
- },
- {
- allSelectedServiceNames: ['HDFS'],
- capacitySchedulerUi: true,
- e: false
- }
- ]).forEach(function (test) {
- it('allSelectedServiceNames = ' + JSON.stringify(test.allSelectedServiceNames) + ', capacitySchedulerUi = ' + test.capacitySchedulerUi.toString(), function () {
- sinon.stub(App, 'get', function (k) {
- if (k === 'supports.capacitySchedulerUi') return test.capacitySchedulerUi;
- return Em.get(App, k);
- });
- installerStep7Controller.reopen({allSelectedServiceNames: test.allSelectedServiceNames});
- installerStep7Controller.loadStep();
- if (test.e) {
- expect(App.config.fileConfigsIntoTextarea.calledOnce).to.equal(true);
- }
- else {
- expect(App.config.fileConfigsIntoTextarea.called).to.equal(false);
- }
- App.get.restore();
- });
- });
- it('should call getConfigTags, setInstalledServiceConfigs for addServiceController', function () {
- installerStep7Controller.set('wizardController.name', 'addServiceController');
- installerStep7Controller.loadStep();
- expect(installerStep7Controller.getConfigTags.calledOnce).to.equal(true);
- expect(installerStep7Controller.setInstalledServiceConfigs.calledOnce).to.equal(true);
- });
- Em.A([
- {
- allSelectedServiceNames: ['STORM'],
- installedServiceNames: ['STORM'],
- m: 'allSelectedServiceNames contains STORM, installedServiceNames contains STORM',
- e: true
- },
- {
- allSelectedServiceNames: [],
- installedServiceNames: ['STORM'],
- m: 'allSelectedServiceNames doesn\'t contain STORM, installedServiceNames contains STORM',
- e: true
- },
- {
- allSelectedServiceNames: ['STORM'],
- installedServiceNames: [],
- m: 'allSelectedServiceNames contains STORM, installedServiceNames doesn\'t contain STORM',
- e: true
- },
- {
- allSelectedServiceNames: [],
- installedServiceNames: [],
- m: 'allSelectedServiceNames doesn\'t contain STORM, installedServiceNames doesn\'t contain STORM',
- e: false
- }
- ]).forEach(function (test) {
- it(test.m, function () {
- installerStep7Controller.reopen({
- allSelectedServiceNames: test.allSelectedServiceNames,
- installedServiceNames: test.installedServiceNames
- });
- installerStep7Controller.loadStep();
- if (test.e) {
- expect(installerStep7Controller.resolveServiceDependencyConfigs.calledOnce).to.equal(true);
- }
- else {
- expect(installerStep7Controller.resolveServiceDependencyConfigs.called).to.equal(false);
- }
- });
- });
- it('should call setStepConfigs', function () {
- installerStep7Controller.loadStep();
- expect(installerStep7Controller.setStepConfigs.calledOnce).to.equal(true);
- });
- it('should call checkHostOverrideInstaller', function () {
- installerStep7Controller.loadStep();
- expect(installerStep7Controller.checkHostOverrideInstaller.calledOnce).to.equal(true);
- });
- it('should call activateSpecialConfigs', function () {
- installerStep7Controller.loadStep();
- expect(installerStep7Controller.activateSpecialConfigs.calledOnce).to.equal(true);
- });
- it('should call selectProperService', function () {
- installerStep7Controller.loadStep();
- expect(installerStep7Controller.selectProperService.calledOnce).to.equal(true);
- });
- Em.A([
- {
- m: 'should skip config step',
- skipConfigStep: true,
- e: true
- },
- {
- m: 'shouldn\'t skip config step',
- skipConfigStep: false,
- e: false
- }
- ]).forEach(function (test) {
- it(test.m, function () {
- installerStep7Controller.set('content.skipConfigStep', test.skipConfigStep);
- installerStep7Controller.loadStep();
- if (test.e) {
- expect(App.router.send.calledWith('next')).to.equal(true);
- }
- else {
- expect(App.router.send.called).to.equal(false);
- }
- });
- });
- });
- describe('#_updateValueForCheckBoxConfig', function () {
- Em.A([
- {
- v: 'true',
- e: true
- },
- {
- v: 'false',
- e: false
- }
- ]).forEach(function (test) {
- it(test.v, function () {
- var serviceConfigProperty = Em.Object.create({value: test.v});
- installerStep7Controller._updateValueForCheckBoxConfig(serviceConfigProperty);
- expect(serviceConfigProperty.get('value')).to.equal(test.e);
- expect(serviceConfigProperty.get('defaultValue')).to.equal(test.e);
- });
- });
- });
- describe('#_updateIsEditableFlagForConfig', function () {
- Em.A([
- {
- isAdmin: false,
- isReconfigurable: false,
- isHostsConfigsPage: true,
- defaultGroupSelected: false,
- m: 'false for non-admin users',
- e: false
- },
- {
- isAdmin: true,
- isReconfigurable: false,
- isHostsConfigsPage: true,
- defaultGroupSelected: false,
- m: 'false if defaultGroupSelected is false and isHostsConfigsPage is true',
- e: false
- },
- {
- isAdmin: true,
- isReconfigurable: false,
- isHostsConfigsPage: true,
- defaultGroupSelected: true,
- m: 'false if defaultGroupSelected is true and isHostsConfigsPage is true',
- e: false
- },
- {
- isAdmin: true,
- isReconfigurable: false,
- isHostsConfigsPage: false,
- defaultGroupSelected: false,
- m: 'false if defaultGroupSelected is false and isHostsConfigsPage is false',
- e: false
- },
- {
- isAdmin: true,
- isReconfigurable: true,
- isHostsConfigsPage: false,
- defaultGroupSelected: true,
- m: 'equal to isReconfigurable if defaultGroupSelected is true and isHostsConfigsPage is false',
- e: true
- }
- ]).forEach(function (test) {
- it(test.m, function () {
- sinon.stub(App, 'get', function (k) {
- if (k === 'isAdmin') return test.isAdmin;
- return Em.get(App, k);
- });
- installerStep7Controller.reopen({isHostsConfigsPage: test.isHostsConfigsPage});
- var serviceConfigProperty = Em.Object.create({
- isReconfigurable: test.isReconfigurable
- });
- installerStep7Controller._updateIsEditableFlagForConfig(serviceConfigProperty, test.defaultGroupSelected);
- App.get.restore();
- expect(serviceConfigProperty.get('isEditable')).to.equal(test.e);
- });
- });
- });
- describe('#_updateOverridesForConfig', function () {
- it('should set empty array', function () {
- var serviceConfigProperty = Em.Object.create({
- overrides: null
- }), component = Em.Object.create();
- installerStep7Controller._updateOverridesForConfig(serviceConfigProperty, component);
- expect(serviceConfigProperty.get('overrides')).to.eql(Em.A([]));
- });
- it('host overrides not supported', function () {
- var serviceConfigProperty = Em.Object.create({
- overrides: [
- {value: 'new value'}
- ]
- }), component = Em.Object.create({selectedConfigGroup: {isDefault: false}});
- installerStep7Controller._updateOverridesForConfig(serviceConfigProperty, component);
- expect(serviceConfigProperty.get('overrides').length).to.equal(1);
- expect(serviceConfigProperty.get('overrides.firstObject.value')).to.equal('new value');
- expect(serviceConfigProperty.get('overrides.firstObject.isOriginalSCP')).to.equal(false);
- expect(serviceConfigProperty.get('overrides.firstObject.parentSCP')).to.eql(serviceConfigProperty);
- });
- it('host overrides supported', function () {
- sinon.stub(App, 'get', function (k) {
- if (k === 'supports.hostOverrides') return true;
- return Em.get(App, k);
- });
- var serviceConfigProperty = Em.Object.create({
- overrides: [
- {value: 'new value', group: Em.Object.create({name: 'n1'})}
- ]
- }),
- component = Em.Object.create({
- selectedConfigGroup: {isDefault: true},
- configGroups: Em.A([
- Em.Object.create({name: 'n1', properties: []})
- ])
- });
- installerStep7Controller._updateOverridesForConfig(serviceConfigProperty, component);
- App.get.restore();
- expect(serviceConfigProperty.get('overrides').length).to.equal(1);
- expect(serviceConfigProperty.get('overrides.firstObject.value')).to.equal('new value');
- expect(serviceConfigProperty.get('overrides.firstObject.isOriginalSCP')).to.equal(false);
- expect(serviceConfigProperty.get('overrides.firstObject.parentSCP')).to.eql(serviceConfigProperty);
- expect(component.get('configGroups.firstObject.properties').length).to.equal(1);
- expect(component.get('configGroups.firstObject.properties.firstObject.isEditable')).to.equal(false);
- expect(component.get('configGroups.firstObject.properties.firstObject.group')).to.be.object;
- });
- });
- describe('#_updateValidatorsForConfig', function () {
- it('should set isVisible to false', function () {
- var serviceConfigProperty = Em.Object.create({serviceName: 's1', isVisible: true}),
- component = Em.Object.create({serviceName: 's2'}),
- serviceConfigsData = {};
- installerStep7Controller._updateValidatorsForConfig(serviceConfigProperty, component, serviceConfigsData);
- expect(serviceConfigProperty.get('isVisible')).to.equal(false);
- });
- it('should set serviceValidator', function () {
- var serviceConfigProperty = Em.Object.create({serviceName: 's1', name: 'n1', serviceValidator: null}),
- component = Em.Object.create({serviceName: 's1'}),
- serviceConfigsData = {
- configsValidator: Em.Object.create({
- configValidators: {
- n1: {},
- n2: {}
- }
- })
- };
- installerStep7Controller._updateValidatorsForConfig(serviceConfigProperty, component, serviceConfigsData);
- expect(serviceConfigProperty.get('serviceValidator')).to.be.object;
- expect(Em.keys(serviceConfigProperty.get('serviceValidator.configValidators'))).to.eql(['n1', 'n2']);
- });
- });
- describe('#getRecommendedDefaultsForComponent', function () {
- beforeEach(function () {
- sinon.stub(App.router, 'get', function (k) {
- if (k === 'mainServiceInfoConfigsController') return Em.Object.create({
- getInfoForDefaults: Em.K
- });
- return Em.get(App.router, k);
- });
- });
- afterEach(function () {
- App.router.get.restore();
- });
- it('should return empty object', function () {
- var serviceConfigsData = [
- {serviceName: 's1'}
- ],
- serviceName = 's1';
- installerStep7Controller.reopen({serviceConfigsData: serviceConfigsData});
- var r = installerStep7Controller._getRecommendedDefaultsForComponent(serviceName);
- expect(r).to.eql({});
- });
- it('should return recommendedDefaults', function () {
- var serviceConfigsData = [
- {serviceName: 's1', defaultsProviders: [
- {getDefaults: function () {
- return {c1: 'v1', c2: 'v2'};
- }},
- {getDefaults: function () {
- return {c3: 'v3', c4: 'v4'};
- }}
- ]}
- ],
- serviceName = 's1';
- installerStep7Controller.reopen({serviceConfigsData: serviceConfigsData});
- var r = installerStep7Controller._getRecommendedDefaultsForComponent(serviceName);
- expect(r).to.eql({c1: 'v1', c2: 'v2', c3: 'v3', c4: 'v4'});
- });
- });
- describe('#loadComponentConfigs', function () {
- beforeEach(function () {
- sinon.stub(installerStep7Controller, '_updateValidatorsForConfig', Em.K);
- sinon.stub(installerStep7Controller, '_updateOverridesForConfig', Em.K);
- sinon.stub(installerStep7Controller, '_updateIsEditableFlagForConfig', Em.K);
- });
- afterEach(function () {
- installerStep7Controller._updateIsEditableFlagForConfig.restore();
- installerStep7Controller._updateOverridesForConfig.restore();
- installerStep7Controller._updateValidatorsForConfig.restore();
- });
- it('should set recommended defaults', function () {
- var configs = [],
- serviceConfigsData = [
- {serviceName: 's1', configsValidator: Em.Object.create({recommendedDefaults: {}})}
- ],
- component = Em.Object.create({serviceName: 's1'}),
- componentConfig = {},
- recommendedDefaults = {c1: 'v1', c2: 'v2'};
- installerStep7Controller.reopen({serviceConfigsData: serviceConfigsData});
- sinon.stub(installerStep7Controller, '_getRecommendedDefaultsForComponent', function () {
- return recommendedDefaults;
- });
- installerStep7Controller.loadComponentConfigs(configs, componentConfig, component);
- installerStep7Controller._getRecommendedDefaultsForComponent.restore();
- expect(installerStep7Controller.get('serviceConfigsData.firstObject.configsValidator.recommendedDefaults')).to.eql(recommendedDefaults);
- });
- it('should skip null configs', function () {
- var configs = [null, null, null],
- serviceConfigsData = [
- {serviceName: 's1'}
- ],
- component = Em.Object.create({serviceName: 's1'}),
- componentConfig = Em.Object.create({configs: []});
- installerStep7Controller.reopen({serviceConfigsData: serviceConfigsData});
- installerStep7Controller.loadComponentConfigs(configs, componentConfig, component);
- expect(componentConfig.get('configs.length')).to.equal(0);
- });
- it('should update isOverridable flag', function () {
- var configs = [Em.Object.create({validate: Em.K}), Em.Object.create({validate: Em.K})],
- componentConfig = Em.Object.create({configs: []}),
- serviceConfigsData = [
- {serviceName: 's1'}
- ],
- component = Em.Object.create({serviceName: 's1'});
- installerStep7Controller.reopen({serviceConfigsData: serviceConfigsData});
- installerStep7Controller.loadComponentConfigs(configs, componentConfig, component);
- expect(componentConfig.get('configs').getEach('isOverridable')).to.eql([true, true]);
- });
- it('should update value for checkboxes', function () {
- var configs = [
- Em.Object.create({displayType: 'checkbox', value: 'true', validate: Em.K}),
- Em.Object.create({displayType: 'checkbox', value: 'false', validate: Em.K})
- ],
- componentConfig = Em.Object.create({configs: []}),
- serviceConfigsData = [
- {serviceName: 's1'}
- ],
- component = Em.Object.create({serviceName: 's1'});
- installerStep7Controller.reopen({serviceConfigsData: serviceConfigsData});
- installerStep7Controller.loadComponentConfigs(configs, componentConfig, component);
- expect(componentConfig.get('configs').getEach('value')).to.eql([true, false]);
- expect(componentConfig.get('configs').getEach('defaultValue')).to.eql([true, false]);
- });
- });
- describe('#_createSiteToTagMap', function () {
- it('should map sites', function () {
- var desired_configs = {
- s1: {tag: 't1'},
- s2: {tag: 't1'},
- s3: {tag: 't3'},
- s4: {tag: 't1'},
- s5: {tag: 't2'}
- },
- sites = ['s1', 's2', 's3'],
- expected = {s1: 't1', s2: 't1', s3: 't3'};
- var r = installerStep7Controller._createSiteToTagMap(desired_configs, sites);
- expect(r).to.eql(expected);
- });
- });
- });
|