12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232 |
- /**
- * 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 Ember = require('ember');
- var App = require('app');
- require('models/hosts');
- require('controllers/wizard/step9_controller');
- require('utils/helper');
- describe('App.InstallerStep9Controller', function () {
- describe('#isSubmitDisabled', function () {
- var tests = Em.A([
- {controllerName: 'addHostController', state: 'STARTED', e: false},
- {controllerName: 'addHostController', state: 'START FAILED', e: false},
- {controllerName: 'addHostController', state: 'INSTALL FAILED', e: false},
- {controllerName: 'addHostController', state: 'PENDING', e: true},
- {controllerName: 'addHostController', state: 'INSTALLED', e: true},
- {controllerName: 'addServiceController', state: 'STARTED', e: false},
- {controllerName: 'addServiceController', state: 'START FAILED', e: false},
- {controllerName: 'addServiceController', state: 'INSTALL FAILED', e: false},
- {controllerName: 'addServiceController', state: 'PENDING', e: true},
- {controllerName: 'addServiceController', state: 'INSTALLED', e: true},
- {controllerName: 'installerController', state: 'STARTED', e: false},
- {controllerName: 'installerController', state: 'START FAILED', e: false},
- {controllerName: 'installerController', state: 'INSTALL FAILED', e: true},
- {controllerName: 'installerController', state: 'INSTALLED', e: true},
- {controllerName: 'installerController', state: 'PENDING', e: true}
- ]);
- tests.forEach(function (test) {
- var controller = App.WizardStep9Controller.create({
- content: {
- controllerName: test.controllerName,
- cluster: {
- status: test.state
- }
- }
- });
- it('controllerName is ' + test.controllerName + '; cluster status is ' + test.state + '; isSubmitDisabled should be ' + test.e, function () {
- expect(controller.get('isSubmitDisabled')).to.equal(test.e);
- });
- });
- });
- describe('#status', function () {
- var tests = Em.A([
- {
- hosts: [
- {status: 'failed'},
- {status: 'success'}
- ],
- isStepFailed: false,
- progress: '100',
- m: 'One host is failed',
- e: 'failed'
- },
- {
- hosts: [
- {status: 'warning'},
- {status: 'success'}
- ],
- m: 'One host is failed and step is not failed',
- isStepFailed: false,
- progress: '100',
- e: 'warning'
- },
- {
- hosts: [
- {status: 'warning'},
- {status: 'success'}
- ],
- m: 'One host is failed and step is failed',
- isStepFailed: true,
- progress: '100',
- e: 'failed'
- },
- {
- hosts: [
- {status: 'success'},
- {status: 'success'}
- ],
- m: 'All hosts are success and progress is 100',
- isStepFailed: false,
- progress: '100',
- e: 'success'
- },
- {
- hosts: [
- {status: 'success'},
- {status: 'success'}
- ],
- m: 'All hosts are success and progress is 50',
- isStepFailed: false,
- progress: '50',
- e: 'info'
- }
- ]);
- tests.forEach(function (test) {
- var controller = App.WizardStep9Controller.create({hosts: test.hosts, isStepFailed: function () {
- return test.isStepFailed
- }, progress: test.progress});
- controller.updateStatus();
- it(test.m, function () {
- expect(controller.get('status')).to.equal(test.e);
- });
- });
- });
- describe('#visibleHosts', function () {
- var hosts = [
- Em.Object.create({status: 'failed'}),
- Em.Object.create({status: 'heartbeat_lost'}),
- Em.Object.create({status: 'success'}),
- Em.Object.create({status: 'success'}),
- Em.Object.create({status: 'warning'}),
- Em.Object.create({status: 'info'}),
- Em.Object.create({status: 'info'})
- ];
- var tests = Em.A([
- {category: {hostStatus: 'all'}, e: hosts.length},
- {category: {hostStatus: 'inProgress'}, e: 2},
- {category: {hostStatus: 'warning'}, e: 1},
- {category: {hostStatus: 'failed'}, e: 2},
- {category: {hostStatus: 'success'}, e: 2}
- ]);
- tests.forEach(function (test) {
- it('selected category with hostStatus "' + test.category.hostStatus + '"', function () {
- var controller = App.WizardStep9Controller.create({
- hosts: hosts
- });
- controller.selectCategory({context: test.category});
- expect(controller.get('visibleHosts.length')).to.equal(test.e);
- });
- });
- });
- describe('#showRetry', function () {
- it('cluster status is not INSTALL FAILED', function () {
- var controller = App.WizardStep9Controller.create({content: {cluster: {status: 'INSTALLED'}}});
- expect(controller.get('showRetry')).to.equal(false);
- });
- it('cluster status is INSTALL FAILED', function () {
- var controller = App.WizardStep9Controller.create({content: {cluster: {status: 'INSTALL FAILED'}}});
- expect(controller.get('showRetry')).to.equal(true);
- });
- });
- describe('#resetHostsForRetry', function () {
- var hosts = {'host1': Em.Object.create({status: 'failed', message: 'Failed'}), 'host2': Em.Object.create({status: 'success', message: 'Success'})};
- var controller = App.WizardStep9Controller.create({content: {hosts: hosts}});
- it('All should have status "pending" and message "Waiting"', function () {
- controller.resetHostsForRetry();
- for (var name in hosts) {
- if (hosts.hasOwnProperty(name)) {
- expect(controller.get('content.hosts')[name].get('status', 'pending')).to.equal('pending');
- expect(controller.get('content.hosts')[name].get('message', 'Waiting')).to.equal('Waiting');
- }
- }
- });
- });
- var hosts_for_load_and_render = {
- 'host1': {
- message: 'message1',
- status: 'unknown',
- progress: '1',
- logTasks: [
- {},
- {}
- ],
- bootStatus: 'REGISTERED'
- },
- 'host2': {
- message: '',
- status: 'failed',
- progress: '1',
- logTasks: [
- {},
- {}
- ],
- bootStatus: ''
- },
- 'host3': {
- message: '',
- status: 'waiting',
- progress: null,
- logTasks: [
- {},
- {}
- ],
- bootStatus: ''
- },
- 'host4': {
- message: 'message4',
- status: null,
- progress: '10',
- logTasks: [
- {}
- ],
- bootStatus: 'REGISTERED'
- }
- };
- describe('#loadHosts', function () {
- var controller = App.WizardStep9Controller.create({content: {hosts: hosts_for_load_and_render}});
- controller.loadHosts();
- var loaded_hosts = controller.get('hosts');
- it('Only REGISTERED hosts', function () {
- expect(loaded_hosts.length).to.equal(2);
- });
- it('All hosts have progress 0', function () {
- expect(loaded_hosts.everyProperty('progress', 0)).to.equal(true);
- });
- it('All hosts have progress 0', function () {
- expect(loaded_hosts.everyProperty('progress', 0)).to.equal(true);
- });
- it('All host don\'t have logTasks', function () {
- expect(loaded_hosts.everyProperty('logTasks.length', 0)).to.equal(true);
- });
- });
- describe('#hostHasClientsOnly', function () {
- var tests = Em.A([
- {
- hosts: [
- Em.Object.create({
- hostName: 'host1',
- logTasks: [
- {Tasks: {role: 'HDFS_CLIENT'}},
- {Tasks: {role: 'DATANODE'}}
- ],
- status: 'old_status',
- progress: '10',
- e: {status: 'old_status', progress: '10'}
- }),
- Em.Object.create({
- hostName: 'host2',
- logTasks: [
- {Tasks: {role: 'HDFS_CLIENT'}}
- ],
- status: 'old_status',
- progress: '10',
- e: {status: 'success', progress: '100'}
- })
- ],
- jsonError: false
- },
- {
- hosts: [
- Em.Object.create({
- hostName: 'host1',
- logTasks: [
- {Tasks: {role: 'HDFS_CLIENT'}},
- {Tasks: {role: 'DATANODE'}}
- ],
- status: 'old_status',
- progress: '10',
- e: {status: 'success', progress: '100'}
- }),
- Em.Object.create({
- hostName: 'host2',
- logTasks: [
- {Tasks: {role: 'HDFS_CLIENT'}}
- ],
- status: 'old_status',
- progress: '10',
- e: {status: 'success', progress: '100'}
- })
- ],
- jsonError: true
- }
- ]);
- tests.forEach(function (test) {
- it('', function () {
- var controller = App.WizardStep9Controller.create({hosts: test.hosts});
- controller.hostHasClientsOnly(test.jsonError);
- test.hosts.forEach(function (host) {
- expect(controller.get('hosts').findProperty('hostName', host.hostName).get('status')).to.equal(host.e.status);
- expect(controller.get('hosts').findProperty('hostName', host.hostName).get('progress')).to.equal(host.e.progress);
- });
- });
- });
- });
- describe('#onSuccessPerHost', function () {
- var tests = Em.A([
- {
- cluster: {status: 'INSTALLED'},
- host: Em.Object.create({status: 'pending'}),
- actions: [],
- e: {status: 'success'},
- m: 'No tasks for host'
- },
- {
- cluster: {status: 'INSTALLED'},
- host: Em.Object.create({status: 'info'}),
- actions: [
- {Tasks: {status: 'COMPLETED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {status: 'success'},
- m: 'All Tasks COMPLETED and cluster status INSTALLED'
- },
- {
- cluster: {status: 'FAILED'},
- host: Em.Object.create({status: 'info'}),
- actions: [
- {Tasks: {status: 'COMPLETED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {status: 'info'},
- m: 'All Tasks COMPLETED and cluster status FAILED'
- },
- {
- cluster: {status: 'INSTALLED'},
- host: Em.Object.create({status: 'info'}),
- actions: [
- {Tasks: {status: 'FAILED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {status: 'info'},
- m: 'Not all Tasks COMPLETED and cluster status INSTALLED'
- },
- {
- cluster: {status: 'FAILED'},
- host: Em.Object.create({status: 'info'}),
- actions: [
- {Tasks: {status: 'FAILED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {status: 'info'},
- m: 'Not all Tasks COMPLETED and cluster status FAILED'
- }
- ]);
- tests.forEach(function (test) {
- var controller = App.WizardStep9Controller.create({content: {cluster: {status: test.cluster.status}}});
- controller.onSuccessPerHost(test.actions, test.host);
- it(test.m, function () {
- expect(test.host.status).to.equal(test.e.status);
- });
- });
- });
- describe('#onErrorPerHost', function () {
- var tests = Em.A([
- {
- cluster: {status: 'INSTALLED'},
- host: Em.Object.create({status: 'pending'}),
- actions: [],
- e: {status: 'pending'},
- isMasterFailed: false,
- m: 'No tasks for host'
- },
- {
- cluster: {status: 'INSTALLED'},
- host: Em.Object.create({status: 'info'}),
- actions: [
- {Tasks: {status: 'FAILED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {status: 'warning'},
- isMasterFailed: false,
- m: 'One Task FAILED and cluster status INSTALLED'
- },
- {
- cluster: {status: 'INSTALLED'},
- host: Em.Object.create({status: 'info'}),
- actions: [
- {Tasks: {status: 'ABORTED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {status: 'warning'},
- isMasterFailed: false,
- m: 'One Task ABORTED and cluster status INSTALLED'
- },
- {
- cluster: {status: 'INSTALLED'},
- host: Em.Object.create({status: 'info'}),
- actions: [
- {Tasks: {status: 'TIMEDOUT'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {status: 'warning'},
- isMasterFailed: false,
- m: 'One Task TIMEDOUT and cluster status INSTALLED'
- },
- {
- cluster: {status: 'PENDING'},
- host: Em.Object.create({status: 'info'}),
- actions: [
- {Tasks: {status: 'FAILED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {status: 'failed'},
- isMasterFailed: true,
- m: 'One Task FAILED and cluster status PENDING isMasterFailed true'
- },
- {
- cluster: {status: 'PENDING'},
- host: Em.Object.create({status: 'info'}),
- actions: [
- {Tasks: {status: 'COMPLETED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {status: 'info'},
- isMasterFailed: false,
- m: 'One Task FAILED and cluster status PENDING isMasterFailed false'
- }
- ]);
- tests.forEach(function (test) {
- var controller = App.WizardStep9Controller.create({content: {cluster: {status: test.cluster.status}}, isMasterFailed: function () {
- return test.isMasterFailed;
- }});
- controller.onErrorPerHost(test.actions, test.host);
- it(test.m, function () {
- expect(test.host.status).to.equal(test.e.status);
- });
- });
- });
- describe('#isMasterFailed', function () {
- var tests = Em.A([
- {
- actions: [
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'DATANODE'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'TASKTRACKER'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'HBASE_REGIONSERVER'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'GANGLIA_MONITOR'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'SUPERVISOR'}}
- ],
- e: false,
- m: 'No one Master is failed'
- },
- {
- actions: [
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'NAMENODE'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'TASKTRACKER'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'HBASE_REGIONSERVER'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'GANGLIA_MONITOR'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'SUPERVISOR'}}
- ],
- e: true,
- m: 'One Master is failed'
- },
- {
- actions: [
- {Tasks: {command: 'PENDING', status: 'FAILED', role: 'NAMENODE'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'TASKTRACKER'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'HBASE_REGIONSERVER'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'GANGLIA_MONITOR'}},
- {Tasks: {command: 'INSTALL', status: 'FAILED', role: 'SUPERVISOR'}}
- ],
- e: false,
- m: 'one Master is failed but command is not install'
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- var controller = App.WizardStep9Controller.create();
- expect(controller.isMasterFailed(test.actions)).to.equal(test.e);
- });
- });
- });
- describe('#onInProgressPerHost', function () {
- var tests = Em.A([
- {
- host: Em.Object.create({message: 'default_message'}),
- actions: [
- {Tasks: {status: 'COMPLETED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {message: 'default_message', b: true},
- m: 'All Tasks COMPLETED'
- },
- {
- host: Em.Object.create({message: 'default_message'}),
- actions: [
- {Tasks: {status: 'IN_PROGRESS'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {message: 'default_message', b: false},
- m: 'One Task IN_PROGRESS'
- },
- {
- host: Em.Object.create({message: 'default_message'}),
- actions: [
- {Tasks: {status: 'QUEUED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {message: 'default_message', b: false},
- m: 'One Task QUEUED'
- },
- {
- host: Em.Object.create({message: 'default_message'}),
- actions: [
- {Tasks: {status: 'PENDING'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: {message: 'default_message', b: false},
- m: 'One Task PENDING'
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- var controller = App.WizardStep9Controller.create();
- controller.onInProgressPerHost(test.actions, test.host);
- expect(test.host.message == test.e.message).to.equal(test.e.b);
- });
- });
- });
- describe('#progressPerHost', function () {
- var tests = Em.A([
- {
- cluster: {status: 'PENDING'},
- host: Em.Object.create({progress: 0}),
- actions: [
- {Tasks: {status: 'COMPLETED'}},
- {Tasks: {status: 'COMPLETED'}},
- {Tasks: {status: 'QUEUED'}},
- {Tasks: {status: 'QUEUED'}},
- {Tasks: {status: 'IN_PROGRESS'}}
- ],
- e: {ret: 17, host: '17'},
- m: 'All types of status available. cluster status PENDING'
- },
- {
- cluster: {status: 'PENDING'},
- host: Em.Object.create({progress: 0}),
- actions: [],
- e: {ret: 33, host: '33'},
- m: 'No tasks available. cluster status PENDING'
- },
- {
- cluster: {status: 'INSTALLED'},
- host: Em.Object.create({progress: 0}),
- actions: [],
- e: {ret: 100, host: '100'},
- m: 'No tasks available. cluster status INSTALLED'
- },
- {
- cluster: {status: 'INSTALLED'},
- host: Em.Object.create({progress: 0}),
- actions: [
- {Tasks: {status: 'COMPLETED'}},
- {Tasks: {status: 'COMPLETED'}},
- {Tasks: {status: 'QUEUED'}},
- {Tasks: {status: 'QUEUED'}},
- {Tasks: {status: 'IN_PROGRESS'}}
- ],
- e: {ret: 68, host: '68'},
- m: 'All types of status available. cluster status INSTALLED'
- },
- {
- cluster: {status: 'FAILED'},
- host: Em.Object.create({progress: 0}),
- actions: [],
- e: {ret: 100, host: '100'},
- m: 'Cluster status is not PENDING or INSTALLED'
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- var controller = App.WizardStep9Controller.create({content: {cluster: {status: test.cluster.status}}});
- var progress = controller.progressPerHost(test.actions, test.host);
- expect(progress).to.equal(test.e.ret);
- expect(test.host.progress).to.equal(test.e.host);
- });
- });
- });
- describe('#clearStep', function () {
- var controller = App.WizardStep9Controller.create({hosts: [
- {},
- {},
- {}
- ]});
- it('All to default values', function () {
- controller.clearStep();
- expect(controller.get('hosts.length')).to.equal(0);
- expect(controller.get('status')).to.equal('info');
- expect(controller.get('progress')).to.equal('0');
- expect(controller.get('numPolls')).to.equal(1);
- });
- });
- describe('#replacePolledData', function () {
- var controller = App.WizardStep9Controller.create({polledData: [
- {},
- {},
- {}
- ]});
- var newPolledData = [
- {}
- ];
- controller.replacePolledData(newPolledData);
- it('replacing polled data', function () {
- expect(controller.get('polledData.length')).to.equal(newPolledData.length);
- });
- });
- describe('#isSuccess', function () {
- var tests = Em.A([
- {
- polledData: [
- {Tasks: {status: 'COMPLETED'}},
- {Tasks: {status: 'COMPLETED'}}
- ],
- e: true,
- m: 'All tasks are COMPLETED'
- },
- {
- polledData: [
- {Tasks: {status: 'COMPLETED'}},
- {Tasks: {status: 'FAILED'}}
- ],
- e: false,
- m: 'Not all tasks are COMPLETED'
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- var controller = App.WizardStep9Controller.create();
- expect(controller.isSuccess(test.polledData)).to.equal(test.e);
- });
- });
- });
- describe('#isStepFailed', function () {
- var tests = Em.A([
- {
- polledData: [
- {Tasks: {command: 'INSTALL', role: 'GANGLIA_MONITOR', status: 'TIMEDOUT'}},
- {Tasks: {command: 'INSTALL', role: 'GANGLIA_MONITOR', status: 'FAILED'}},
- {Tasks: {command: 'INSTALL', role: 'GANGLIA_MONITOR', status: 'PENDING'}}
- ],
- e: true,
- m: 'GANGLIA_MONITOR 2/3 failed'
- },
- {
- polledData: [
- {Tasks: {command: 'INSTALL', role: 'GANGLIA_MONITOR', status: 'TIMEDOUT'}},
- {Tasks: {command: 'INSTALL', role: 'GANGLIA_MONITOR', status: 'PENDING'}},
- {Tasks: {command: 'INSTALL', role: 'GANGLIA_MONITOR', status: 'PENDING'}}
- ],
- e: false,
- m: 'GANGLIA_MONITOR 1/3 failed'
- },
- {
- polledData: [
- {Tasks: {command: 'INSTALL', role: 'HBASE_REGIONSERVER', status: 'TIMEDOUT'}},
- {Tasks: {command: 'INSTALL', role: 'HBASE_REGIONSERVER', status: 'FAILED'}},
- {Tasks: {command: 'INSTALL', role: 'HBASE_REGIONSERVER', status: 'PENDING'}}
- ],
- e: true,
- m: 'HBASE_REGIONSERVER 2/3 failed'
- },
- {
- polledData: [
- {Tasks: {command: 'INSTALL', role: 'HBASE_REGIONSERVER', status: 'TIMEDOUT'}},
- {Tasks: {command: 'INSTALL', role: 'HBASE_REGIONSERVER', status: 'PENDING'}},
- {Tasks: {command: 'INSTALL', role: 'HBASE_REGIONSERVER', status: 'PENDING'}}
- ],
- e: false,
- m: 'HBASE_REGIONSERVER 1/3 failed'
- },
- {
- polledData: [
- {Tasks: {command: 'INSTALL', role: 'TASKTRACKER', status: 'TIMEDOUT'}},
- {Tasks: {command: 'INSTALL', role: 'TASKTRACKER', status: 'FAILED'}},
- {Tasks: {command: 'INSTALL', role: 'TASKTRACKER', status: 'PENDING'}}
- ],
- e: true,
- m: 'TASKTRACKER 2/3 failed'
- },
- {
- polledData: [
- {Tasks: {command: 'INSTALL', role: 'TASKTRACKER', status: 'TIMEDOUT'}},
- {Tasks: {command: 'INSTALL', role: 'TASKTRACKER', status: 'PENDING'}},
- {Tasks: {command: 'INSTALL', role: 'TASKTRACKER', status: 'PENDING'}}
- ],
- e: false,
- m: 'TASKTRACKER 1/3 failed'
- },
- {
- polledData: [
- {Tasks: {command: 'INSTALL', role: 'DATANODE', status: 'TIMEDOUT'}},
- {Tasks: {command: 'INSTALL', role: 'DATANODE', status: 'FAILED'}},
- {Tasks: {command: 'INSTALL', role: 'DATANODE', status: 'PENDING'}}
- ],
- e: true,
- m: 'DATANODE 2/3 failed'
- },
- {
- polledData: [
- {Tasks: {command: 'INSTALL', role: 'DATANODE', status: 'TIMEDOUT'}},
- {Tasks: {command: 'INSTALL', role: 'DATANODE', status: 'PENDING'}},
- {Tasks: {command: 'INSTALL', role: 'DATANODE', status: 'PENDING'}}
- ],
- e: false,
- m: 'DATANODE 1/3 failed'
- },
- {
- polledData: [
- {Tasks: {command: 'INSTALL', role: 'NAMENODE', status: 'TIMEDOUT'}},
- {Tasks: {command: 'INSTALL', role: 'DATANODE', status: 'PENDING'}},
- {Tasks: {command: 'INSTALL', role: 'DATANODE', status: 'PENDING'}}
- ],
- e: true,
- m: 'NAMENODE failed'
- },
- {
- polledData: [
- {Tasks: {command: 'INSTALL', role: 'NAMENODE', status: 'PENDING'}},
- {Tasks: {command: 'INSTALL', role: 'DATANODE', status: 'PENDING'}},
- {Tasks: {command: 'INSTALL', role: 'DATANODE', status: 'PENDING'}}
- ],
- e: false,
- m: 'Nothing failed failed'
- }
- ]);
- tests.forEach(function (test) {
- var controller = App.WizardStep9Controller.create({polledData: test.polledData});
- it(test.m, function () {
- expect(controller.isStepFailed()).to.equal(test.e);
- });
- });
- });
- describe('#getUrl', function () {
- var clusterName = 'tdk';
- var cluster = App.WizardStep9Controller.create({content: {cluster: {name: clusterName, requestId: null}}});
- it('check requestId priority', function () {
- cluster.set('content.cluster.requestId', 123);
- var url = cluster.getUrl(321);
- expect(url).to.equal(App.apiPrefix + '/clusters/' + clusterName + '/requests/' + '321' + '?fields=tasks/Tasks/command,tasks/Tasks/exit_code,tasks/Tasks/start_time,tasks/Tasks/end_time,tasks/Tasks/host_name,tasks/Tasks/id,tasks/Tasks/role,tasks/Tasks/status&minimal_response=true');
- url = cluster.getUrl();
- expect(url).to.equal(App.apiPrefix + '/clusters/' + clusterName + '/requests/' + '123' + '?fields=tasks/Tasks/command,tasks/Tasks/exit_code,tasks/Tasks/start_time,tasks/Tasks/end_time,tasks/Tasks/host_name,tasks/Tasks/id,tasks/Tasks/role,tasks/Tasks/status&minimal_response=true');
- });
- });
- describe('#finishState', function () {
- var statuses = Em.A(['INSTALL FAILED', 'START FAILED', 'STARTED']);
- it('Installer is finished', function () {
- statuses.forEach(function (status) {
- var controller = App.WizardStep9Controller.create({content: {cluster: {status: status}}});
- var result = controller.finishState();
- expect(result).to.equal(true);
- });
- });
- it('Unknown cluster status ', function () {
- var controller = App.WizardStep9Controller.create({content: {cluster: {status: 'FAKE_STATUS'}}});
- var result = controller.finishState();
- expect(result).to.equal(false);
- });
- });
- describe('#setLogTasksStatePerHost', function () {
- var tests = Em.A([
- {
- tasksPerHost: [
- {Tasks: {id: 1, status: 'COMPLETED'}},
- {Tasks: {id: 2, status: 'COMPLETED'}}
- ],
- tasks: [],
- e: {m: 'COMPLETED', l: 2},
- m: 'host didn\'t have tasks and got 2 new'
- },
- {
- tasksPerHost: [
- {Tasks: {id: 1, status: 'COMPLETED'}},
- {Tasks: {id: 2, status: 'COMPLETED'}}
- ],
- tasks: [
- {Tasks: {id: 1, status: 'IN_PROGRESS'}},
- {Tasks: {id: 2, status: 'IN_PROGRESS'}}
- ],
- e: {m: 'COMPLETED', l: 2},
- m: 'host had 2 tasks and got both updated'
- },
- {
- tasksPerHost: [],
- tasks: [
- {Tasks: {id: 1, status: 'IN_PROGRESS'}},
- {Tasks: {id: 2, status: 'IN_PROGRESS'}}
- ],
- e: {m: 'IN_PROGRESS', l: 2},
- m: 'host had 2 tasks and didn\'t get updates'
- },
- {
- tasksPerHost: [
- {Tasks: {id: 1, status: 'COMPLETED'}},
- {Tasks: {id: 2, status: 'COMPLETED'}},
- {Tasks: {id: 3, status: 'COMPLETED'}}
- ],
- tasks: [
- {Tasks: {id: 1, status: 'IN_PROGRESS'}},
- {Tasks: {id: 2, status: 'IN_PROGRESS'}}
- ],
- e: {m: 'COMPLETED', l: 3},
- m: 'host had 2 tasks and got both updated and 1 new'
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- var controller = App.WizardStep9Controller.create({hosts: [Em.Object.create({logTasks: test.tasks})]});
- controller.setLogTasksStatePerHost(test.tasksPerHost, controller.get('hosts')[0]);
- expect(controller.get('hosts')[0].get('logTasks').everyProperty('Tasks.status', test.e.m)).to.equal(true);
- expect(controller.get('hosts')[0].get('logTasks.length')).to.equal(test.e.l);
- });
- });
- });
- describe('#parseHostInfo', function () {
- var tests = Em.A([
- {
- cluster: {status: 'PENDING'},
- hosts: Em.A([
- Em.Object.create({name: 'host1', status: '', message: '', progress: '', logTasks: []}),
- Em.Object.create({name: 'host2', status: '', message: '', progress: '', logTasks: []})
- ]),
- polledData: {
- tasks: [
- {Tasks: {host_name: 'host2', status: 'COMPLETED'}},
- {Tasks: {host_name: 'host2', status: 'COMPLETED'}}
- ]
- },
- e: {
- hosts: {
- host1: {progress: '33'},
- host2: {progress: '33'}
- },
- progress: '33'
- },
- m: 'Two hosts. One host without tasks. Second host has all tasks COMPLETED. Cluster status is PENDING'
- },
- {
- cluster: {status: 'PENDING'},
- hosts: Em.A([
- Em.Object.create({name: 'host1', status: '', message: '', progress: '', logTasks: []}),
- Em.Object.create({name: 'host2', status: '', message: '', progress: '', logTasks: []})
- ]),
- polledData: {
- tasks: [
- {Tasks: {host_name: 'host1', status: 'IN_PROGRESS'}},
- {Tasks: {host_name: 'host2', status: 'IN_PROGRESS'}}
- ]
- },
- e: {hosts: {host1: {progress: '12'}, host2: {progress: '12'}}, progress: '12'},
- m: 'Two hosts. Each host has one task IN_PROGRESS. Cluster status is PENDING'
- },
- {
- cluster: {status: 'PENDING'},
- hosts: Em.A([
- Em.Object.create({name: 'host1', status: '', message: '', progress: '', logTasks: []}),
- Em.Object.create({name: 'host2', status: '', message: '', progress: '', logTasks: []})
- ]),
- polledData: {
- tasks: [
- {Tasks: {host_name: 'host1', status: 'QUEUED'}},
- {Tasks: {host_name: 'host2', status: 'QUEUED'}}
- ]
- },
- e: {
- hosts: {
- host1: {progress: '3'},
- host2: {progress: '3'}
- },
- progress: '3'
- },
- m: 'Two hosts. Each host has one task QUEUED. Cluster status is PENDING'
- },
- {
- cluster: {status: 'INSTALLED'},
- hosts: Em.A([
- Em.Object.create({name: 'host1', status: '', message: '', progress: '', logTasks: []}),
- Em.Object.create({name: 'host2', status: '', message: '', progress: '', logTasks: []})
- ]),
- polledData: {
- tasks: [
- {Tasks: {host_name: 'host2', status: 'COMPLETED'}},
- {Tasks: {host_name: 'host2', status: 'COMPLETED'}}
- ]
- },
- e: {
- hosts: {
- host1: {progress: '100'},
- host2: {progress: '100'}
- },
- progress: '100'
- },
- m: 'Two hosts. One host without tasks. Second host has all tasks COMPLETED. Cluster status is INSTALLED'
- },
- {
- cluster: {status: 'INSTALLED'},
- hosts: Em.A([
- Em.Object.create({name: 'host1', status: '', message: '', progress: '', logTasks: []}),
- Em.Object.create({name: 'host2', status: '', message: '', progress: '', logTasks: []})
- ]),
- polledData: {
- tasks: [
- {Tasks: {host_name: 'host1', status: 'IN_PROGRESS'}},
- {Tasks: {host_name: 'host2', status: 'IN_PROGRESS'}}
- ]
- },
- e: {
- hosts: {
- host1: {progress: '58'},
- host2: {progress: '58'}
- },
- progress: '58'
- },
- m: 'Two hosts. Each host has one task IN_PROGRESS. Cluster status is INSTALLED'
- },
- {
- cluster: {status: 'INSTALLED'},
- hosts: Em.A([
- Em.Object.create({name: 'host1', status: '', message: '', progress: '', logTasks: []}),
- Em.Object.create({name: 'host2', status: '', message: '', progress: '', logTasks: []})
- ]),
- polledData: {
- tasks: [
- {Tasks: {host_name: 'host1', status: 'QUEUED'}},
- {Tasks: {host_name: 'host2', status: 'QUEUED'}}
- ]
- },
- e: {
- hosts: {
- host1: {progress: '40'},
- host2: {progress: '40'}
- },
- progress: '40'
- },
- m: 'Two hosts. Each host has one task QUEUED. Cluster status is INSTALLED'
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- var controller = App.WizardStep9Controller.create({hosts: test.hosts, content: {cluster: {status: test.cluster.status}}, finishState: function () {
- return false;
- }});
- var logTasksChangesCounter = controller.get('logTasksChangesCounter');
- controller.parseHostInfo(test.polledData);
- expect(controller.get('logTasksChangesCounter')).to.equal(logTasksChangesCounter + 1);
- for (var name in test.e.hosts) {
- if (test.e.hosts.hasOwnProperty(name)) {
- expect(controller.get('hosts').findProperty('name', name).get('progress')).to.equal(test.e.hosts[name].progress);
- }
- }
- expect(controller.get('progress')).to.equal(test.e.progress);
- });
- });
- });
- describe('#isAllComponentsInstalledSuccessCallback', function () {
- describe('', function() {
- var hosts = Em.A([
- Em.Object.create({name: 'host1', status: 'failed', expectedStatus: 'heartbeat_lost'}),
- Em.Object.create({name: 'host2', status: 'info', expectedStatus: 'heartbeat_lost'}),
- Em.Object.create({name: 'host3', status: 'warning', expectedStatus: 'warning'}),
- Em.Object.create({name: 'host4', status: 'info', expectedStatus: 'info'})
- ]);
- var heartbeatLostData = {
- "items": [
- {
- "Hosts": {
- "cluster_name": "c1",
- "host_name": "host1",
- "host_state": "HEARTBEAT_LOST"
- },
- "host_components": [
- {
- "HostRoles": {
- "cluster_name": "c1",
- "component_name": "NAMENODE",
- "host_name": "host1",
- "state": "INSTALL_FAILED"
- }
- }
- ]
- },
- {
- "Hosts": {
- "cluster_name": "c1",
- "host_name": "host2",
- "host_state": "HEARTBEAT_LOST"
- },
- "host_components": [
- {
- "HostRoles": {
- "cluster_name": "c1",
- "component_name": "ZOOKEEPER_SERVER",
- "host_name": "host2",
- "state": "UNKNOWN"
- }
- }
- ]
- },
- {
- "Hosts": {
- "cluster_name": "c1",
- "host_name": "host3",
- "host_state": "HEALTHY"
- },
- "host_components": [
- {
- "HostRoles": {
- "cluster_name": "c1",
- "component_name": "DATANODE",
- "host_name": "host3",
- "state": "INSTALL_FAILED"
- }
- }
- ]
- },
- {
- "Hosts": {
- "cluster_name": "c1",
- "host_name": "host4",
- "host_state": "HEALTHY"
- },
- "host_components": [
- {
- "HostRoles": {
- "cluster_name": "c1",
- "component_name": "PIG",
- "host_name": "host4",
- "state": "INSTALLED"
- }
- },
- {
- "HostRoles": {
- "cluster_name": "c1",
- "component_name": "DATANODE",
- "host_name": "host3",
- "state": "INSTALLED"
- }
- }
- ]
- }
- ]
- };
- var controller = App.WizardStep9Controller.create({hosts: hosts, content: {controllerName: 'installerController'}});
- App.testMode = true;
- // Action
- controller.isAllComponentsInstalledSuccessCallback(heartbeatLostData);
- // Validation for the status of all hosts.
- controller.get('hosts').forEach(function (test) {
- var status = heartbeatLostData.items.findProperty('Hosts.host_name', test.get('name')).Hosts.host_state;
- it('Host "' + test.get('name') + '"' + ' with status "' + status + '" ', function () {
- expect(test.get('status')).to.equal(test.get('expectedStatus'));
- });
- });
- });
- describe('', function() {
- var noHeartbeatLostData = {
- "items": [
- {
- "Hosts": {
- "cluster_name": "c1",
- "host_name": "host1",
- "host_state": "HEALTHY"
- },
- "host_components": [
- {
- "HostRoles": {
- "cluster_name": "c1",
- "component_name": "NAMENODE",
- "host_name": "host1",
- "state": "INSTALL_FAILED"
- }
- }
- ]
- }
- ]
- };
- var hosts = Em.A([Em.Object.create({name: 'host1', status: 'failed'})]);
- // When there is no heartbeat lost for any host and cluster failed install task, Refreshing the page should not launch start all services request.
- // Below transitions are possibilities in this function
- // PENDING -> INSTALL or PENDING. This transition happens when install all services request is completed successfully.
- // INSTALL FAILED -> INSTALL FAILED. No transition should happen when install all services request fails and then user hits refresh
- // Cluster is not expected to enter this function in other states: INSTALLED, START FAILED, STARTED
- var statuses = Em.A(['INSTALL FAILED', 'INSTALLED','START FAILED', 'STARTED']); // Cluster in any of this states should have no effect on the state from this function
- statuses.forEach(function (priorStatus) {
- var controller = App.WizardStep9Controller.create({hosts: hosts, content: {controllerName: 'installerController', cluster: {status: priorStatus}},togglePreviousSteps: function(){}});
- // Action
- controller.isAllComponentsInstalledSuccessCallback(noHeartbeatLostData);
- // Validation for the cluster state.
- var actualStatus = controller.get('content.cluster.status');
- it('Cluster state before entering the function "' + priorStatus + '"', function () {
- expect(actualStatus).to.equal(priorStatus);
- });
- });
- });
- });
- // isServicesInstalled is called after every poll for "Install All Services" request.
- // This function should result into a call to "Start All Services" request only if install request completed successfully.
- describe('#isServicesInstalled', function () {
- var hostStateJsonData = {
- "items" : [
- {
- "Hosts" : {
- "cluster_name" : "c1",
- "host_name" : "ambari-1.c.apache.internal",
- "host_state" : "HEALTHY"
- },
- "host_components" : [
- {
- "HostRoles" : {
- "cluster_name" : "c1",
- "component_name" : "GANGLIA_MONITOR",
- "host_name" : "ambari-1.c.apache.internal",
- "state" : "STARTED"
- }
- }
- ]
- }
- ]
- };
- var hosts = Em.A([Em.Object.create({name: 'host1', progress: '33', status: 'info'}),
- Em.Object.create({name: 'host2', progress: '33', status: 'info'})]);
- // polledData has all hosts with status completed to trigger transition from install->start request.
- var polledData = Em.A([Em.Object.create({Tasks: {name: 'host1', status: 'COMPLETED'}}),
- Em.Object.create({Tasks: {name: 'host2', status: 'COMPLETED'}})]);
- var controller = App.WizardStep9Controller.create({hosts: hosts, content: {controllerName: 'installerController',
- cluster: {status: 'PENDING',name: 'c1'}},launchStartServices: function() {return true;}});
- var tests = Em.A([
- // controller has "status" value as "info" initially. If no errors are encountered then wizard stages
- // transition info->success, on error info->error, on warning info->warning
- {status: 'info' , e:{startServicesCalled:true}, m:'If no failed tasks then start services request should be called'},
- {status: 'failed', e:{startServicesCalled:false}, m: 'If install request has failed tasks then start services call should not be called'}
- ]);
- beforeEach(function() {
- App.testMode = true;
- sinon.spy(controller, 'launchStartServices');
- sinon.stub($, 'ajax').yieldsTo('success', hostStateJsonData);
- });
- afterEach(function() {
- App.testMode = false;
- controller.launchStartServices.restore();
- $.ajax.restore();
- });
- tests.forEach(function(test){
- it(test.m, function() {
- controller.set('status',test.status);
- //Action
- controller.isServicesInstalled(polledData);
- //Validation
- expect(controller.launchStartServices.called).to.equal(test.e.startServicesCalled);
- });
- });
- });
- // On completion of Start all services error callback function,
- // Cluster Status should be INSTALL FAILED
- // All progress bar on the screen should be finished (100%) with blue color.
- // Retry button should be enabled, next button should be disabled
- describe('#launchStartServicesErrorCallback', function () {
- App.testMode = true;
- // override the actual function
- App.popup = {
- setErrorPopup: function() {
- return true;
- }
- };
- var hosts = Em.A([Em.Object.create({name: 'host1', progress: '33', status: 'info'}),Em.Object.create({name: 'host2', progress: '33', status: 'info'})]);
- var controller = App.WizardStep9Controller.create({hosts: hosts, content: {controllerName: 'installerController', cluster: {status: 'PENDING',name: 'c1'}},togglePreviousSteps: function(){}});
- //Action
- controller.launchStartServicesErrorCallback({status:500, statusTesxt: 'Server Error'});
- it('Cluster Status should be INSTALL FAILED', function () {
- expect(controller.get('content.cluster.status')).to.equal('INSTALL FAILED');
- });
- it('Main progress bar on the screen should be finished (100%) with red color', function () {
- expect(controller.get('progress')).to.equal('100');
- expect(controller.get('status')).to.equal('failed');
- });
- it('All Host progress bars on the screen should be finished (100%) with blue color', function () {
- controller.get('hosts').forEach(function(host){
- expect(host.get('progress')).to.equal('100');
- expect(host.get('status')).to.equal('info');
- });
- });
- it('Next button should be disabled', function () {
- expect(controller.get('isSubmitDisabled')).to.equal(true);
- });
- it('Retry button should be visible', function () {
- expect(controller.get('showRetry')).to.equal(true);
- })
- });
- });
|