12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448 |
- /**
- * 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('controllers/main/host/details');
- require('models/service');
- require('models/host_component');
- var batchUtils = require('utils/batch_scheduled_requests');
- var controller;
- describe('App.MainHostDetailsController', function () {
- beforeEach(function() {
- controller = App.MainHostDetailsController.create({
- securityEnabled: function () {
- return this.get('mockSecurityStatus');
- }.property(),
- mockSecurityStatus: false
- });
- });
- describe('#serviceActiveComponents', function () {
- it('No host-components', function () {
- controller.set('content', {hostComponents: []});
- expect(controller.get('serviceActiveComponents')).to.be.empty;
- });
- it('No host-components in active state', function () {
- controller.set('content', {hostComponents: [Em.Object.create({
- service: {
- isInPassive: true
- }
- })]});
- expect(controller.get('serviceActiveComponents')).to.be.empty;
- });
- it('Host-components in active state', function () {
- controller.set('content', {hostComponents: [Em.Object.create({
- service: {
- isInPassive: false
- }
- })]});
- expect(controller.get('serviceActiveComponents')).to.eql([Em.Object.create({
- service: {
- isInPassive: false
- }
- })]);
- });
- });
- describe('#serviceNonClientActiveComponents', function () {
- it('No active host-components', function () {
- controller.reopen({
- serviceActiveComponents: []
- });
- controller.set('serviceActiveComponents', []);
- expect(controller.get('serviceNonClientActiveComponents')).to.be.empty;
- });
- it('Active host-component is client', function () {
- controller.reopen({serviceActiveComponents: [Em.Object.create({
- isClient: true
- })]});
- expect(controller.get('serviceNonClientActiveComponents')).to.be.empty;
- });
- it('Active host-component is not client', function () {
- controller.reopen({serviceActiveComponents: [Em.Object.create({
- isClient: false
- })]});
- expect(controller.get('serviceNonClientActiveComponents')).to.eql( [Em.Object.create({
- isClient: false
- })]);
- });
- });
- describe('#deleteComponent()', function () {
- beforeEach(function () {
- sinon.spy(App.ModalPopup, "show");
- });
- afterEach(function () {
- App.ModalPopup.show.restore();
- });
- it('confirm popup should be displayed', function () {
- var event = {
- context: Em.Object.create({})
- };
- controller.deleteComponent(event);
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- });
- });
- describe('#mimicWorkStatusChange()', function () {
- var clock;
- beforeEach(function () {
- clock = sinon.useFakeTimers();
- });
- afterEach(function () {
- clock.restore()
- });
- it('change status of object', function () {
- var entity = Em.Object.create({
- workStatus: ''
- });
- controller.mimicWorkStatusChange(entity, 'STATE1', 'STATE2');
- expect(entity.get('workStatus')).to.equal('STATE1');
- clock.tick(App.testModeDelayForActions);
- expect(entity.get('workStatus')).to.equal('STATE2');
- });
- it('change status of objects in array', function () {
- var entity = [Em.Object.create({
- workStatus: ''
- })];
- controller.mimicWorkStatusChange(entity, 'STATE1', 'STATE2');
- expect(entity[0].get('workStatus')).to.equal('STATE1');
- clock.tick(App.testModeDelayForActions);
- expect(entity[0].get('workStatus')).to.equal('STATE2');
- });
- });
- describe('#upgradeComponent()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(App.ajax, "send", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- App.ajax.send.restore();
- });
- it('confirm popup should be displayed', function () {
- var popup = controller.upgradeComponent({context: Em.Object.create()});
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- describe('#restartComponent()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(batchUtils, "restartHostComponents", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- batchUtils.restartHostComponents.restore();
- });
- it('popup should be displayed', function () {
- var popup = controller.restartComponent({context: Em.Object.create({'displayName': 'Comp1'})});
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(batchUtils.restartHostComponents.calledOnce).to.be.true;
- });
- });
- describe('#addComponent()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, "addClientComponent", Em.K);
- sinon.stub(controller, "primary", Em.K);
- controller.set('content', {hostComponents: [Em.Object.create({
- componentName: "HDFS_CLIENT"
- })]});
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.addClientComponent.restore();
- controller.primary.restore();
- });
- it('add ZOOKEEPER_SERVER', function () {
- var event = {context: Em.Object.create({
- componentName: 'ZOOKEEPER_SERVER'
- })};
- var popup = controller.addComponent(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.primary.calledWith(Em.Object.create({
- componentName: 'ZOOKEEPER_SERVER'
- }))).to.be.true;
- });
- it('add slave component, securityEnabled = true', function () {
- var event = {context: Em.Object.create({
- componentName: 'HIVE_CLIENT'
- })};
- controller.set('mockSecurityStatus', true);
- var popup = controller.addComponent(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.primary.calledWith(Em.Object.create({
- componentName: 'HIVE_CLIENT'
- }))).to.be.true;
- });
- it('add slave component, securityEnabled = false', function () {
- var event = {context: Em.Object.create({
- componentName: 'HIVE_CLIENT'
- })};
- controller.set('mockSecurityStatus', false);
- controller.addComponent(event);
- expect(controller.addClientComponent.calledWith(Em.Object.create({
- componentName: 'HIVE_CLIENT'
- }))).to.be.true;
- });
- });
- describe('#formatClientsMessage()', function () {
- var testCases = [
- {
- title: 'subComponentNames is null',
- client: Em.Object.create({
- subComponentNames: null,
- displayName: 'CLIENTS'
- }),
- result: 'CLIENTS'
- },
- {
- title: 'subComponentNames is empty',
- client: Em.Object.create({
- subComponentNames: [],
- displayName: 'CLIENTS'
- }),
- result: 'CLIENTS'
- },
- {
- title: 'displayName is null',
- client: Em.Object.create({
- subComponentNames: ['DATANODE'],
- displayName: null
- }),
- result: ' (DataNode)'
- },
- {
- title: 'displayName is CLIENTS',
- client: Em.Object.create({
- subComponentNames: ['DATANODE'],
- displayName: 'CLIENTS'
- }),
- result: 'CLIENTS (DataNode)'
- }
- ];
- testCases.forEach(function (test) {
- it(test.title, function () {
- expect(controller.formatClientsMessage(test.client)).to.equal(test.result);
- });
- });
- });
- describe('#addClientComponent()', function () {
- beforeEach(function () {
- sinon.spy(App.ModalPopup, "show");
- sinon.stub(controller, "primary", Em.K);
- });
- afterEach(function () {
- App.ModalPopup.show.restore();
- controller.primary.restore();
- });
- it('not CLIENT component', function () {
- var component = Em.Object.create({'componentName': 'Comp1'});
- var popup = controller.addClientComponent(component);
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.primary.calledWith(Em.Object.create({'componentName': 'Comp1'}))).to.be.true;
- });
- it('CLIENT components, with empty subComponentNames', function () {
- var component = Em.Object.create({
- componentName: 'CLIENTS',
- subComponentNames: []
- });
- var popup = controller.addClientComponent(component);
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.primary.calledOnce).to.be.false;
- });
- it('CLIENT components, with two sub-component', function () {
- var component = Em.Object.create({
- componentName: 'CLIENTS',
- subComponentNames: ['DATANODE', 'TASKTRACKER']
- });
- var popup = controller.addClientComponent(component);
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.primary.calledTwice).to.be.true;
- });
- });
- describe('#primary()', function () {
- beforeEach(function () {
- sinon.stub(App.ajax, "send", Em.K);
- });
- afterEach(function () {
- App.ajax.send.restore();
- });
- it('Query should be sent', function () {
- var component = Em.Object.create({
- componentName: 'COMP1',
- displayName: 'comp1'
- });
- controller.primary(component);
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- describe('#installNewComponentSuccessCallback()', function () {
- beforeEach(function () {
- sinon.stub(controller, "showBackgroundOperationsPopup", Em.K);
- });
- afterEach(function () {
- controller.showBackgroundOperationsPopup.restore();
- });
- it('data.Requests is null', function () {
- var data = {Requests: null};
- expect(controller.installNewComponentSuccessCallback(data, {}, {})).to.be.false;
- expect(controller.showBackgroundOperationsPopup.called).to.be.false;
- });
- it('data.Requests.id is null', function () {
- var data = {Requests: {id: null}};
- expect(controller.installNewComponentSuccessCallback(data, {}, {})).to.be.false;
- expect(controller.showBackgroundOperationsPopup.called).to.be.false;
- });
- it('data.Requests.id is correct', function () {
- var data = {Requests: {id: 1}};
- expect(controller.installNewComponentSuccessCallback(data, {}, {component: []})).to.be.true;
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- });
- describe('#refreshComponentConfigs()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, "sendRefreshComponentConfigsCommand", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.sendRefreshComponentConfigsCommand.restore();
- });
- it('popup should be displayed', function () {
- var popup = controller.refreshComponentConfigs({context: Em.Object.create({'displayName': 'Comp1'})});
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.sendRefreshComponentConfigsCommand.calledOnce).to.be.true;
- });
- });
- describe('#sendRefreshComponentConfigsCommand()', function () {
- beforeEach(function () {
- sinon.stub(App.ajax, "send", Em.K);
- });
- afterEach(function () {
- App.ajax.send.restore();
- });
- it('Query should be sent', function () {
- var component = Em.Object.create({
- service: {},
- componentName: 'COMP1',
- host: {}
- });
- controller.sendRefreshComponentConfigsCommand(component, {});
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- describe('#loadConfigs()', function () {
- beforeEach(function () {
- sinon.stub(App.ajax, "send", Em.K);
- });
- afterEach(function () {
- App.ajax.send.restore();
- });
- it('Query should be sent', function () {
- controller.loadConfigs();
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- describe('#constructConfigUrlParams()', function () {
- it('URL params should be empty', function () {
- var data = {};
- App.Service.find().clear();
- expect(controller.constructConfigUrlParams(data)).to.eql([]);
- });
- it('isHaEnabled = true', function () {
- App.store.load(App.Service, {
- id: 'HDFS',
- service_name: 'HDFS'
- });
- var data = {Clusters: {desired_configs: {'core-site': {tag: 1}}}};
- App.HostComponent.find().clear();
- App.set('currentStackVersion', 'HDP-2.0.2');
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=core-site&tag=1)']);
- App.store.load(App.HostComponent, {
- id: 'SECONDARY_NAMENODE_host1',
- component_name: 'SECONDARY_NAMENODE'
- });
- App.set('currentStackVersion', 'HDP-2.0.1');
- });
- it('HBASE is installed', function () {
- App.store.load(App.Service, {
- id: 'HBASE',
- service_name: 'HBASE'
- });
- var data = {Clusters: {desired_configs: {'hbase-site': {tag: 1}}}};
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=hbase-site&tag=1)']);
- App.Service.find().clear();
- });
- it('HIVE is installed', function () {
- App.store.load(App.Service, {
- id: 'HIVE',
- service_name: 'HIVE'
- });
- var data = {Clusters: {desired_configs: {'webhcat-site': {tag: 1},'hive-site': {tag: 1}}}};
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=webhcat-site&tag=1)','(type=hive-site&tag=1)']);
- App.Service.find().clear();
- });
- it('STORM is installed', function () {
- App.store.load(App.Service, {
- id: 'STORM',
- service_name: 'STORM'
- });
- var data = {Clusters: {desired_configs: {'storm-site': {tag: 1}}}};
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=storm-site&tag=1)']);
- App.Service.find().clear();
- });
- it('SLIDER is installed', function () {
- App.store.load(App.Service, {
- id: 'SLIDER',
- service_name: 'SLIDER'
- });
- var data = {Clusters: {desired_configs: {'slider-client': {tag: 1}}}};
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=slider-client&tag=1)']);
- App.Service.find().clear();
- });
- });
- describe('#loadConfigsSuccessCallback()', function () {
- beforeEach(function () {
- sinon.stub(App.ajax, "send", Em.K);
- sinon.stub(controller, "constructConfigUrlParams", function () {
- return this.get('mockUrlParams');
- });
- });
- afterEach(function () {
- App.ajax.send.restore();
- controller.constructConfigUrlParams.restore();
- });
- it('url params is empty', function () {
- controller.set('mockUrlParams', []);
- expect(controller.loadConfigsSuccessCallback()).to.be.false;
- expect(App.ajax.send.called).to.be.false;
- });
- it('url params are correct', function () {
- controller.set('mockUrlParams', ['param1']);
- expect(controller.loadConfigsSuccessCallback()).to.be.true;
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- describe('#saveZkConfigs()', function () {
- beforeEach(function () {
- sinon.stub(controller, "getZkServerHosts", Em.K);
- sinon.stub(controller, "concatZkNames", Em.K);
- sinon.stub(controller, "setZKConfigs", Em.K);
- sinon.spy(App.ajax, "send");
- });
- afterEach(function () {
- controller.getZkServerHosts.restore();
- controller.concatZkNames.restore();
- controller.setZKConfigs.restore();
- App.ajax.send.restore();
- });
- it('data.items is empty', function () {
- var data = {items: []};
- controller.saveZkConfigs(data);
- expect(App.ajax.send.called).to.be.false;
- });
- it('data.items has one item', function () {
- var data = {items: [
- {
- type: 'type1',
- properties: {}
- }
- ]};
- controller.saveZkConfigs(data);
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- it('data.items has two items', function () {
- var data = {items: [
- {
- type: 'type1',
- properties: {}
- },
- {
- type: 'type2',
- properties: {}
- }
- ]};
- controller.saveZkConfigs(data);
- expect(App.ajax.send.calledTwice).to.be.true;
- });
- });
- describe('#setZKConfigs()', function () {
- it('configs is null', function () {
- expect(controller.setZKConfigs(null)).to.be.false;
- });
- it('zks is null', function () {
- expect(controller.setZKConfigs({}, '', null)).to.be.false;
- });
- it('isHaEnabled = true', function () {
- var configs = {'core-site': {}};
- App.HostComponent.find().clear();
- App.store.load(App.Service, {
- id: 'HDFS',
- service_name: 'HDFS'
- });
- App.set('currentStackVersion', 'HDP-2.0.2');
- expect(controller.setZKConfigs(configs, 'host1:2181', [])).to.be.true;
- expect(configs).to.eql({"core-site": {
- "ha.zookeeper.quorum": "host1:2181"
- }});
- App.store.load(App.HostComponent, {
- id: 'SECONDARY_NAMENODE_host1',
- component_name: 'SECONDARY_NAMENODE'
- });
- App.set('currentStackVersion', 'HDP-2.0.1');
- });
- it('hbase-site is present', function () {
- var configs = {'hbase-site': {}};
- expect(controller.setZKConfigs(configs, '', ['host1', 'host2'])).to.be.true;
- expect(configs).to.eql({"hbase-site": {
- "hbase.zookeeper.quorum": "host1,host2"
- }});
- });
- it('webhcat-site is present', function () {
- var configs = {'webhcat-site': {}};
- expect(controller.setZKConfigs(configs, 'host1:2181', [])).to.be.true;
- expect(configs).to.eql({"webhcat-site": {
- "templeton.zookeeper.hosts": "host1:2181"
- }});
- });
- it('storm-site is present', function () {
- var configs = {'storm-site': {}};
- expect(controller.setZKConfigs(configs, '', ["host1", 'host2'])).to.be.true;
- expect(configs).to.eql({"storm-site": {
- "storm.zookeeper.servers": "['host1','host2']"
- }});
- });
- it('slider-client is present', function () {
- var configs = {'slider-client': {}};
- expect(controller.setZKConfigs(configs, 'host1:2181', [])).to.be.true;
- expect(configs).to.eql({"slider-client": {
- "slider.zookeeper.quorum": "host1:2181"
- }});
- });
- });
- describe('#concatZkNames()', function () {
- it('No ZooKeeper hosts', function () {
- expect(controller.concatZkNames([])).to.equal('');
- });
- it('One ZooKeeper host', function () {
- expect(controller.concatZkNames(['host1'])).to.equal('host1:2181');
- });
- it('Two ZooKeeper hosts', function () {
- expect(controller.concatZkNames(['host1', 'host2'])).to.equal('host1:2181,host2:2181');
- });
- });
- describe('#getZkServerHosts()', function () {
- beforeEach(function() {
- controller.set('content', {});
- });
- afterEach(function() {
- App.HostComponent.find.restore();
- });
- it('No ZooKeeper hosts, fromDeleteHost = false', function () {
- sinon.stub(App.HostComponent, 'find', function() {return []});
- controller.set('fromDeleteHost', false);
- expect(controller.getZkServerHosts()).to.be.empty;
- });
- it('No ZooKeeper hosts, fromDeleteHost = true', function () {
- sinon.stub(App.HostComponent, 'find', function() {return []});
- controller.set('fromDeleteHost', true);
- expect(controller.getZkServerHosts()).to.be.empty;
- expect(controller.get('fromDeleteHost')).to.be.false;
- });
- it('One ZooKeeper host, fromDeleteHost = false', function () {
- controller.set('fromDeleteHost', false);
- sinon.stub(App.HostComponent, 'find', function() {return [{id: 'ZOOKEEPER_SERVER_host1',
- componentName: 'ZOOKEEPER_SERVER',
- hostName: 'host1'
- }]});
- expect(controller.getZkServerHosts()).to.eql(['host1']);
- });
- it('One ZooKeeper host match current host name, fromDeleteHost = true', function () {
- sinon.stub(App.HostComponent, 'find', function() {return [{id: 'ZOOKEEPER_SERVER_host1',
- componentName: 'ZOOKEEPER_SERVER',
- hostName: 'host1'
- }]});
- controller.set('fromDeleteHost', true);
- controller.set('content.hostName', 'host1');
- expect(controller.getZkServerHosts()).to.be.empty;
- expect(controller.get('fromDeleteHost')).to.be.false;
- });
- it('One ZooKeeper host does not match current host name, fromDeleteHost = true', function () {
- sinon.stub(App.HostComponent, 'find', function() {return [{id: 'ZOOKEEPER_SERVER_host1',
- componentName: 'ZOOKEEPER_SERVER',
- hostName: 'host1'
- }]});
- controller.set('fromDeleteHost', true);
- controller.set('content.hostName', 'host2');
- expect(controller.getZkServerHosts()[0]).to.equal("host1");
- expect(controller.get('fromDeleteHost')).to.be.false;
- });
- });
- describe('#installComponent()', function () {
- beforeEach(function () {
- sinon.spy(App.ModalPopup, "show");
- sinon.stub(App.ajax, "send", Em.K);
- });
- afterEach(function () {
- App.ModalPopup.show.restore();
- App.ajax.send.restore();
- });
- it('popup should be displayed', function () {
- var event = {context: Em.Object.create()};
- var popup = controller.installComponent(event);
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- popup.onPrimary();
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- describe('#decommission()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, "runDecommission", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.runDecommission.restore();
- });
- it('popup should be displayed', function () {
- var popup = controller.decommission(Em.Object.create({service: {}}));
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.runDecommission.calledOnce).to.be.true;
- });
- });
- describe('#runDecommission()', function () {
- beforeEach(function () {
- sinon.stub(controller, "doDecommission", Em.K);
- sinon.stub(controller, "showBackgroundOperationsPopup", Em.K);
- });
- afterEach(function () {
- controller.doDecommission.restore();
- controller.showBackgroundOperationsPopup.restore();
- });
- it('HDFS service', function () {
- controller.runDecommission('host1', 'HDFS');
- expect(controller.doDecommission.calledWith('host1', 'HDFS', "NAMENODE", "DATANODE")).to.be.true;
- });
- it('YARN service', function () {
- controller.runDecommission('host1', 'YARN');
- expect(controller.doDecommission.calledWith('host1', 'YARN', "RESOURCEMANAGER", "NODEMANAGER")).to.be.true;
- });
- it('MAPREDUCE service', function () {
- controller.runDecommission('host1', 'MAPREDUCE');
- expect(controller.doDecommission.calledWith('host1', 'MAPREDUCE', "JOBTRACKER", "TASKTRACKER")).to.be.true;
- });
- });
- describe('#runRecommission()', function () {
- beforeEach(function () {
- sinon.stub(controller, "doRecommissionAndStart", Em.K);
- sinon.stub(controller, "doRecommissionAndRestart", Em.K);
- sinon.stub(controller, "showBackgroundOperationsPopup", Em.K);
- });
- afterEach(function () {
- controller.doRecommissionAndStart.restore();
- controller.doRecommissionAndRestart.restore();
- controller.showBackgroundOperationsPopup.restore();
- });
- it('HDFS service', function () {
- controller.runRecommission('host1', 'HDFS');
- expect(controller.doRecommissionAndStart.calledWith('host1', 'HDFS', "NAMENODE", "DATANODE")).to.be.true;
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- it('YARN service', function () {
- controller.runRecommission('host1', 'YARN');
- expect(controller.doRecommissionAndStart.calledWith('host1', 'YARN', "RESOURCEMANAGER", "NODEMANAGER")).to.be.true;
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- it('MAPREDUCE service', function () {
- controller.runRecommission('host1', 'MAPREDUCE');
- expect(controller.doRecommissionAndRestart.calledWith('host1', 'MAPREDUCE', "JOBTRACKER", "TASKTRACKER")).to.be.true;
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- it('HBASE service', function () {
- controller.runRecommission('host1', 'HBASE');
- expect(controller.doRecommissionAndStart.calledWith('host1', 'HBASE', "HBASE_MASTER", "HBASE_REGIONSERVER")).to.be.true;
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- });
- describe('#doDecommission()', function () {
- beforeEach(function () {
- sinon.stub(App.ajax, "send", Em.K);
- });
- afterEach(function () {
- App.ajax.send.restore();
- });
- it('Query should be sent', function () {
- controller.doDecommission('', '', '', '');
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- describe('#doDecommissionRegionServer()', function () {
- beforeEach(function () {
- sinon.stub(App.ajax, "send", Em.K);
- });
- afterEach(function () {
- App.ajax.send.restore();
- });
- it('Query should be sent', function () {
- controller.doDecommissionRegionServer('', '', '', '');
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- /**
- * TODO uncomment test when final rules will be implemented into warnBeforeDecommission function
- */
- /* describe('#warnBeforeDecommission()', function () {
- beforeEach(function () {
- sinon.stub(controller, "doDecommissionRegionServer", Em.K);
- sinon.stub(App.ModalPopup, "show", Em.K);
- });
- afterEach(function () {
- App.ModalPopup.show.restore();
- controller.doDecommissionRegionServer.restore();
- });
- it('Component in passive state', function () {
- controller.set('content.hostComponents', [Em.Object.create({
- componentName: 'HBASE_REGIONSERVER',
- passiveState: 'ON'
- })]);
- controller.warnBeforeDecommission('host1', 'HBASE', 'HBASE_REGIONSERVER', 'SLAVE');
- expect(App.ModalPopup.show.called).to.be.false;
- expect(controller.doDecommissionRegionServer.calledWith('host1', 'HBASE', 'HBASE_REGIONSERVER', 'SLAVE')).to.be.true;
- });
- it('Component is not in passive state', function () {
- controller.set('content.hostComponents', [Em.Object.create({
- componentName: 'HBASE_REGIONSERVER',
- passiveState: 'OFF'
- })]);
- controller.warnBeforeDecommission('host1', 'HBASE', 'HBASE_REGIONSERVER', 'SLAVE');
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- expect(controller.doDecommissionRegionServer.called).to.be.false;
- });
- });*/
- describe('#doRecommissionAndStart()', function () {
- beforeEach(function () {
- sinon.stub(App.ajax, "send", Em.K);
- });
- afterEach(function () {
- App.ajax.send.restore();
- });
- it('Query should be sent', function () {
- controller.doRecommissionAndStart('', '', '', '');
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- describe('#decommissionSuccessCallback()', function () {
- beforeEach(function () {
- sinon.stub(controller, "showBackgroundOperationsPopup", Em.K);
- });
- afterEach(function () {
- controller.showBackgroundOperationsPopup.restore();
- });
- it('data is null', function () {
- expect(controller.decommissionSuccessCallback(null)).to.be.false;
- expect(controller.showBackgroundOperationsPopup.called).to.be.false;
- });
- it('data has Requests', function () {
- var data = {Requests: []};
- expect(controller.decommissionSuccessCallback(data)).to.be.true;
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- it('data has resources', function () {
- var data = {resources: [{RequestSchedule: {}}]};
- expect(controller.decommissionSuccessCallback(data)).to.be.true;
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- });
- describe('#doRecommissionAndRestart()', function () {
- beforeEach(function () {
- sinon.stub(App.ajax, "send", Em.K);
- });
- afterEach(function () {
- App.ajax.send.restore();
- });
- it('Query should be sent', function () {
- controller.doRecommissionAndRestart('', '', '', '');
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- describe('#doAction()', function () {
- beforeEach(function () {
- sinon.stub(controller, "validateAndDeleteHost", Em.K);
- sinon.stub(controller, "doStartAllComponents", Em.K);
- sinon.stub(controller, "doStopAllComponents", Em.K);
- sinon.stub(controller, "doRestartAllComponents", Em.K);
- sinon.stub(controller, "onOffPassiveModeForHost", Em.K);
- });
- afterEach(function () {
- controller.validateAndDeleteHost.restore();
- controller.doStartAllComponents.restore();
- controller.doStopAllComponents.restore();
- controller.doRestartAllComponents.restore();
- controller.onOffPassiveModeForHost.restore();
- });
- it('"deleteHost" action', function () {
- var option = {context: {action: "deleteHost"}};
- controller.doAction(option);
- expect(controller.validateAndDeleteHost.calledOnce).to.be.true;
- });
- it('"startAllComponents" action, isNotHeartBeating = false', function () {
- var option = {context: {action: "startAllComponents"}};
- controller.set('content', {isNotHeartBeating: false});
- controller.doAction(option);
- expect(controller.doStartAllComponents.calledOnce).to.be.true;
- });
- it('"startAllComponents" action, isNotHeartBeating = true', function () {
- var option = {context: {action: "startAllComponents"}};
- controller.set('content', {isNotHeartBeating: true});
- controller.doAction(option);
- expect(controller.doStartAllComponents.called).to.be.false;
- });
- it('"stopAllComponents" action, isNotHeartBeating = false', function () {
- var option = {context: {action: "stopAllComponents"}};
- controller.set('content', {isNotHeartBeating: false});
- controller.doAction(option);
- expect(controller.doStopAllComponents.calledOnce).to.be.true;
- });
- it('"stopAllComponents" action, isNotHeartBeating = true', function () {
- var option = {context: {action: "stopAllComponents"}};
- controller.set('content', {isNotHeartBeating: true});
- controller.doAction(option);
- expect(controller.doStopAllComponents.called).to.be.false;
- });
- it('"restartAllComponents" action, isNotHeartBeating = false', function () {
- var option = {context: {action: "restartAllComponents"}};
- controller.set('content', {isNotHeartBeating: false});
- controller.doAction(option);
- expect(controller.doRestartAllComponents.calledOnce).to.be.true;
- });
- it('"restartAllComponents" action, isNotHeartBeating = true', function () {
- var option = {context: {action: "restartAllComponents"}};
- controller.set('content', {isNotHeartBeating: true});
- controller.doAction(option);
- expect(controller.doRestartAllComponents.called).to.be.false;
- });
- it('"onOffPassiveModeForHost" action', function () {
- var option = {context: {action: "onOffPassiveModeForHost"}};
- controller.doAction(option);
- expect(controller.onOffPassiveModeForHost.calledWith({action: "onOffPassiveModeForHost"})).to.be.true;
- });
- });
- describe('#onOffPassiveModeForHost()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, "hostPassiveModeRequest", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.hostPassiveModeRequest.restore();
- });
- it('popup should be displayed, active = true', function () {
- var popup = controller.onOffPassiveModeForHost({active: true});
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.hostPassiveModeRequest.calledWith('ON')).to.be.true;
- });
- it('popup should be displayed, active = false', function () {
- var popup = controller.onOffPassiveModeForHost({active: false});
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.hostPassiveModeRequest.calledWith('OFF')).to.be.true;
- });
- });
- describe('#hostPassiveModeRequest()', function () {
- beforeEach(function () {
- sinon.stub(App.ajax, "send", Em.K);
- });
- afterEach(function () {
- App.ajax.send.restore();
- });
- it('Query should be sent', function () {
- controller.hostPassiveModeRequest('', '');
- expect(App.ajax.send.calledOnce).to.be.true;
- });
- });
- describe('#doStartAllComponents()', function () {
- beforeEach(function () {
- sinon.stub(App, "showConfirmationPopup", Em.K);
- controller.reopen({serviceActiveComponents: []});
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- });
- it('serviceNonClientActiveComponents is empty', function () {
- controller.reopen({
- serviceNonClientActiveComponents: []
- });
- controller.doStartAllComponents();
- expect(App.showConfirmationPopup.called).to.be.false;
- });
- it('serviceNonClientActiveComponents is correct', function () {
- controller.reopen({
- serviceNonClientActiveComponents: [{}]
- });
- var popup = controller.doStartAllComponents();
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- /*popup.onPrimary();
- expect(controller.sendStartComponentCommand.calledWith([{}])).to.be.true;*/
- });
- });
- describe('#doStopAllComponents()', function () {
- beforeEach(function () {
- sinon.stub(App, "showConfirmationPopup", Em.K);
- controller.reopen({serviceActiveComponents: []});
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- });
- it('serviceNonClientActiveComponents is empty', function () {
- controller.reopen({
- serviceNonClientActiveComponents: []
- });
- controller.doStopAllComponents();
- expect(App.showConfirmationPopup.called).to.be.false;
- });
- it('serviceNonClientActiveComponents is correct', function () {
- controller.reopen({
- serviceNonClientActiveComponents: [{}]
- });
- var popup = controller.doStopAllComponents();
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- /*popup.onPrimary();
- expect(controller.sendStopComponentCommand.calledWith([{}])).to.be.true;*/
- });
- });
- describe('#doRestartAllComponents()', function () {
- beforeEach(function () {
- sinon.stub(App, "showConfirmationPopup", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- });
- it('serviceActiveComponents is empty', function () {
- controller.reopen({
- serviceActiveComponents: []
- });
- controller.doRestartAllComponents();
- expect(App.showConfirmationPopup.called).to.be.false;
- });
- it('serviceActiveComponents is correct', function () {
- controller.reopen({
- serviceActiveComponents: [{}]
- });
- var popup = controller.doRestartAllComponents();
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- /*popup.onPrimary();
- expect(controller.restartHostComponents.calledWith([{}])).to.be.true;*/
- });
- });
- describe('#getHostComponentsInfo()', function () {
- var result = {
- zkServerInstalled: false,
- lastComponents: [],
- masterComponents: [],
- runningComponents: [],
- nonDeletableComponents: [],
- unknownComponents: []
- };
- it('content.hostComponents is null', function () {
- controller.set('content', {hostComponents: null});
- expect(controller.getHostComponentsInfo()).to.eql(result);
- });
- it('content.hostComponents is empty', function () {
- controller.set('content', {hostComponents :[]});
- expect(controller.getHostComponentsInfo()).to.eql(result);
- });
- it('content.hostComponents has ZOOKEEPER_SERVER', function () {
- App.HostComponent.find().clear();
- controller.set('content', {hostComponents: [Em.Object.create({
- componentName: 'ZOOKEEPER_SERVER',
- workStatus: 'INIT',
- isDeletable: true
- })]});
- expect(controller.getHostComponentsInfo().zkServerInstalled).to.be.true;
- });
- it('content.hostComponents has last component', function () {
- sinon.stub(App.HostComponent, 'find', function() {
- return [{
- id: 'TASKTRACKER_host1',
- componentName: 'TASKTRACKER'
- }];
- });
- controller.set('content', {hostComponents: [Em.Object.create({
- componentName: 'TASKTRACKER',
- displayName: 'TaskTracker',
- workStatus: 'INIT',
- isDeletable: true
- })]});
- expect(controller.getHostComponentsInfo().lastComponents).to.eql(['TaskTracker']);
- App.HostComponent.find.restore();
- });
- it('content.hostComponents has master non-deletable component', function () {
- sinon.stub(App.HostComponent, 'find', function() {
- return [{
- id: 'TASKTRACKER_host1',
- componentName: 'TASKTRACKER'
- }];
- });
- controller.set('content', {hostComponents :[Em.Object.create({
- componentName: 'TASKTRACKER',
- workStatus: 'INIT',
- isDeletable: false,
- isMaster: true,
- displayName: 'ZK1'
- })]});
- expect(controller.getHostComponentsInfo().masterComponents).to.eql(['ZK1']);
- expect(controller.getHostComponentsInfo().nonDeletableComponents).to.eql(['ZK1']);
- App.HostComponent.find.restore();
- });
- it('content.hostComponents has running component', function () {
- sinon.stub(App.HostComponent, 'find', function() {
- return [{
- id: 'TASKTRACKER_host1',
- componentName: 'TASKTRACKER'
- }];
- });
- controller.set('content', {hostComponents: [Em.Object.create({
- componentName: 'TASKTRACKER',
- workStatus: 'STARTED',
- isDeletable: true,
- displayName: 'ZK1'
- })]});
- expect(controller.getHostComponentsInfo().runningComponents).to.eql(['ZK1']);
- App.HostComponent.find.restore();
- });
- it('content.hostComponents has non-deletable component', function () {
- sinon.stub(App.HostComponent, 'find', function() {
- return [{
- id: 'TASKTRACKER_host1',
- componentName: 'TASKTRACKER'
- }];
- });
- controller.set('content', {hostComponents: [Em.Object.create({
- componentName: 'TASKTRACKER',
- workStatus: 'INIT',
- isDeletable: false,
- displayName: 'ZK1'
- })]});
- expect(controller.getHostComponentsInfo().nonDeletableComponents).to.eql(['ZK1']);
- App.HostComponent.find.restore();
- });
- it('content.hostComponents has component with UNKNOWN state', function () {
- sinon.stub(App.HostComponent, 'find', function() {
- return [{
- id: 'TASKTRACKER_host1',
- componentName: 'TASKTRACKER'
- }];
- });
- controller.set('content', {hostComponents: [Em.Object.create({
- componentName: 'TASKTRACKER',
- workStatus: 'UNKNOWN',
- isDeletable: false,
- displayName: 'ZK1'
- })]});
- expect(controller.getHostComponentsInfo().unknownComponents).to.eql(['ZK1']);
- App.HostComponent.find.restore();
- });
- });
- describe('#validateAndDeleteHost()', function () {
- beforeEach(function () {
- sinon.stub(App, "showConfirmationPopup", Em.K);
- sinon.stub(controller, "getHostComponentsInfo", function(){
- return this.get('mockHostComponentsInfo');
- });
- sinon.stub(controller, "raiseDeleteComponentsError", Em.K);
- sinon.stub(controller, "_doDeleteHost", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.getHostComponentsInfo.restore();
- controller.raiseDeleteComponentsError.restore();
- controller._doDeleteHost.restore();
- });
- it('App.supports.deleteHost = false', function () {
- App.supports.deleteHost = false;
- expect(controller.validateAndDeleteHost()).to.be.false;
- App.supports.deleteHost = true;
- });
- it('masterComponents exist', function () {
- controller.set('mockHostComponentsInfo', {masterComponents: [{}]});
- controller.validateAndDeleteHost();
- expect(controller.raiseDeleteComponentsError.calledWith([{}], 'masterList')).to.be.true;
- });
- it('nonDeletableComponents exist', function () {
- controller.set('mockHostComponentsInfo', {
- masterComponents: [],
- nonDeletableComponents: [{}]
- });
- controller.validateAndDeleteHost();
- expect(controller.raiseDeleteComponentsError.calledWith([{}], 'nonDeletableList')).to.be.true;
- });
- it('runningComponents exist', function () {
- controller.set('mockHostComponentsInfo', {
- masterComponents: [],
- nonDeletableComponents: [],
- runningComponents: [{}]
- });
- controller.validateAndDeleteHost();
- expect(controller.raiseDeleteComponentsError.calledWith([{}], 'runningList')).to.be.true;
- });
- it('zkServerInstalled = true', function () {
- controller.set('mockHostComponentsInfo', {
- masterComponents: [],
- nonDeletableComponents: [],
- runningComponents: [],
- unknownComponents: [],
- lastComponents: [],
- zkServerInstalled: true
- });
- var popup = controller.validateAndDeleteHost();
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- /* popup.onPrimary();
- expect(controller._doDeleteHost.calledWith([], [])).to.be.true;*/
- });
- it('zkServerInstalled = false', function () {
- controller.set('mockHostComponentsInfo', {
- masterComponents: [],
- nonDeletableComponents: [],
- runningComponents: [],
- unknownComponents: [],
- lastComponents: [],
- zkServerInstalled: false
- });
- controller.validateAndDeleteHost();
- expect(controller._doDeleteHost.calledWith([], [])).to.be.true;
- });
- });
- describe('#raiseDeleteComponentsError()', function () {
- beforeEach(function () {
- sinon.stub(App.ModalPopup, "show", Em.K);
- });
- afterEach(function () {
- App.ModalPopup.show.restore();
- });
- it('Popup should be displayed', function () {
- controller.raiseDeleteComponentsError([], '');
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- });
- });
- describe('#_doDeleteHost()', function () {
- beforeEach(function () {
- sinon.stub(App.ModalPopup, "show", Em.K);
- });
- afterEach(function () {
- App.ModalPopup.show.restore();
- });
- it('Popup should be displayed', function () {
- controller._doDeleteHost([], []);
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- });
- });
- describe('#restartAllStaleConfigComponents()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(batchUtils, "restartHostComponents", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- batchUtils.restartHostComponents.restore();
- });
- it('popup should be displayed', function () {
- controller.set('content', {componentsWithStaleConfigs :[{}]});
- var popup = controller.restartAllStaleConfigComponents();
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(batchUtils.restartHostComponents.calledWith([{}])).to.be.true;
- });
- });
- describe('#moveComponent()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- });
- it('popup should be displayed', function () {
- var popup = controller.moveComponent();
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- });
- });
- describe('#refreshConfigs()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(batchUtils, "restartHostComponents", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- batchUtils.restartHostComponents.restore();
- });
- it('No components', function () {
- var event = {context: []};
- controller.refreshConfigs(event);
- expect(App.showConfirmationPopup.called).to.be.false;
- });
- it('No components with stale configs', function () {
- var event = {context: [Em.Object.create({
- staleConfigs: false
- })]};
- controller.refreshConfigs(event);
- expect(App.showConfirmationPopup.called).to.be.false;
- });
- it('Components with stale configs', function () {
- var event = {context: [Em.Object.create({
- staleConfigs: true
- })]};
- var popup = controller.refreshConfigs(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(batchUtils.restartHostComponents.calledWith([Em.Object.create({
- staleConfigs: true
- })])).to.be.true;
- });
- });
- describe('#getTotalComponent()', function () {
- beforeEach(function () {
- sinon.stub(App.SlaveComponent, 'find', function() {
- return Em.Object.create({
- componentName: "SLAVE",
- totalCount: 1
- });
- });
- sinon.stub(App.ClientComponent, 'find', function() {
- return Em.Object.create({
- componentName: "CLIENT",
- totalCount: 1
- });
- });
- sinon.stub(App.HostComponent, 'find', function() {
- return [Em.Object.create({
- componentName: "MASTER",
- totalCount: 1
- })]
- });
- });
- afterEach(function () {
- App.SlaveComponent.find.restore();
- App.ClientComponent.find.restore();
- App.HostComponent.find.restore();
- });
- it('component is slave', function () {
- expect(controller.getTotalComponent(Em.Object.create({
- componentName: "SLAVE",
- isSlave: true
- }))).to.equal(1);
- });
- it('component is client', function () {
- expect(controller.getTotalComponent(Em.Object.create({
- componentName: "CLIENT",
- isClient: true
- }))).to.equal(1);
- });
- it('component is master', function () {
- expect(controller.getTotalComponent(Em.Object.create({
- componentName: "MASTER"
- }))).to.equal(1);
- });
- it('unknown component', function () {
- expect(controller.getTotalComponent(Em.Object.create({
- componentName: "UNKNOWN"
- }))).to.equal(0);
- });
- });
- describe('#downloadClientConfigs()', function () {
- beforeEach(function () {
- sinon.stub($, 'fileDownload', function() {
- return {
- fail: function() { return false; }
- }
- });
- });
- afterEach(function () {
- $.fileDownload.restore();
- });
- it('should launch $.fileDownload method', function () {
- controller.downloadClientConfigs({
- context: Em.Object.create({
- componentName: 'name'
- })
- });
- expect($.fileDownload.calledOnce).to.be.true;
- });
- });
- });
|