123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559 |
- /**
- * 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('utils/helper');
- require('controllers/wizard/step6_controller');
- var controller,
- services = [
- Em.Object.create({
- serviceName: 'MAPREDUCE',
- isSelected: true
- }),
- Em.Object.create({
- serviceName: 'YARN',
- isSelected: true
- }),
- Em.Object.create({
- serviceName: 'HBASE',
- isSelected: true
- }),
- Em.Object.create({
- serviceName: 'HDFS',
- isSelected: true
- }),
- Em.Object.create({
- serviceName: 'STORM',
- isSelected: true
- }),
- Em.Object.create({
- serviceName: 'FLUME',
- isSelected: true
- })
- ];
- describe('App.WizardStep6Controller', function () {
- beforeEach(function () {
- controller = App.WizardStep6Controller.create();
- controller.set('content', {
- hosts: {},
- masterComponentHosts: {},
- services: services
- });
- var h = {}, m = [];
- Em.A(['host0', 'host1', 'host2', 'host3']).forEach(function (hostName) {
- var obj = Em.Object.create({
- name: hostName,
- hostName: hostName,
- bootStatus: 'REGISTERED'
- });
- h[hostName] = obj;
- m.push(obj);
- });
- controller.set('content.hosts', h);
- controller.set('content.masterComponentHosts', m);
- controller.set('isMasters', false);
- });
- describe('#isAddHostWizard', function () {
- it('true if content.controllerName is addHostController', function () {
- controller.set('content.controllerName', 'addHostController');
- expect(controller.get('isAddHostWizard')).to.equal(true);
- });
- it('false if content.controllerName is not addHostController', function () {
- controller.set('content.controllerName', 'mainController');
- expect(controller.get('isAddHostWizard')).to.equal(false);
- });
- });
- describe('#isInstallerWizard', function () {
- it('true if content.controllerName is addHostController', function () {
- controller.set('content.controllerName', 'installerController');
- expect(controller.get('isInstallerWizard')).to.equal(true);
- });
- it('false if content.controllerName is not addHostController', function () {
- controller.set('content.controllerName', 'mainController');
- expect(controller.get('isInstallerWizard')).to.equal(false);
- });
- });
- describe('#isAddServiceWizard', function () {
- it('true if content.controllerName is addServiceController', function () {
- controller.set('content.controllerName', 'addServiceController');
- expect(controller.get('isAddServiceWizard')).to.equal(true);
- });
- it('false if content.controllerName is not addServiceController', function () {
- controller.set('content.controllerName', 'mainController');
- expect(controller.get('isAddServiceWizard')).to.equal(false);
- });
- });
- describe('#clearStep', function () {
- beforeEach(function () {
- sinon.stub(controller, 'clearError', Em.K);
- });
- afterEach(function () {
- controller.clearError.restore();
- });
- it('should call clearError', function () {
- controller.clearStep();
- expect(controller.clearError.calledOnce).to.equal(true);
- });
- it('should clear hosts', function () {
- controller.set('hosts', [
- {},
- {}
- ]);
- controller.clearStep();
- expect(controller.get('hosts')).to.eql([]);
- });
- it('should clear headers', function () {
- controller.set('headers', [
- {},
- {}
- ]);
- controller.clearStep();
- expect(controller.get('headers')).to.eql([]);
- });
- it('should set isLoaded to false', function () {
- controller.set('isLoaded', true);
- controller.clearStep();
- expect(controller.get('isLoaded')).to.equal(false);
- });
- });
- describe('#checkCallback', function () {
- beforeEach(function () {
- sinon.stub(controller, 'clearError', Em.K);
- });
- afterEach(function () {
- controller.clearError.restore();
- });
- it('should call clearError', function () {
- controller.checkCallback('');
- expect(controller.clearError.calledOnce).to.equal(true);
- });
- Em.A([
- {
- m: 'all checked, isInstalled false',
- headers: Em.A([
- Em.Object.create({name: 'c1'})
- ]),
- hosts: Em.A([
- Em.Object.create({
- checkboxes: Em.A([
- Em.Object.create({
- component: 'c1',
- isInstalled: false,
- checked: true
- })
- ])
- })
- ]),
- component: 'c1',
- e: {
- allChecked: true,
- noChecked: false
- }
- },
- {
- m: 'all checked, isInstalled true',
- headers: Em.A([
- Em.Object.create({name: 'c1'})
- ]),
- hosts: Em.A([
- Em.Object.create({
- checkboxes: Em.A([
- Em.Object.create({
- component: 'c1',
- isInstalled: true,
- checked: true
- })
- ])
- })
- ]),
- component: 'c1',
- e: {
- allChecked: true,
- noChecked: true
- }
- },
- {
- m: 'no one checked',
- headers: Em.A([
- Em.Object.create({name: 'c1'})
- ]),
- hosts: Em.A([
- Em.Object.create({
- checkboxes: Em.A([
- Em.Object.create({
- component: 'c1',
- isInstalled: false,
- checked: false
- })
- ])
- })
- ]),
- component: 'c1',
- e: {
- allChecked: false,
- noChecked: true
- }
- },
- {
- m: 'some checked',
- headers: Em.A([
- Em.Object.create({name: 'c1'})
- ]),
- hosts: Em.A([
- Em.Object.create({
- checkboxes: Em.A([
- Em.Object.create({
- component: 'c1',
- isInstalled: false,
- checked: true
- }),
- Em.Object.create({
- component: 'c1',
- isInstalled: false,
- checked: false
- })
- ])
- })
- ]),
- component: 'c1',
- e: {
- allChecked: false,
- noChecked: false
- }
- },
- {
- m: 'some checked, some isInstalled true',
- headers: Em.A([
- Em.Object.create({name: 'c1'})
- ]),
- hosts: Em.A([
- Em.Object.create({
- checkboxes: Em.A([
- Em.Object.create({
- component: 'c1',
- isInstalled: true,
- checked: true
- }),
- Em.Object.create({
- component: 'c1',
- isInstalled: true,
- checked: true
- })
- ])
- })
- ]),
- component: 'c1',
- e: {
- allChecked: true,
- noChecked: true
- }
- },
- {
- m: 'some checked, some isInstalled true (2)',
- headers: Em.A([
- Em.Object.create({name: 'c1'})
- ]),
- hosts: Em.A([
- Em.Object.create({
- checkboxes: Em.A([
- Em.Object.create({
- component: 'c1',
- isInstalled: false,
- checked: false
- }),
- Em.Object.create({
- component: 'c1',
- isInstalled: true,
- checked: true
- })
- ])
- })
- ]),
- component: 'c1',
- e: {
- allChecked: false,
- noChecked: true
- }
- }
- ]).forEach(function (test) {
- it(test.m, function () {
- controller.clearStep();
- controller.set('headers', test.headers);
- controller.set('hosts', test.hosts);
- controller.checkCallback(test.component);
- var header = controller.get('headers').findProperty('name', test.component);
- expect(header.get('allChecked')).to.equal(test.e.allChecked);
- expect(header.get('noChecked')).to.equal(test.e.noChecked);
- });
- });
- });
- describe('#getHostNames', function () {
- var tests = Em.A([
- {
- hosts: {
- h1: {bootStatus: 'REGISTERED', name: 'h1'},
- h2: {bootStatus: 'REGISTERED', name: 'h2'},
- h3: {bootStatus: 'REGISTERED', name: 'h3'}
- },
- m: 'All REGISTERED',
- e: ['h1', 'h2', 'h3']
- },
- {
- hosts: {
- h1: {bootStatus: 'REGISTERED', name: 'h1'},
- h2: {bootStatus: 'FAILED', name: 'h2'},
- h3: {bootStatus: 'REGISTERED', name: 'h3'}
- },
- m: 'Some REGISTERED',
- e: ['h1', 'h3']
- },
- {
- hosts: {
- h1: {bootStatus: 'FAILED', name: 'h1'},
- h2: {bootStatus: 'FAILED', name: 'h2'},
- h3: {bootStatus: 'FAILED', name: 'h3'}
- },
- m: 'No one REGISTERED',
- e: []
- },
- {
- hosts: {},
- m: 'Empty hosts',
- e: []
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- controller.set('content.hosts', test.hosts);
- var r = controller.getHostNames();
- expect(r).to.eql(test.e);
- });
- });
- });
- describe('#getMasterComponentsForHost', function () {
- var tests = Em.A([
- {
- masterComponentHosts: Em.A([
- {hostName: 'h1', component: 'c1'}
- ]),
- hostName: 'h1',
- m: 'host exists',
- e: ['c1']
- },
- {
- masterComponentHosts: Em.A([
- {hostName: 'h1', component: 'c1'}
- ]),
- hostName: 'h2',
- m: 'host donesn\'t exists',
- e: []
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- controller.set('content.masterComponentHosts', test.masterComponentHosts);
- var r = controller.getMasterComponentsForHost(test.hostName);
- expect(r).to.eql(test.e);
- });
- });
- });
- describe('#selectMasterComponents', function () {
- var tests = Em.A([
- {
- masterComponentHosts: Em.A([
- {
- hostName: 'h1',
- component: 'c1'
- }
- ]),
- hostsObj: [
- Em.Object.create({
- hostName: 'h1',
- checkboxes: [
- Em.Object.create({
- component: 'c1',
- checked: false
- })
- ]
- })
- ],
- e: true,
- m: 'host and component exist'
- },
- {
- masterComponentHosts: Em.A([
- {
- hostName: 'h1',
- component: 'c2'
- }
- ]),
- hostsObj: [
- Em.Object.create({
- hostName: 'h1',
- checkboxes: [
- Em.Object.create({
- component: 'c1',
- checked: false
- })
- ]
- })
- ],
- e: false,
- m: 'host exists'
- },
- {
- masterComponentHosts: Em.A([
- {
- hostName: 'h2',
- component: 'c2'
- }
- ]),
- hostsObj: [
- Em.Object.create({
- hostName: 'h1',
- checkboxes: [
- Em.Object.create({
- component: 'c1',
- checked: false
- })
- ]
- })
- ],
- e: false,
- m: 'host and component don\'t exist'
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- controller.set('content.masterComponentHosts', test.masterComponentHosts);
- var r = controller.selectMasterComponents(test.hostsObj);
- expect(r.findProperty('hostName', 'h1').get('checkboxes').findProperty('component', 'c1').get('checked')).to.equal(test.e);
- });
- });
- });
- describe('#getCurrentMastersBlueprint', function () {
- var tests = Em.A([
- {
- masterComponentHosts: Em.A([
- {hostName: 'h1', component: 'c1'}
- ]),
- hosts: {'h1': {}},
- m: 'one host and one component',
- e:{
- blueprint: {
- host_groups: [
- {
- name: 'host-group-1',
- components: [
- { name: 'c1' }
- ]
- }
- ]
- },
- blueprint_cluster_binding: {
- host_groups: [
- {
- name: 'host-group-1',
- hosts: [
- { fqdn: 'h1' }
- ]
- }
- ]
- }
- }
- },
- {
- masterComponentHosts: Em.A([
- {hostName: 'h1', component: 'c1'},
- {hostName: 'h2', component: 'c2'},
- {hostName: 'h2', component: 'c3'}
- ]),
- hosts: {'h1': {}, 'h2': {}, 'h3': {}},
- m: 'multiple hosts and multiple components',
- e: {
- blueprint: {
- host_groups: [
- {
- name: 'host-group-1',
- components: [
- { name: 'c1' }
- ]
- },
- {
- name: 'host-group-2',
- components: [
- { name: 'c2' },
- { name: 'c3' }
- ]
- },
- {
- name: 'host-group-3',
- components: []
- }
- ]
- },
- blueprint_cluster_binding: {
- host_groups: [
- {
- name: 'host-group-1',
- hosts: [
- { fqdn: 'h1' }
- ]
- },
- {
- name: 'host-group-2',
- hosts: [
- { fqdn: 'h2' }
- ]
- },
- {
- name: 'host-group-3',
- hosts: [
- { fqdn: 'h3' }
- ]
- }
- ]
- }
- }
- }
- ]);
- tests.forEach(function (test) {
- it(test.m, function () {
- controller.set('content.masterComponentHosts', test.masterComponentHosts);
- controller.set('content.hosts', test.hosts);
- var r = controller.getCurrentMastersBlueprint();
- expect(r).to.eql(test.e);
- });
- });
- });
- });
|