123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008 |
- /**
- * 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');
- require('models/host_stack_version');
- var batchUtils = require('utils/batch_scheduled_requests');
- var hostsManagement = require('utils/hosts');
- var testHelpers = require('test/helpers');
- var controller;
- function getController() {
- return App.MainHostDetailsController.create(App.InstallComponent, {
- content: Em.Object.create({
- hostComponents: []
- })
- });
- }
- describe('App.MainHostDetailsController', function () {
- beforeEach(function () {
- controller = getController();
- });
- App.TestAliases.testAsComputedFilterBy(getController(), 'serviceNonClientActiveComponents', 'serviceActiveComponents', 'isClient', false);
- describe('#routeHome()', function () {
- beforeEach(function () {
- sinon.stub(App.router, 'transitionTo', Em.K);
- });
- afterEach(function () {
- App.router.transitionTo.restore();
- });
- it('transition to dashboard', function () {
- controller.routeHome();
- expect(App.router.transitionTo.calledWith('main.dashboard.index')).to.be.true;
- });
- });
- describe('#startComponent()', function () {
- var event = {
- context: Em.Object.create({
- displayName: 'comp'
- })
- };
- beforeEach(function () {
- sinon.stub(App, 'showConfirmationPopup', function (callback) {
- callback();
- });
- sinon.stub(controller, 'sendComponentCommand');
- controller.startComponent(event);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.sendComponentCommand.restore();
- });
- it('configmation popup is shown', function () {
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- });
- it('call sendComponentCommand', function () {
- expect(controller.sendComponentCommand.calledWith(Em.Object.create({
- displayName: 'comp'
- })), Em.I18n.t('requestInfo.startHostComponent') + " comp", App.HostComponentStatus.started).to.be.true;
- });
- });
- describe('#stopComponent()', function () {
- beforeEach(function () {
- sinon.stub(App, 'showConfirmationPopup', Em.clb);
- sinon.stub(controller, 'checkNnLastCheckpointTime', Em.clb);
- sinon.stub(controller, 'sendComponentCommand');
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.sendComponentCommand.restore();
- controller.checkNnLastCheckpointTime.restore();
- });
- it('call sendComponentCommand', function () {
- var event = {
- context: Em.Object.create({
- displayName: 'comp'
- })
- };
- controller.stopComponent(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- expect(controller.sendComponentCommand.calledWith(Em.Object.create({
- displayName: 'comp'
- })), Em.I18n.t('requestInfo.stopHostComponent') + " comp", App.HostComponentStatus.stopped).to.be.true;
- });
- it('stop NN, should check last NN checkpoint before stop', function () {
- var event = {
- context: Em.Object.create({
- displayName: 'NameNode',
- componentName: 'NAMENODE'
- })
- };
- controller.stopComponent(event);
- expect(controller.checkNnLastCheckpointTime.calledOnce).to.be.true;
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- expect(controller.sendComponentCommand.calledWith(event.context, Em.I18n.t('requestInfo.stopHostComponent') + " NameNode", App.HostComponentStatus.stopped)).to.be.true;
- });
- });
- describe("#pullNnCheckPointTime()", function() {
- it("valid request is sent", function() {
- controller.pullNnCheckPointTime('host1');
- var args = testHelpers.findAjaxRequest('name', 'common.host_component.getNnCheckPointTime');
- expect(args[0]).to.exists;
- expect(args[0].sender).to.be.eql(controller);
- expect(args[0].data).to.be.eql({
- host: 'host1'
- });
- });
- });
- describe('#sendComponentCommand()', function () {
- describe('single component', function () {
- var component;
- beforeEach(function () {
- controller.set('content.hostName', 'host1');
- component = Em.Object.create({
- service: {serviceName: 'S1'},
- componentName: 'COMP1'
- });
- controller.sendComponentCommand(component, {}, 'state');
- });
- it('1st call endpoint is valid', function () {
- var args = testHelpers.findAjaxRequest('name', 'common.host.host_component.update');
- expect(args).to.exists;
- });
- it('1st call data is valid', function () {
- var args = testHelpers.findAjaxRequest('name', 'common.host.host_component.update');
- expect(args[0]).to.exists;
- expect(args[0].data).to.be.eql({
- "hostName": "host1",
- "context": {},
- "component": component,
- "HostRoles": {
- "state": "state"
- },
- "componentName": "COMP1",
- "serviceName": "S1"
- });
- });
- });
- describe('multiple component', function () {
- var component;
- beforeEach(function () {
- controller.set('content.hostName', 'host1');
- component = [
- Em.Object.create({
- service: {serviceName: 'S1'},
- componentName: 'COMP1'
- }),
- Em.Object.create({
- service: {serviceName: 'S1'},
- componentName: 'COMP2'
- })
- ];
- controller.sendComponentCommand(component, {}, 'state');
- });
- it('1st call endpoint is valid', function () {
- var args = testHelpers.findAjaxRequest('name', 'common.host.host_components.update');
- expect(args).exists;
- });
- it('1st call data is valid', function () {
- var args = testHelpers.findAjaxRequest('name', 'common.host.host_components.update');
- expect(args[0]).exists;
- expect(args[0].data).to.be.eql({
- "hostName": "host1",
- "context": {},
- "component": component,
- "HostRoles": {
- "state": "state"
- },
- "query": "HostRoles/component_name.in(COMP1,COMP2)"
- });
- });
- });
- });
- describe('#sendComponentCommandSuccessCallback()', function () {
- var params = {
- component: Em.Object.create({}),
- HostRoles: {
- state: App.HostComponentStatus.stopped
- }
- };
- beforeEach(function () {
- sinon.stub(controller, 'mimicWorkStatusChange', Em.K);
- sinon.stub(controller, 'showBackgroundOperationsPopup', Em.K);
- controller.sendComponentCommandSuccessCallback({}, {}, params);
- });
- afterEach(function () {
- controller.showBackgroundOperationsPopup.restore();
- controller.mimicWorkStatusChange.restore();
- });
- it('mimicWorkStatusChange is not called', function () {
- expect(controller.mimicWorkStatusChange.called).to.be.false;
- });
- it('showBackgroundOperationsPopup is called once', function () {
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- });
- describe('#ajaxErrorCallback()', function () {
- beforeEach(function () {
- sinon.stub(controller, 'ajaxErrorCallback', Em.K);
- });
- afterEach(function () {
- controller.ajaxErrorCallback.restore();
- });
- it('call mainServiceItemController.ajaxErrorCallback', function () {
- controller.ajaxErrorCallback('request', 'ajaxOptions', 'error', 'opt', 'params');
- expect(controller.ajaxErrorCallback.calledWith('request', 'ajaxOptions', 'error', 'opt', 'params')).to.be.true;
- });
- });
- describe('#showBackgroundOperationsPopup()', function () {
- var mock = {
- done: function (callback) {
- callback(this.initValue);
- }
- };
- var bgController = {
- showPopup: Em.K
- };
- beforeEach(function () {
- var stub = sinon.stub(App.router, 'get');
- stub.withArgs('userSettingsController').returns({
- dataLoading: function () {
- return mock;
- }
- });
- stub.withArgs('backgroundOperationsController').returns(bgController);
- sinon.spy(bgController, 'showPopup');
- sinon.spy(mock, 'done');
- this.callback = sinon.stub();
- });
- afterEach(function () {
- bgController.showPopup.restore();
- mock.done.restore();
- App.router.get.restore();
- });
- it('initValue is true, callback is undefined', function () {
- mock.initValue = true;
- controller.showBackgroundOperationsPopup();
- expect(mock.done.calledOnce).to.be.true;
- expect(bgController.showPopup.calledOnce).to.be.true;
- });
- it('initValue is false, callback is defined', function () {
- mock.initValue = false;
- controller.showBackgroundOperationsPopup(this.callback);
- expect(mock.done.calledOnce).to.be.true;
- expect(bgController.showPopup.calledOnce).to.be.false;
- expect(this.callback.calledOnce).to.be.true;
- });
- });
- 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.skip('#deleteComponent()', function () {
- var jQueryMock,
- cases = [
- {
- isDisabled: false,
- showCallCount: 1,
- title: 'confirm popup should be displayed'
- },
- {
- isDisabled: true,
- showCallCount: 0,
- title: 'confirm popup shouldn\'t be displayed'
- }
- ];
- beforeEach(function () {
- jQueryMock = sinon.stub(window, '$');
- sinon.spy(App.ModalPopup, 'show');
- sinon.stub(controller, '_doDeleteHostComponent', Em.K);
- });
- afterEach(function () {
- jQueryMock.restore();
- App.ModalPopup.show.restore();
- controller._doDeleteHostComponent.restore();
- });
- cases.forEach(function (item) {
- it(item.title, function () {
- jQueryMock.returns({
- closest: function () {
- return {
- hasClass: function () {
- return item.isDisabled;
- }
- }
- }
- });
- var event = {
- context: Em.Object.create({})
- },
- popup = controller.deleteComponent(event);
- expect(App.ModalPopup.show.callCount).to.equal(item.showCallCount);
- if (item.showCallCount) {
- popup.onPrimary();
- expect(controller._doDeleteHostComponent.calledWith(Em.Object.create({}))).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");
- });
- afterEach(function () {
- App.showConfirmationPopup.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();
- var args = testHelpers.findAjaxRequest('name', 'host.host_component.upgrade');
- expect(args).exists;
- });
- });
- describe('#restartComponent()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(batchUtils, "restartHostComponents", Em.K);
- sinon.stub(controller, 'checkNnLastCheckpointTime', Em.clb);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- batchUtils.restartHostComponents.restore();
- controller.checkNnLastCheckpointTime.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;
- });
- it('restart NN, should check last NN checkpoint before restart', function () {
- var event = {
- context: Em.Object.create({
- displayName: 'NameNode',
- componentName: 'NAMENODE'
- })
- };
- controller.restartComponent(event);
- expect(controller.checkNnLastCheckpointTime.calledOnce).to.equal(true);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- });
- });
- describe('#addComponent()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, "addClientComponent", Em.K);
- sinon.stub(controller, "installHostComponentCall", Em.K);
- sinon.stub(controller, "checkComponentDependencies", Em.K);
- controller.set('content', {
- hostComponents: [Em.Object.create({
- componentName: "HDFS_CLIENT"
- })]
- });
- controller.reopen({
- securityEnabled: false
- });
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.addClientComponent.restore();
- controller.installHostComponentCall.restore();
- controller.checkComponentDependencies.restore();
- });
- it('add ZOOKEEPER_SERVER', function () {
- var event = {
- context: Em.Object.create({
- componentName: 'ZOOKEEPER_SERVER'
- })
- };
- controller.addComponent(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- });
- it('add WEBHCAT_SERVER', function () {
- var event = {
- context: Em.Object.create({
- componentName: 'WEBHCAT_SERVER'
- })
- };
- controller.addComponent(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- });
- it('add slave component', function () {
- var event = {
- context: Em.Object.create({
- componentName: 'HIVE_CLIENT'
- })
- };
- controller.set('securityEnabled', 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 () {
- var component = Em.Object.create({
- componentName: ' Comp1'
- });
- beforeEach(function () {
- sinon.spy(controller, 'showAddComponentPopup');
- sinon.stub(controller, 'installHostComponentCall', Em.K);
- });
- afterEach(function () {
- controller.showAddComponentPopup.restore();
- controller.installHostComponentCall.restore();
- });
- it('any CLIENT component', function () {
- controller.set('content.hostName', 'host1');
- var popup = controller.addClientComponent(component);
- expect(controller.showAddComponentPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.installHostComponentCall.calledWith('host1', component)).to.be.true;
- });
- });
- describe("#loadOozieConfigs()", function() {
- it("valid request is sent", function() {
- controller.loadOozieConfigs({Clusters: {
- desired_configs: {
- 'oozie-env': {
- tag: 'tag'
- }
- }
- }});
- var args = testHelpers.findAjaxRequest('name', 'admin.get.all_configurations');
- expect(args[0]).exists;
- expect(args[0].sender).to.be.eql(controller);
- expect(args[0].data).to.be.eql({
- urlParams: '(type=oozie-env&tag=tag)'
- });
- });
- });
- describe("#loadStormConfigs()", function() {
- it("valid request is sent", function() {
- controller.loadStormConfigs({Clusters: {
- desired_configs: {
- 'storm-site': {
- tag: 'tag'
- }
- }
- }});
- var args = testHelpers.findAjaxRequest('name', 'admin.get.all_configurations');
- expect(args[0]).exists;
- expect(args[0].sender).to.be.eql(controller);
- expect(args[0].data).to.be.eql({
- urlParams: '(type=storm-site&tag=tag)'
- });
- });
- });
- describe("#onLoadStormConfigs()", function() {
- var data = {items: [
- {
- type: 'storm-site',
- properties: {
- 'nimbus.seeds': ''
- }
- }
- ]};
- beforeEach(function () {
- sinon.stub(controller, 'getStormNimbusHosts').returns("host1");
- sinon.stub(controller, 'updateZkConfigs', Em.K);
- sinon.stub(controller, 'saveConfigsBatch', Em.K);
- controller.set('nimbusHost', 'host2');
- controller.onLoadStormConfigs(data);
- });
- afterEach(function () {
- controller.getStormNimbusHosts.restore();
- controller.updateZkConfigs.restore();
- controller.saveConfigsBatch.restore();
- });
- it("updateZkConfigs called with valid arguments", function() {
- expect(controller.updateZkConfigs.calledWith({'storm-site': {
- 'nimbus.seeds': "'host1'"
- }})).to.be.true;
- });
- it('saveConfigsBatch called with valid arguments', function () {
- expect(controller.saveConfigsBatch.calledWith([
- {
- properties: {
- 'storm-site': {
- 'nimbus.seeds': "'host1'"
- }
- },
- properties_attributes: {
- 'storm-site': {}
- }
- }
- ], 'NIMBUS', 'host2')).to.be.true;
- });
- });
- describe("#loadHiveConfigs()", function() {
- it("valid request is sent", function() {
- controller.loadHiveConfigs({Clusters: {
- desired_configs: {
- 'hive-site': {
- tag: 'tag'
- },
- 'webhcat-site': {
- tag: 'tag'
- },
- 'hive-env': {
- tag: 'tag'
- },
- 'core-site': {
- tag: 'tag'
- }
- }
- }});
- var args = testHelpers.findAjaxRequest('name', 'admin.get.all_configurations');
- expect(args[0]).exists;
- expect(args[0].sender).to.be.eql(controller);
- expect(args[0].data).to.be.eql({
- urlParams: '(type=hive-site&tag=tag)|(type=webhcat-site&tag=tag)|(type=hive-env&tag=tag)|(type=core-site&tag=tag)'
- });
- });
- });
- describe("#loadRangerConfigs()", function() {
- it("valid request is sent", function() {
- controller.loadRangerConfigs({Clusters: {
- desired_configs: {
- 'hdfs-site': {
- tag: 'tag'
- },
- 'kms-env': {
- tag: 'tag'
- },
- 'core-site': {
- tag: 'tag'
- }
- }
- }});
- var args = testHelpers.findAjaxRequest('name', 'admin.get.all_configurations');
- expect(args[0]).exists;
- expect(args[0].sender).to.be.eql(controller);
- expect(args[0].data).to.be.eql({
- urlParams: '(type=core-site&tag=tag)|(type=hdfs-site&tag=tag)|(type=kms-env&tag=tag)'
- });
- });
- });
- describe("#getRangerKMSServerHosts()", function() {
- beforeEach(function(){
- sinon.stub(App.HostComponent, 'find').returns([{
- componentName: 'RANGER_KMS_SERVER',
- hostName: 'host1'
- }]);
- controller.set('rangerKMSServerHost', 'host2');
- controller.set('content.hostName', 'host1');
- controller.set('deleteRangerKMSServer', true);
- controller.set('fromDeleteHost', true);
- this.hosts = controller.getRangerKMSServerHosts();
- });
- afterEach(function(){
- App.HostComponent.find.restore();
- });
- it('hosts list is valid', function() {
- expect(this.hosts).to.eql(['host2']);
- });
- it('rangerKMSServerHost is empty', function () {
- expect(controller.get('rangerKMSServerHost')).to.be.empty;
- });
- it('deleteRangerKMSServer is false', function () {
- expect(controller.get('deleteRangerKMSServer')).to.be.false;
- });
- it('fromDeleteHost is false', function () {
- expect(controller.get('fromDeleteHost')).to.be.false;
- });
- });
- describe("#getStormNimbusHosts()", function() {
- beforeEach(function(){
- sinon.stub(App.HostComponent, 'find').returns([{
- componentName: 'NIMBUS',
- hostName: 'host1'
- }]);
- controller.set('nimbusHost', 'host2');
- controller.set('content.hostName', 'host1');
- controller.set('deleteNimbusHost', true);
- controller.set('fromDeleteHost', true);
- this.hosts = controller.getStormNimbusHosts();
- });
- afterEach(function(){
- App.HostComponent.find.restore();
- });
- it("hosts list is valid", function() {
- expect(this.hosts).to.eql(['host2']);
- });
- it('nimbusHost is empty', function () {
- expect(controller.get('nimbusHost')).to.be.empty;
- });
- it('deleteNimbusHost is false', function () {
- expect(controller.get('deleteNimbusHost')).to.be.false;
- });
- it('fromDeleteHost is false', function () {
- expect(controller.get('fromDeleteHost')).to.be.false;
- });
- });
- describe('#showAddComponentPopup()', function () {
- var message = 'Comp1';
- beforeEach(function () {
- sinon.spy(App.ModalPopup, 'show');
- });
- afterEach(function () {
- App.ModalPopup.show.restore();
- });
- it('should display add component confirmation', function () {
- var popup = controller.showAddComponentPopup(message, false, Em.K);
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- expect(popup.get('addComponentMsg')).to.eql(Em.I18n.t('hosts.host.addComponent.msg').format(message));
- });
- });
- describe('#installNewComponentSuccessCallback()', function () {
- beforeEach(function () {
- sinon.stub(controller, "showBackgroundOperationsPopup", Em.K);
- });
- afterEach(function () {
- controller.showBackgroundOperationsPopup.restore();
- });
- it('data is null', function () {
- expect(controller.installNewComponentSuccessCallback(null, {}, {})).to.be.false;
- expect(controller.showBackgroundOperationsPopup.called).to.be.false;
- });
- 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 () {
- it('Query should be sent', function () {
- var component = Em.Object.create({
- service: {},
- componentName: 'COMP1',
- host: {}
- });
- controller.sendRefreshComponentConfigsCommand(component, {});
- var args = testHelpers.findAjaxRequest('name', 'host.host_component.refresh_configs');
- expect(args[0]).exists;
- });
- });
- describe('#loadConfigs()', function () {
- it('Query should be sent', function () {
- controller.loadConfigs();
- var args = testHelpers.findAjaxRequest('name', 'config.tags');
- expect(args).exists;
- });
- });
- describe('#constructConfigUrlParams()', function () {
- function loadService(serviceName) {
- App.store.load(App.Service, {
- id: serviceName,
- service_name: serviceName
- });
- }
- var data = {
- Clusters: {
- desired_configs: {
- 'core-site': {
- tag: 1
- },
- 'hbase-site': {
- tag: 1
- },
- 'webhcat-site': {
- tag: 1
- },
- 'hive-site': {
- tag: 1
- },
- 'storm-site': {
- tag: 1
- },
- 'yarn-site': {
- tag: 1
- },
- 'zoo.cfg': {
- tag: 1
- },
- 'accumulo-site': {
- tag: 1
- }
- }
- }
- };
- afterEach(function () {
- App.Service.find().clear();
- });
- it('URL params should be empty', function () {
- App.Service.find().clear();
- expect(controller.constructConfigUrlParams(data)).to.eql([]);
- });
- it('isHaEnabled = true', function () {
- loadService('HDFS');
- App.HostComponent.find().clear();
- App.propertyDidChange('isHaEnabled');
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=core-site&tag=1)']);
- App.store.load(App.HostComponent, {
- id: 'SECONDARY_NAMENODE_host1',
- component_name: 'SECONDARY_NAMENODE'
- });
- });
- it('HBASE is installed', function () {
- loadService('HBASE');
- App.propertyDidChange('isHaEnabled');
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=hbase-site&tag=1)']);
- });
- it('HIVE is installed', function () {
- loadService('HIVE');
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=webhcat-site&tag=1)', '(type=hive-site&tag=1)']);
- });
- it('STORM is installed', function () {
- loadService('STORM');
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=storm-site&tag=1)']);
- });
- it('YARN is installed', function () {
- loadService('YARN');
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=yarn-site&tag=1)', '(type=zoo.cfg&tag=1)']);
- });
- it('ACCUMULO is installed', function () {
- loadService('ACCUMULO');
- expect(controller.constructConfigUrlParams(data)).to.eql(['(type=accumulo-site&tag=1)']);
- });
- });
- describe('#loadConfigsSuccessCallback()', function () {
- var mockUrlParams = [];
- beforeEach(function () {
- sinon.stub(controller, "constructConfigUrlParams", function () {
- return mockUrlParams;
- });
- });
- afterEach(function () {
- controller.constructConfigUrlParams.restore();
- });
- it('url params is empty', function () {
- expect(controller.loadConfigsSuccessCallback()).to.be.false;
- var args = testHelpers.findAjaxRequest('name', 'reassign.load_configs');
- expect(args).not.exists;
- });
- it('url params are correct', function () {
- mockUrlParams = ['param1'];
- var args = testHelpers.findAjaxRequest('name', 'reassign.load_configs');
- expect(args).exists;
- });
- });
- describe('#saveZkConfigs()', function () {
- var data = {
- items: [
- {
- type: 'yarn-site',
- properties: {
- p: 'ys'
- },
- properties_attributes: {
- p: 'pa_ys'
- }
- },
- {
- type: 'hive-site',
- properties: {
- hs: 'hs'
- },
- properties_attributes: {
- hs: 'pa_hs'
- }
- },
- {
- type: 'webhcat-site',
- properties: {
- ws: 'ws'
- },
- properties_attributes: {
- ws: 'pa_ws'
- }
- },
- {
- type: 'hbase-site',
- properties: {
- hbs: 'hbs'
- },
- properties_attributes: {
- hbs: 'pa_hbs'
- }
- },
- {
- type: 'accumulo-site',
- properties: {
- as: 'as'
- },
- properties_attributes: {
- as: 'pa_as'
- }
- }
- ]
- };
- beforeEach(function () {
- sinon.stub(controller, 'saveConfigsBatch', Em.K);
- sinon.stub(controller, 'updateZkConfigs', Em.K);
- sinon.stub(App.Service, 'find', function() {
- return [
- Em.Object.create({ serviceName: 'HIVE' }),
- Em.Object.create({ serviceName: 'YARN' }),
- Em.Object.create({ serviceName: 'HBASE' }),
- Em.Object.create({ serviceName: 'ACCUMULO' })
- ];
- });
- controller.saveZkConfigs(data);
- this.groups = controller.saveConfigsBatch.args[0][0];
- });
- afterEach(function () {
- App.Service.find.restore();
- controller.updateZkConfigs.restore();
- controller.saveConfigsBatch.restore();
- });
- it('configs for YARN', function () {
- var expected = {
- properties: {
- 'yarn-site': {
- p: 'ys'
- }
- },
- properties_attributes: {
- 'yarn-site': {
- p: 'pa_ys'
- }
- }
- };
- expect(this.groups[1]).to.be.eql(expected);
- });
- it('configs for HIVE', function () {
- var expected = {
- "properties": {
- "hive-site": {
- "hs": "hs"
- },
- "webhcat-site": {
- "ws": "ws"
- }
- },
- "properties_attributes": {
- "hive-site": {
- "hs": "pa_hs"
- },
- "webhcat-site": {
- "ws": "pa_ws"
- }
- }
- };
- expect(this.groups[0]).to.be.eql(expected);
- });
- it('configs for HBASE', function () {
- var expected = {
- "properties": {
- "hbase-site": {
- "hbs": "hbs"
- }
- },
- "properties_attributes": {
- "hbase-site": {
- "hbs": "pa_hbs"
- }
- }
- };
- expect(this.groups[2]).to.be.eql(expected);
- });
- it('configs for ACCUMULO', function () {
- var expected = {
- "properties": {
- "accumulo-site": {
- "as": "as"
- }
- },
- "properties_attributes": {
- "accumulo-site": {
- "as": "pa_as"
- }
- }
- };
- expect(this.groups[3]).to.be.eql(expected);
- });
- });
- describe("#saveConfigsBatch()", function () {
- it("no groups", function () {
- controller.saveConfigsBatch([]);
- var args = testHelpers.filterAjaxRequests('name', 'common.service.configurations');
- expect(args).to.be.empty;
- });
- it("configs is empty", function () {
- controller.saveConfigsBatch([{}]);
- var args = testHelpers.filterAjaxRequests('name', 'common.service.configurations');
- expect(args).to.be.empty;
- });
- it("configs is correct", function () {
- controller.saveConfigsBatch([{'properties': {'site': {}}, 'properties_attributes': {'site': {}}}]);
- var args = testHelpers.filterAjaxRequests('name', 'common.service.configurations');
- expect(args).to.have.property('length').equal(1);
- });
- });
- describe('#updateZkConfigs()', function () {
- var makeHostComponentModel = function(componentName, hostNames) {
- return hostNames.map(function(hostName) {
- return {
- componentName: componentName,
- hostName: hostName
- };
- });
- };
- var tests = [
- {
- appGetterStubs: {
- isHaEnabled: true
- },
- hostComponentModel: makeHostComponentModel('ZOOKEEPER_SERVER', ['host1', 'host2']),
- configs: {
- "core-site": {
- "ha.zookeeper.quorum": "host2:8080"
- }
- },
- m: 'NameNode HA enabled, ha.zookeeper.quorum config should be updated',
- e: {
- configs: {
- "core-site": {
- "ha.zookeeper.quorum": "host1:2181,host2:2181"
- }
- }
- }
- },
- {
- appGetterStubs: {
- isHaEnabled: false
- },
- hostComponentModel: makeHostComponentModel('ZOOKEEPER_SERVER', ['host1', 'host2']),
- configs: {
- "core-site": {
- "ha.zookeeper.quorum": "host3:8080"
- }
- },
- m: 'NameNode HA disabled, ha.zookeeper.quorum config should be untouched',
- e: {
- configs: {
- "core-site": {
- "ha.zookeeper.quorum": "host3:8080"
- }
- }
- }
- },
- {
- hostComponentModel: makeHostComponentModel('ZOOKEEPER_SERVER', ['host1', 'host2']),
- configs: {
- "hbase-site": {
- "hbase.zookeeper.quorum": "host3"
- }
- },
- m: 'hbase.zookeeper.quorum property update test',
- e: {
- configs: {
- "hbase-site": {
- "hbase.zookeeper.quorum": "host1,host2"
- }
- }
- }
- },
- {
- hostComponentModel: makeHostComponentModel('ZOOKEEPER_SERVER', ['host1', 'host2']),
- ctrlStubs: {
- 'content.hostName': 'host2',
- fromDeleteHost: true
- },
- configs: {
- "zoo.cfg": {
- "clientPort": "1919"
- },
- "accumulo-site": {
- "instance.zookeeper.host": "host3:2020"
- }
- },
- m: 'instance.zookeeper.host property update test, zookeper marked to delete from host2',
- e: {
- configs: {
- "zoo.cfg": {
- "clientPort": "1919"
- },
- "accumulo-site": {
- "instance.zookeeper.host": "host1:1919"
- }
- }
- }
- },
- {
- hostComponentModel: makeHostComponentModel('ZOOKEEPER_SERVER', ['host1', 'host2']),
- configs: {
- "webhcat-site": {
- "templeton.zookeeper.hosts": "host3:2020"
- }
- },
- m: 'templeton.zookeeper.hosts property update test',
- e: {
- configs: {
- "webhcat-site": {
- "templeton.zookeeper.hosts": "host1:2181,host2:2181"
- }
- }
- }
- },
- {
- hostComponentModel: makeHostComponentModel('ZOOKEEPER_SERVER', ['host1', 'host2']),
- configs: {
- "hive-site": {
- "hive.cluster.delegation.token.store.zookeeper.connectString": "host3:2020"
- }
- },
- m: 'hive.cluster.delegation.token.store.zookeeper.connectString property update test',
- e: {
- configs: {
- "hive-site": {
- "hive.cluster.delegation.token.store.zookeeper.connectString": "host1:2181,host2:2181"
- }
- }
- }
- },
- {
- hostComponentModel: makeHostComponentModel('ZOOKEEPER_SERVER', ['host1', 'host2']),
- configs: {
- "storm-site": {
- "storm.zookeeper.servers": "['host3','host2']"
- }
- },
- m: 'storm.zookeeper.servers property update test',
- e: {
- configs: {
- "storm-site": {
- "storm.zookeeper.servers": "['host1','host2']"
- }
- }
- }
- },
- {
- appGetterStubs: {
- isRMHaEnabled: true
- },
- hostComponentModel: makeHostComponentModel('ZOOKEEPER_SERVER', ['host1', 'host2']),
- configs: {
- "yarn-site": {
- "yarn.resourcemanager.zk-address": "host3:2181"
- }
- },
- m: 'yarn.resourcemanager.zk-address property, ResourceManager HA enabled. Property value should be changed.',
- e: {
- configs: {
- "yarn-site": {
- "yarn.resourcemanager.zk-address": "host1:2181,host2:2181"
- }
- }
- }
- },
- {
- appGetterStubs: {
- currentStackVersionNumber: '2.2'
- },
- hostComponentModel: makeHostComponentModel('ZOOKEEPER_SERVER', ['host1', 'host2']),
- configs: {
- "hive-site": {
- "hive.zookeeper.quorum": "host3:2181"
- }
- },
- m: 'hive.zookeeper.quorum property, current stack version is 2.2 property should be updated.',
- e: {
- configs: {
- "hive-site": {
- "hive.zookeeper.quorum": "host1:2181,host2:2181"
- }
- }
- }
- },
- {
- appGetterStubs: {
- currentStackVersionNumber: '2.2'
- },
- hostComponentModel: makeHostComponentModel('ZOOKEEPER_SERVER', ['host1', 'host2']),
- configs: {
- "yarn-site": {
- "hadoop.registry.zk.quorum": "host3:2181"
- }
- },
- m: 'hadoop.registry.zk.quorum property, current stack version is 2.2 property should be changed.',
- e: {
- configs: {
- "yarn-site": {
- "hadoop.registry.zk.quorum": "host1:2181,host2:2181"
- }
- }
- }
- }
- ];
- tests.forEach(function(test) {
- describe(test.m, function() {
- beforeEach(function() {
- if (test.appGetterStubs) {
- Em.keys(test.appGetterStubs).forEach(function(key) {
- sinon.stub(App, 'get').withArgs(key).returns(test.appGetterStubs[key]);
- });
- }
- if (test.ctrlStubs) {
- var stub = sinon.stub(controller, 'get');
- Em.keys(test.ctrlStubs).forEach(function(key) {
- stub.withArgs(key).returns(test.ctrlStubs[key]);
- });
- }
- sinon.stub(App.HostComponent, 'find').returns(test.hostComponentModel);
- controller.updateZkConfigs(test.configs);
- });
- afterEach(function () {
- if (test.ctrlStubs) {
- controller.get.restore();
- }
- if (test.appGetterStubs) {
- App.get.restore();
- }
- App.HostComponent.find.restore();
- });
- it('configs are mapped correctly', function () {
- expect(test.configs).to.be.eql(test.e.configs);
- });
- });
- });
- });
- describe('#installComponent()', function () {
- beforeEach(function () {
- sinon.spy(App.ModalPopup, "show");
- });
- afterEach(function () {
- App.ModalPopup.show.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();
- var args = testHelpers.findAjaxRequest('name', 'common.host.host_component.update');
- expect(args).exists;
- });
- });
- 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('#recommission()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, "runRecommission", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.runRecommission.restore();
- });
- it('popup should be displayed', function () {
- var popup = controller.recommission(Em.Object.create({service: {}}));
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.runRecommission.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;
- });
- describe('HBASE service', function () {
- beforeEach(function () {
- sinon.stub(controller, 'warnBeforeDecommission', Em.K);
- });
- afterEach(function () {
- controller.warnBeforeDecommission.restore();
- });
- it('warnBeforeDecommission is called with valid arguments', function () {
- controller.runDecommission('host1', 'HBASE');
- expect(controller.warnBeforeDecommission.calledWith('host1')).to.be.true;
- });
- });
- });
- describe('#runRecommission()', function () {
- beforeEach(function () {
- sinon.stub(controller, "doRecommissionAndStart", Em.K);
- sinon.stub(controller, "showBackgroundOperationsPopup", Em.K);
- });
- afterEach(function () {
- controller.doRecommissionAndStart.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('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 () {
- it('Query should be sent', function () {
- controller.doDecommission('', '', '', '');
- var args = testHelpers.findAjaxRequest('name', 'host.host_component.decommission_slave');
- expect(args).exists;
- });
- });
- describe('#doDecommissionRegionServer()', function () {
- it('Query should be sent', function () {
- controller.doDecommissionRegionServer('', '', '', '');
- var args = testHelpers.findAjaxRequest('name', 'host.host_component.recommission_and_restart');
- expect(args).exists;
- });
- });
- describe('#warnBeforeDecommission()', function () {
- beforeEach(function () {
- sinon.stub(controller, "showHbaseActiveWarning", Em.K);
- sinon.stub(controller, "checkRegionServerState", Em.K);
- });
- afterEach(function () {
- controller.checkRegionServerState.restore();
- controller.showHbaseActiveWarning.restore();
- });
- it('Component in passive state', function () {
- controller.set('content.hostComponents', [Em.Object.create({
- componentName: 'HBASE_REGIONSERVER',
- passiveState: 'ON'
- })]);
- controller.warnBeforeDecommission('host1');
- expect(controller.checkRegionServerState.calledOnce).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');
- expect(controller.showHbaseActiveWarning.calledOnce).to.be.true;
- });
- });
- describe('#checkRegionServerState()', function () {
- var result;
- beforeEach(function () {
- result = controller.checkRegionServerState('host1');
- });
- it('returns object', function () {
- expect(result).to.be.an('object');
- });
- it('request is sent with correct data', function () {
- var args = testHelpers.findAjaxRequest('name', 'host.region_servers.in_inservice');
- expect(args[0]).exists;
- expect(args[0].data.hostNames).to.be.equal('host1');
- });
- });
- describe('#checkRegionServerStateSuccessCallback()', function () {
- beforeEach(function () {
- sinon.stub(controller, "doDecommissionRegionServer", Em.K);
- sinon.stub(controller, "showRegionServerWarning", Em.K);
- });
- afterEach(function () {
- controller.doDecommissionRegionServer.restore();
- controller.showRegionServerWarning.restore();
- });
- it('Decommission all regionservers', function () {
- var data = {
- items: [
- {
- HostRoles: {
- host_name: 'host1'
- }
- },
- {
- HostRoles: {
- host_name: 'host2'
- }
- }
- ]
- };
- controller.checkRegionServerStateSuccessCallback(data, {}, {hostNames: 'host1,host2'});
- expect(controller.showRegionServerWarning.calledOnce).to.be.true;
- });
- it('Decommission one of two regionservers', function () {
- var data = {
- items: [
- {
- HostRoles: {
- host_name: 'host1'
- }
- },
- {
- HostRoles: {
- host_name: 'host2'
- }
- }
- ]
- };
- controller.checkRegionServerStateSuccessCallback(data, {}, {hostNames: 'host1'});
- expect(controller.doDecommissionRegionServer.calledWith('host1', "HBASE", "HBASE_MASTER", "HBASE_REGIONSERVER")).to.be.true;
- });
- it('Decommission one of three regionservers', function () {
- var data = {
- items: [
- {
- HostRoles: {
- host_name: 'host1'
- }
- },
- {
- HostRoles: {
- host_name: 'host2'
- }
- },
- {
- HostRoles: {
- host_name: 'host3'
- }
- }
- ]
- };
- controller.checkRegionServerStateSuccessCallback(data, {}, {hostNames: 'host1'});
- expect(controller.doDecommissionRegionServer.calledWith('host1', "HBASE", "HBASE_MASTER", "HBASE_REGIONSERVER")).to.be.true;
- });
- });
- describe('#showRegionServerWarning()', function () {
- beforeEach(function () {
- sinon.stub(App.ModalPopup, 'show', Em.K);
- });
- afterEach(function () {
- App.ModalPopup.show.restore();
- });
- it('modal popup is shown', function () {
- controller.showRegionServerWarning();
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- });
- });
- describe('#doRecommissionAndStart()', function () {
- it('Query should be sent', function () {
- controller.doRecommissionAndStart('', '', '', '');
- var args = testHelpers.findAjaxRequest('name', 'host.host_component.recommission_and_restart');
- expect(args).exists;
- });
- });
- 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('#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);
- sinon.stub(controller, "setRackIdForHost", Em.K);
- });
- afterEach(function () {
- controller.validateAndDeleteHost.restore();
- controller.doStartAllComponents.restore();
- controller.doStopAllComponents.restore();
- controller.doRestartAllComponents.restore();
- controller.onOffPassiveModeForHost.restore();
- controller.setRackIdForHost.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;
- });
- it('"setRackId" action', function () {
- var option = {context: {action: "setRackId"}};
- controller.doAction(option);
- expect(controller.setRackIdForHost.calledOnce).to.be.true;
- });
- });
- describe("#setRackIdForHost()", function() {
- beforeEach(function(){
- sinon.stub(hostsManagement, 'setRackInfo', Em.K);
- });
- afterEach(function() {
- hostsManagement.setRackInfo.restore();
- });
- it('setRackInfo called with valid arguments', function() {
- controller.set('content.rack', 'rack');
- controller.set('content.hostName', 'host1');
- controller.setRackIdForHost();
- expect(hostsManagement.setRackInfo.calledWith({message: Em.I18n.t('hosts.host.details.setRackId')}, [{hostName: 'host1'}], 'rack')).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 () {
- it('Query should be sent', function () {
- controller.hostPassiveModeRequest('', '');
- var args = testHelpers.findAjaxRequest('name', 'bulk_request.hosts.passive_state');
- expect(args).exists;
- });
- });
- describe('#doStartAllComponents()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, 'sendComponentCommand', Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.sendComponentCommand.restore();
- });
- it('serviceNonClientActiveComponents is empty', function () {
- controller.reopen({
- serviceNonClientActiveComponents: Em.A([])
- });
- controller.doStartAllComponents();
- expect(App.showConfirmationPopup.called).to.be.false;
- });
- it('serviceNonClientActiveComponents is correct', function () {
- controller.reopen({
- serviceNonClientActiveComponents: Em.A([{}])
- });
- var popup = controller.doStartAllComponents();
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.sendComponentCommand.calledWith(
- controller.get('serviceNonClientActiveComponents'),
- Em.I18n.t('hosts.host.maintainance.startAllComponents.context'),
- App.HostComponentStatus.started)
- ).to.be.true;
- });
- });
- describe('#doStopAllComponents()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, 'sendComponentCommand', Em.K);
- sinon.stub(controller, 'checkNnLastCheckpointTime', function(callback){
- callback();
- });
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.sendComponentCommand.restore();
- controller.checkNnLastCheckpointTime.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: Em.A([{}])
- });
- var popup = controller.doStopAllComponents();
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.sendComponentCommand.calledWith(
- controller.get('serviceNonClientActiveComponents'),
- Em.I18n.t('hosts.host.maintainance.stopAllComponents.context'),
- App.HostComponentStatus.stopped)
- ).to.be.true;
- });
- it('serviceNonClientActiveComponents is correct, NAMENODE started', function () {
- controller.reopen({
- serviceNonClientActiveComponents: Em.A([Em.Object.create({
- componentName: 'NAMENODE',
- workStatus: 'STARTED'
- })])
- });
- controller.set('content.hostComponents', [Em.Object.create({
- componentName: 'NAMENODE',
- workStatus: 'STARTED'
- })]);
- controller.doStopAllComponents();
- expect(controller.checkNnLastCheckpointTime.calledOnce).to.be.true;
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- });
- });
- describe('#doRestartAllComponents()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(batchUtils, 'restartHostComponents', Em.K);
- sinon.stub(controller, 'checkNnLastCheckpointTime', function(callback){
- callback();
- });
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- batchUtils.restartHostComponents.restore();
- controller.checkNnLastCheckpointTime.restore();
- });
- it('serviceActiveComponents is empty', function () {
- controller.reopen({
- serviceActiveComponents: []
- });
- controller.doRestartAllComponents();
- expect(App.showConfirmationPopup.called).to.be.false;
- });
- it('serviceActiveComponents is correct', function () {
- var components = [{}];
- controller.reopen({
- serviceActiveComponents: components
- });
- var popup = controller.doRestartAllComponents();
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(batchUtils.restartHostComponents.calledWith(components)).to.be.true;
- });
- it('serviceActiveComponents is correct, NAMENODE started', function () {
- controller.reopen({
- serviceActiveComponents: Em.A([Em.Object.create({
- componentName: 'NAMENODE',
- workStatus: 'STARTED'
- })])
- });
- controller.set('content.hostComponents', [Em.Object.create({
- componentName: 'NAMENODE',
- workStatus: 'STARTED'
- })]);
- controller.doRestartAllComponents();
- expect(controller.checkNnLastCheckpointTime.calledOnce).to.be.true;
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- });
- });
- describe('#getHostComponentsInfo()', function () {
- var result = {
- zkServerInstalled: false,
- lastComponents: [],
- masterComponents: [],
- runningComponents: [],
- nonDeletableComponents: [],
- unknownComponents: [],
- toDecommissionComponents: []
- };
- beforeEach(function () {
- this.stub = sinon.stub(App.HostComponent, 'find').returns([{
- id: 'TASKTRACKER_host1',
- componentName: 'TASKTRACKER'
- }]);
- });
- afterEach(function () {
- this.stub.restore();
- });
- 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 () {
- controller.set('content', {
- hostComponents: [Em.Object.create({
- componentName: 'TASKTRACKER',
- displayName: 'TaskTracker',
- workStatus: 'INIT',
- isDeletable: true
- })]
- });
- expect(controller.getHostComponentsInfo().lastComponents).to.eql(['TaskTracker']);
- });
- it('content.hostComponents has master non-deletable component', function () {
- 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']);
- });
- it('content.hostComponents has running component', function () {
- controller.set('content', {
- hostComponents: [Em.Object.create({
- componentName: 'TASKTRACKER',
- workStatus: 'STARTED',
- isDeletable: true,
- displayName: 'ZK1'
- })]
- });
- expect(controller.getHostComponentsInfo().runningComponents).to.eql(['ZK1']);
- });
- it('content.hostComponents has non-deletable component', function () {
- controller.set('content', {
- hostComponents: [Em.Object.create({
- componentName: 'TASKTRACKER',
- workStatus: 'INIT',
- isDeletable: false,
- displayName: 'ZK1'
- })]
- });
- expect(controller.getHostComponentsInfo().nonDeletableComponents).to.eql(['ZK1']);
- });
- it('content.hostComponents has component with UNKNOWN state', function () {
- controller.set('content', {
- hostComponents: [Em.Object.create({
- componentName: 'TASKTRACKER',
- workStatus: 'UNKNOWN',
- isDeletable: false,
- displayName: 'ZK1'
- })]
- });
- expect(controller.getHostComponentsInfo().unknownComponents).to.eql(['ZK1']);
- });
- });
- describe('#validateAndDeleteHost()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, "getHostComponentsInfo", function () {
- return this.get('mockHostComponentsInfo');
- });
- sinon.stub(controller, "raiseDeleteComponentsError", Em.K);
- sinon.stub(controller, "confirmDeleteHost", Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.getHostComponentsInfo.restore();
- controller.raiseDeleteComponentsError.restore();
- controller.confirmDeleteHost.restore();
- });
- it('masterComponents exist', function () {
- controller.set('mockHostComponentsInfo', {
- masterComponents: [
- {}
- ]
- });
- controller.validateAndDeleteHost();
- expect(controller.raiseDeleteComponentsError.calledWith({masterComponents: [
- {}
- ]}, 'masterList')).to.be.true;
- });
- it('nonDeletableComponents exist', function () {
- controller.set('mockHostComponentsInfo', {
- masterComponents: [],
- nonDeletableComponents: [
- {}
- ]
- });
- controller.validateAndDeleteHost();
- expect(controller.raiseDeleteComponentsError.calledWith({
- masterComponents: [],
- nonDeletableComponents: [
- {}
- ]
- }, 'nonDeletableList')).to.be.true;
- });
- it('runningComponents exist', function () {
- controller.set('mockHostComponentsInfo', {
- masterComponents: [],
- nonDeletableComponents: [],
- runningComponents: [{}]
- });
- controller.validateAndDeleteHost();
- expect(controller.raiseDeleteComponentsError.calledWith({
- masterComponents: [],
- nonDeletableComponents: [],
- runningComponents: [{}]
- }, '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.confirmDeleteHost.calledWith({
- masterComponents: [],
- nonDeletableComponents: [],
- runningComponents: [],
- unknownComponents: [],
- lastComponents: [],
- zkServerInstalled: true
- })).to.be.true;
- });
- it('zkServerInstalled = false', function () {
- controller.set('mockHostComponentsInfo', {
- masterComponents: [],
- nonDeletableComponents: [],
- runningComponents: [],
- unknownComponents: [],
- lastComponents: [],
- zkServerInstalled: false
- });
- controller.validateAndDeleteHost();
- expect(controller.confirmDeleteHost.calledWith({
- masterComponents: [],
- nonDeletableComponents: [],
- runningComponents: [],
- unknownComponents: [],
- lastComponents: [],
- zkServerInstalled: false
- })).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('#confirmDeleteHost()', function () {
- beforeEach(function () {
- sinon.spy(App.ModalPopup, "show");
- sinon.stub(controller, 'doDeleteHost');
- });
- afterEach(function () {
- App.ModalPopup.show.restore();
- controller.doDeleteHost.restore();
- });
- it('Popup should be displayed', function () {
- var popup = controller.confirmDeleteHost({toDecommissionComponents:[]});
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.doDeleteHost.calledOnce).to.be.true;
- });
- });
- describe('#setRackId', function () {
- beforeEach(function () {
- sinon.stub(hostsManagement, 'setRackInfo', Em.K);
- });
- afterEach(function () {
- hostsManagement.setRackInfo.restore();
- });
- it('should call setRackInfo with appropriate arguments', function () {
- var mockedHost = Em.Object.create({
- rack: 'rackId'
- });
- controller.setRackId({
- context: mockedHost
- });
- expect(hostsManagement.setRackInfo.calledWith({message: Em.I18n.t('hosts.host.details.setRackId')}, [mockedHost], 'rackId')).to.be.true;
- });
- });
- describe('#restartAllStaleConfigComponents()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(batchUtils, "restartHostComponents", Em.K);
- sinon.stub(controller, 'checkNnLastCheckpointTime', function(callback){
- callback();
- });
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- batchUtils.restartHostComponents.restore();
- controller.checkNnLastCheckpointTime.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;
- });
- it('popup ro check NameNode checkpoint should be displayed first', function () {
- controller.set('content.componentsWithStaleConfigs', [Em.Object.create({
- componentName: 'NAMENODE',
- workStatus: 'STARTED'
- })]);
- controller.set('content.hostComponents', [Em.Object.create({
- componentName: 'NAMENODE',
- workStatus: 'STARTED'
- })]);
- controller.restartAllStaleConfigComponents();
- expect(controller.checkNnLastCheckpointTime.calledOnce).to.be.true;
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- });
- });
- describe.skip('#moveComponent()', function () {
- var jQueryMock,
- mock = {
- saveComponentToReassign: Em.K,
- getSecurityStatus: Em.K,
- setCurrentStep: Em.K
- },
- cases = [
- {
- isDisabled: false,
- showConfirmationPopupCallCount: 1,
- title: 'popup should be displayed'
- },
- {
- isDisabled: true,
- showConfirmationPopupCallCount: 0,
- title: 'popup shouldn\'t be displayed'
- }
- ];
- beforeEach(function () {
- jQueryMock = sinon.stub(window, '$');
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(App.router, 'get').withArgs('reassignMasterController').returns(mock);
- sinon.stub(App.router, 'transitionTo', Em.K);
- sinon.spy(mock, "saveComponentToReassign");
- sinon.spy(mock, "getSecurityStatus");
- sinon.spy(mock, "setCurrentStep");
- });
- afterEach(function () {
- window.$.restore();
- App.showConfirmationPopup.restore();
- App.router.get.restore();
- App.router.transitionTo.restore();
- mock.saveComponentToReassign.restore();
- mock.getSecurityStatus.restore();
- mock.setCurrentStep.restore();
- });
- cases.forEach(function (item) {
- it(item.title, function () {
- jQueryMock.returns({
- closest: function () {
- return {
- hasClass: function () {
- return item.isDisabled;
- }
- }
- }
- });
- var popup = controller.moveComponent({context: {}});
- expect(App.showConfirmationPopup.callCount).to.equal(item.showConfirmationPopupCallCount);
- if (item.showConfirmationPopupCallCount) {
- popup.onPrimary();
- expect(App.router.get.calledWith('reassignMasterController')).to.be.true;
- expect(mock.saveComponentToReassign.calledWith({})).to.be.true;
- expect(mock.getSecurityStatus.calledOnce).to.be.true;
- expect(mock.setCurrentStep.calledWith('1')).to.be.true;
- expect(App.router.transitionTo.calledWith('reassign')).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: Em.A([])};
- controller.refreshConfigs(event);
- expect(App.showConfirmationPopup.called).to.be.false;
- });
- it('Some components present', function () {
- var event = {context: Em.A([Em.Object.create()])};
- var popup = controller.refreshConfigs(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(batchUtils.restartHostComponents.calledWith(event.context)).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('#downloadClientConfigsCall', function () {
- beforeEach(function () {
- sinon.stub(controller, 'downloadClientConfigsCall', Em.K);
- });
- afterEach(function () {
- controller.downloadClientConfigsCall.restore();
- });
- it('should launch controller.downloadClientConfigsCall method', function () {
- controller.downloadClientConfigs({
- context: Em.Object.create({
- componentName: 'name',
- hostName: 'host1',
- displayName: 'dName'
- })
- });
- expect(controller.downloadClientConfigsCall.calledWith({
- componentName: 'name',
- hostName: 'host1',
- displayName: 'dName'
- })).to.be.true;
- });
- });
- describe('#executeCustomCommands', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- });
- it('confirm popup should be displayed', function () {
- var popup = controller.executeCustomCommand({context: Em.Object.create()});
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- var args = testHelpers.findAjaxRequest('name', 'service.item.executeCustomCommand');
- expect(args).exists;
- });
- });
- describe('#_doDeleteHostComponent()', function () {
- it('single component', function () {
- controller.set('content.hostName', 'host1');
- var component = Em.Object.create({componentName: 'COMP'});
- controller._doDeleteHostComponent(component);
- var args = testHelpers.findAjaxRequest('name', 'common.delete.host_component');
- expect(args[0]).exists;
- expect(args[0].data).to.be.eql({
- componentName: 'COMP',
- hostName: 'host1'
- });
- });
- it('all components', function () {
- controller.set('content.hostName', 'host1');
- controller._doDeleteHostComponent(null);
- var args = testHelpers.findAjaxRequest('name', 'common.delete.host');
- expect(args[0]).exists;
- expect(args[0].data).to.be.eql({
- componentName: '',
- hostName: 'host1'
- });
- });
- });
- describe('#_doDeleteHostComponentSuccessCallback()', function () {
- beforeEach(function () {
- sinon.stub(controller, 'removeHostComponentModel', Em.K);
- sinon.stub(controller, 'isServiceMetricsLoaded', function (callback) {
- callback();
- });
- sinon.stub(controller, 'loadConfigs', Em.K);
- });
- afterEach(function () {
- controller.removeHostComponentModel.restore();
- controller.isServiceMetricsLoaded.restore();
- controller.loadConfigs.restore();
- });
- it('ZOOKEEPER_SERVER component', function () {
- var data = {
- componentName: 'ZOOKEEPER_SERVER'
- };
- controller._doDeleteHostComponentSuccessCallback({}, {}, data);
- expect(controller.get('_deletedHostComponentResult')).to.be.null;
- expect(controller.get('fromDeleteZkServer')).to.be.true;
- expect(controller.loadConfigs.calledOnce).to.be.true;
- });
- it('Not ZOOKEEPER_SERVER component', function () {
- var data = {
- componentName: 'COMP'
- };
- controller.set('fromDeleteZkServer', false);
- controller._doDeleteHostComponentSuccessCallback({}, {}, data);
- expect(controller.get('_deletedHostComponentResult')).to.be.null;
- expect(controller.get('fromDeleteZkServer')).to.be.false;
- });
- it('should call `removeHostComponentModel` with correct params', function () {
- var data = {
- componentName: 'COMPONENT',
- hostName: 'h1'
- };
- controller._doDeleteHostComponentSuccessCallback({}, {}, data);
- expect(controller.removeHostComponentModel.calledWith('COMPONENT', 'h1')).to.be.true;
- });
- it('HIVE_METASTORE component', function () {
- var data = {
- componentName: 'HIVE_METASTORE'
- };
- controller._doDeleteHostComponentSuccessCallback({}, {}, data);
- expect(controller.get('_deletedHostComponentResult')).to.be.null;
- expect(controller.get('deleteHiveMetaStore')).to.be.true;
- expect(controller.loadConfigs.calledWith('loadHiveConfigs')).to.be.true;
- });
- it('NIMBUS component', function () {
- var data = {
- componentName: 'NIMBUS'
- };
- controller._doDeleteHostComponentSuccessCallback({}, {}, data);
- expect(controller.get('_deletedHostComponentResult')).to.be.null;
- expect(controller.get('deleteNimbusHost')).to.be.true;
- expect(controller.loadConfigs.calledWith('loadStormConfigs')).to.be.true;
- });
- it('RANGER_KMS_SERVER component', function () {
- var data = {
- componentName: 'RANGER_KMS_SERVER'
- };
- controller._doDeleteHostComponentSuccessCallback({}, {}, data);
- expect(controller.get('_deletedHostComponentResult')).to.be.null;
- expect(controller.get('deleteRangerKMSServer')).to.be.true;
- expect(controller.loadConfigs.calledWith('loadRangerConfigs')).to.be.true;
- });
- });
- describe('#upgradeComponentSuccessCallback()', function () {
- beforeEach(function () {
- sinon.stub(controller, 'showBackgroundOperationsPopup', Em.K);
- sinon.stub(controller, 'mimicWorkStatusChange', Em.K);
- });
- afterEach(function () {
- controller.mimicWorkStatusChange.restore();
- controller.showBackgroundOperationsPopup.restore();
- });
- it('testMode is false', function () {
- controller.upgradeComponentSuccessCallback({}, {}, {component: "COMP"});
- expect(controller.mimicWorkStatusChange.called).to.be.false;
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- });
- describe('#refreshComponentConfigsSuccessCallback()', function () {
- beforeEach(function () {
- sinon.stub(controller, 'showBackgroundOperationsPopup', Em.K);
- });
- afterEach(function () {
- controller.showBackgroundOperationsPopup.restore();
- });
- it('call showBackgroundOperationsPopup', function () {
- controller.refreshComponentConfigsSuccessCallback();
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- });
- describe('#checkZkConfigs()', function () {
- beforeEach(function () {
- sinon.stub(controller, 'removeObserver');
- sinon.stub(controller, 'loadConfigs');
- sinon.stub(controller, 'isServiceMetricsLoaded', Em.clb);
- this.stub = sinon.stub(App.router, 'get');
- });
- afterEach(function () {
- controller.loadConfigs.restore();
- controller.removeObserver.restore();
- controller.isServiceMetricsLoaded.restore();
- this.stub.restore();
- });
- it('No operations of ZOOKEEPER_SERVER', function () {
- this.stub.withArgs('backgroundOperationsController.services').returns([]);
- controller.checkZkConfigs();
- expect(controller.removeObserver.called).to.be.false;
- expect(controller.loadConfigs.called).to.be.false;
- });
- it('Operation of ZOOKEEPER_SERVER running', function () {
- this.stub.withArgs('backgroundOperationsController.services').returns([Em.Object.create({
- id: 1,
- isRunning: true
- })]);
- controller.set('zkRequestId', 1);
- controller.checkZkConfigs();
- expect(controller.removeObserver.called).to.be.false;
- expect(controller.loadConfigs.called).to.be.false;
- });
- describe('Operation of ZOOKEEPER_SERVER finished', function () {
- beforeEach(function () {
- this.stub.withArgs('backgroundOperationsController.services').returns([Em.Object.create({
- id: 1
- })]);
- this.clock = sinon.useFakeTimers();
- controller.set('zkRequestId', 1);
- controller.checkZkConfigs();
- });
- afterEach(function () {
- this.clock.restore();
- });
- it('loadConfigs is called after `componentsUpdateInterval`', function () {
- expect(controller.removeObserver.calledWith('App.router.backgroundOperationsController.serviceTimestamp', controller, controller.checkZkConfigs)).to.be.true;
- this.clock.tick(App.get('componentsUpdateInterval'));
- expect(controller.loadConfigs.calledOnce).to.be.true;
- });
- });
- });
- describe('#_doDeleteHostComponentErrorCallback()', function () {
- it('call showBackgroundOperationsPopup', function () {
- controller._doDeleteHostComponentErrorCallback({}, 'textStatus', {}, {url: 'url'});
- expect(controller.get('_deletedHostComponentResult')).to.be.eql({xhr: {}, url: 'url', method: 'DELETE'});
- });
- });
- describe('#installComponentSuccessCallback()', function () {
- beforeEach(function () {
- sinon.stub(controller, 'showBackgroundOperationsPopup', Em.K);
- sinon.stub(controller, 'mimicWorkStatusChange', Em.K);
- });
- afterEach(function () {
- controller.mimicWorkStatusChange.restore();
- controller.showBackgroundOperationsPopup.restore();
- });
- it('testMode is false', function () {
- controller.installComponentSuccessCallback({}, {}, {component: "COMP"});
- expect(controller.mimicWorkStatusChange.called).to.be.false;
- expect(controller.showBackgroundOperationsPopup.calledOnce).to.be.true;
- });
- });
- describe('#showHbaseActiveWarning()', function () {
- beforeEach(function () {
- sinon.spy(App.ModalPopup, "show");
- });
- afterEach(function () {
- App.ModalPopup.show.restore();
- });
- it('popup should be displayed', function () {
- controller.showHbaseActiveWarning(Em.Object.create({service: {}}));
- expect(App.ModalPopup.show.calledOnce).to.be.true;
- });
- });
- describe('#updateHost()', function () {
- beforeEach(function () {
- sinon.stub(batchUtils, "infoPassiveState", Em.K);
- });
- afterEach(function () {
- batchUtils.infoPassiveState.restore();
- });
- it('popup should be displayed', function () {
- controller.updateHost({}, {}, {passive_state: 'state'});
- expect(controller.get('content.passiveState')).to.equal('state');
- expect(batchUtils.infoPassiveState.calledWith('state')).to.be.true;
- });
- });
- describe('#updateComponentPassiveState()', function () {
- it('popup should be displayed', function () {
- controller.set('content.hostName', 'host1');
- var component = Em.Object.create({
- componentName: 'COMP1'
- });
- controller.updateComponentPassiveState(component, 'state', 'message');
- var args = testHelpers.findAjaxRequest('name', 'common.host.host_component.passive');
- expect(args[0]).exists;
- expect(args[0].data).to.be.eql({
- "hostName": "host1",
- "componentName": "COMP1",
- "component": component,
- "passive_state": "state",
- "context": "message"
- });
- });
- });
- describe('#updateHostComponent()', function () {
- var params = {
- component: Em.Object.create(),
- passive_state: 'state'
- };
- beforeEach(function () {
- sinon.stub(batchUtils, "infoPassiveState", Em.K);
- });
- afterEach(function () {
- batchUtils.infoPassiveState.restore();
- });
- it('popup should be displayed', function () {
- controller.updateHostComponent({}, {}, params);
- expect(params.component.get('passiveState')).to.equal('state');
- expect(batchUtils.infoPassiveState.calledWith('state')).to.be.true;
- });
- });
- describe('#toggleMaintenanceMode()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, 'updateComponentPassiveState');
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.updateComponentPassiveState.restore();
- });
- it('passive state is ON', function () {
- var event = {
- context: Em.Object.create({
- passiveState: 'ON'
- })
- };
- var popup = controller.toggleMaintenanceMode(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.updateComponentPassiveState.calledWith(Em.Object.create({
- passiveState: 'ON'
- }), 'OFF')).to.be.true;
- });
- it('passive state is OFF', function () {
- var event = {
- context: Em.Object.create({
- passiveState: 'OFF'
- })
- };
- var popup = controller.toggleMaintenanceMode(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.updateComponentPassiveState.calledWith(Em.Object.create({
- passiveState: 'OFF'
- }), 'ON')).to.be.true;
- });
- it('isImpliedState is true', function () {
- var event = {
- context: Em.Object.create({
- isImpliedState: true
- })
- };
- var result = controller.toggleMaintenanceMode(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.false;
- expect(result).to.be.null;
- });
- });
- describe('#installClients()', function () {
- var cases = [
- {
- context: [
- Em.Object.create({
- componentName: 'c0',
- workStatus: 'INSTALLED'
- }),
- Em.Object.create({
- componentName: 'c1',
- workStatus: 'INIT'
- }),
- Em.Object.create({
- componentName: 'c2',
- workStatus: 'INSTALL_FAILED'
- })
- ],
- dependencies: {
- c0: [],
- c1: [],
- c2: []
- },
- getSecurityTypeCalled: null, //should have same value as getKDCSessionStateCalled, always
- getKDCSessionStateCalled: true,
- sendComponentCommandCalled: true,
- showAlertPopupCalled: false,
- title: 'No clients to add, some clients to install'
- },
- {
- context: [
- Em.Object.create({
- componentName: 'c3',
- displayName: 'c3'
- })
- ],
- dependencies: {
- c3: []
- },
- getSecurityTypeCalled: null, //should have same value as getKDCSessionStateCalled, always
- getKDCSessionStateCalled: true,
- sendComponentCommandCalled: false,
- showAlertPopupCalled: false,
- title: 'No clients to install, some clients to add'
- },
- {
- context: [
- Em.Object.create({
- componentName: 'c4',
- displayName: 'c4'
- })
- ],
- dependencies: {
- c4: ['c5']
- },
- getSecurityTypeCalled: null, //should have same value as getKDCSessionStateCalled, always
- getKDCSessionStateCalled: false,
- sendComponentCommandCalled: false,
- showAlertPopupCalled: true,
- title: 'Clients to add have unresolved dependencies'
- },
- {
- context: [
- Em.Object.create({
- componentName: 'c5',
- displayName: 'c5'
- }),
- Em.Object.create({
- componentName: 'c6',
- displayName: 'c6'
- })
- ],
- dependencies: {
- c5: ['c6'],
- c6: ['c5']
- },
- getSecurityTypeCalled: null, //should have same value as getKDCSessionStateCalled, always
- getKDCSessionStateCalled: true,
- sendComponentCommandCalled: false,
- showAlertPopupCalled: false,
- title: 'Clients to add have mutual dependencies'
- }
- ];
- beforeEach(function () {
- sinon.stub(controller, 'sendComponentCommand', Em.K);
- sinon.stub(controller, 'showAddComponentPopup', Em.K);
- sinon.stub(App.get('router.mainAdminKerberosController'), 'getKDCSessionState', function (arg) {
- return arg();
- });
- sinon.stub(App.get('router.mainAdminKerberosController'), 'getSecurityType', function (arg) {
- return arg();
- });
- sinon.stub(App, 'showAlertPopup', Em.K);
- sinon.stub(App.StackServiceComponent, 'find', function (componentName) {
- return Em.Object.create({
- displayName: componentName
- });
- });
- controller.set('content.hostComponents', []);
- });
- afterEach(function () {
- controller.sendComponentCommand.restore();
- controller.showAddComponentPopup.restore();
- App.get('router.mainAdminKerberosController').getKDCSessionState.restore();
- App.get('router.mainAdminKerberosController').getSecurityType.restore();
- App.showAlertPopup.restore();
- App.StackServiceComponent.find.restore();
- controller.checkComponentDependencies.restore();
- });
- cases.forEach(function (item) {
- describe(item.title, function () {
- beforeEach(function () {
- sinon.stub(controller, 'checkComponentDependencies', function (componentName) {
- return item.dependencies[componentName];
- });
- controller.installClients({
- context: item.context
- });
- });
- it('getSecurityType is ' + (item.getKDCSessionStateCalled ? '' : 'not') + ' called', function() {
- expect(App.get('router.mainAdminKerberosController').getSecurityType.calledOnce).to.equal(item.getKDCSessionStateCalled);
- });
- it('getKDCSessionState is ' + (item.getKDCSessionStateCalled ? '' : 'not') + ' called', function() {
- expect(App.get('router.mainAdminKerberosController').getKDCSessionState.calledOnce).to.equal(item.getKDCSessionStateCalled);
- });
- it('sendComponentCommand is ' + (item.sendComponentCommandCalled ? '' : 'not') + ' called', function() {
- expect(controller.sendComponentCommand.calledOnce).to.equal(item.sendComponentCommandCalled);
- });
- it('showAlertPopup is ' + (item.showAlertPopupCalled ? '' : 'not') + ' called', function() {
- expect(App.showAlertPopup.calledOnce).to.equal(item.showAlertPopupCalled);
- });
- });
- });
- });
- describe("#executeCustomCommandSuccessCallback()", function () {
- var data;
- var mock;
- beforeEach(function () {
- data = {
- Requests: {
- id: 1
- }
- };
- mock = {
- showPopup: Em.K
- };
- sinon.stub(App.router, 'get').returns(mock);
- sinon.spy(mock, 'showPopup');
- controller.executeCustomCommandSuccessCallback(data, {}, {});
- });
- afterEach(function () {
- App.router.get.restore();
- mock.showPopup.restore();
- });
- it('App.router.get is called with `backgroundOperationsController`', function () {
- expect(App.router.get.calledWith('backgroundOperationsController')).to.be.true;
- });
- it('showPopup is called once', function () {
- expect(mock.showPopup.calledOnce).to.be.true;
- });
- });
- describe("#executeCustomCommandErrorCallback()", function () {
- beforeEach(function () {
- sinon.stub($, 'parseJSON');
- sinon.spy(App, 'showAlertPopup');
- });
- afterEach(function () {
- App.showAlertPopup.restore();
- $.parseJSON.restore();
- });
- it("data empty", function () {
- controller.executeCustomCommandErrorCallback(null);
- expect(App.showAlertPopup.calledWith(Em.I18n.t('services.service.actions.run.executeCustomCommand.error'), Em.I18n.t('services.service.actions.run.executeCustomCommand.error'))).to.be.true;
- expect($.parseJSON.called).to.be.false;
- });
- it("responseText empty", function () {
- var data = {
- responseText: null
- };
- controller.executeCustomCommandErrorCallback(data);
- expect(App.showAlertPopup.calledWith(Em.I18n.t('services.service.actions.run.executeCustomCommand.error'), Em.I18n.t('services.service.actions.run.executeCustomCommand.error'))).to.be.true;
- expect($.parseJSON.called).to.be.false;
- });
- it("data empty (2)", function () {
- var data = {
- responseText: "test"
- };
- controller.executeCustomCommandErrorCallback(data);
- expect(App.showAlertPopup.calledWith(Em.I18n.t('services.service.actions.run.executeCustomCommand.error'), Em.I18n.t('services.service.actions.run.executeCustomCommand.error'))).to.be.true;
- expect($.parseJSON.calledWith('test')).to.be.true;
- });
- });
- describe("#doDeleteHost()", function () {
- beforeEach(function () {
- controller.set('fromDeleteHost', false);
- controller.set('content.hostName', 'host1');
- sinon.stub(controller, '_doDeleteHostComponent', function (comp, callback) {
- callback();
- });
- });
- afterEach(function () {
- controller._doDeleteHostComponent.restore();
- });
- describe("Host has no components", function () {
- beforeEach(function () {
- controller.set('content.hostComponents', Em.A([]));
- controller.doDeleteHost(Em.K);
- this.args = testHelpers.findAjaxRequest('name', 'common.delete.host');
- });
- it('fromDeleteHost is true', function () {
- expect(controller.get('fromDeleteHost')).to.be.true;
- });
- it('1st request is to delete host', function () {
- expect(this.args[0]).exists;
- });
- it('1st request is done with valid hostName', function () {
- expect(this.args[0].data.hostName).to.be.equal('host1');
- });
- });
- describe("Host has components", function () {
- beforeEach(function () {
- controller.set('content.hostComponents', Em.A([Em.Object.create({
- componentName: 'COMP1'
- })]));
- controller.doDeleteHost(Em.K);
- });
- it('_doDeleteHostComponent is called with correct arguments', function () {
- expect(controller._doDeleteHostComponent.calledWith(Em.Object.create({
- componentName: 'COMP1'
- }))).to.be.true;
- });
- it('fromDeleteHost is true', function () {
- expect(controller.get('fromDeleteHost')).to.be.true;
- });
- it('1st request is to delete host', function () {
- var args = testHelpers.findAjaxRequest('name', 'common.delete.host');
- expect(args[0]).exists;
- });
- it('1st request is done with valid hostName', function () {
- var args = testHelpers.findAjaxRequest('name', 'common.delete.host');
- expect(args[0].data.hostName).to.be.equal('host1');
- });
- });
- });
- describe("#deleteHostSuccessCallback", function () {
- var mock;
- beforeEach(function () {
- mock = {
- updateHost: function (callback) {
- callback();
- },
- getAllHostNames: Em.K
- };
- sinon.stub(App.router, 'get').withArgs('updateController').returns(mock).withArgs('clusterController').returns(mock);
- sinon.spy(mock, 'updateHost');
- sinon.spy(mock, 'getAllHostNames');
- sinon.stub(controller, 'loadConfigs', Em.K);
- sinon.stub(App.router, 'transitionTo', Em.K);
- sinon.stub(controller, 'isServiceMetricsLoaded', Em.clb);
- controller.deleteHostSuccessCallback();
- });
- afterEach(function () {
- App.router.get.restore();
- mock.updateHost.restore();
- mock.getAllHostNames.restore();
- controller.loadConfigs.restore();
- controller.isServiceMetricsLoaded.restore();
- App.router.transitionTo.restore();
- });
- it('updateController is used', function () {
- expect(App.router.get.calledWith('updateController')).to.be.true;
- });
- it('updateHost is called once', function () {
- expect(mock.updateHost.calledOnce).to.be.true;
- });
- it('loadConfigs is not called', function () {
- expect(controller.loadConfigs.called).to.be.false;
- });
- it('user is moved to the hosts', function () {
- expect(App.router.transitionTo.calledWith('hosts.index')).to.be.true;
- });
- it('clusterController is used', function () {
- expect(App.router.get.calledWith('clusterController')).to.be.true;
- });
- it('getAllHostNames is called once', function () {
- expect(mock.getAllHostNames.calledOnce).to.be.true;
- });
- });
- describe("#deleteHostErrorCallback", function () {
- beforeEach(function () {
- sinon.stub(controller, 'loadConfigs', Em.K);
- sinon.stub(App.ajax, 'defaultErrorHandler', Em.K);
- sinon.stub(controller, 'isServiceMetricsLoaded', Em.clb);
- controller.deleteHostErrorCallback({
- status: 'status',
- statusText: "statusText"
- }, 'textStatus', 'errorThrown', {url: 'url'});
- });
- afterEach(function () {
- App.ajax.defaultErrorHandler.restore();
- controller.loadConfigs.restore();
- controller.isServiceMetricsLoaded.restore();
- });
- it('loadConfigs is called once', function () {
- expect(controller.loadConfigs.calledOnce).to.be.true;
- });
- it('defaultErrorHandler is called once', function () {
- expect(App.ajax.defaultErrorHandler.calledOnce).to.be.true;
- });
- });
- describe('#installVersionConfirmation()', function () {
- beforeEach(function () {
- sinon.spy(App, "showConfirmationPopup");
- sinon.stub(controller, 'installVersion', Em.K);
- });
- afterEach(function () {
- App.showConfirmationPopup.restore();
- controller.installVersion.restore();
- });
- it('confirm popup should be displayed', function () {
- var event = {context: Em.Object.create({displayName: 'displayName'})};
- var popup = controller.installVersionConfirmation(event);
- expect(App.showConfirmationPopup.calledOnce).to.be.true;
- popup.onPrimary();
- expect(controller.installVersion.calledWith(event)).to.be.true;
- });
- });
- describe("#installVersion()", function () {
- it("call App.ajax.send", function () {
- controller.set('content.hostName', 'host1');
- controller.installVersion({context: {}});
- var args = testHelpers.findAjaxRequest('name', 'host.stack_versions.install');
- expect(args[0]).exists;
- expect(args[0].sender).to.be.eql(controller);
- expect(args[0].data).to.be.eql({
- hostName: 'host1',
- version: {}
- });
- });
- });
- describe("#installVersionSuccessCallback()", function () {
- var version = Em.Object.create({
- id: 1,
- status: 'INIT'
- });
- beforeEach(function () {
- this.mock = sinon.stub(App.HostStackVersion, 'find');
- this.mock.returns(version);
- sinon.stub(App.db, 'set', Em.K);
- sinon.stub(App.clusterStatus, 'setClusterStatus', Em.K);
- controller.installVersionSuccessCallback({Requests: {id: 1}}, {}, {version: version});
- });
- afterEach(function () {
- this.mock.restore();
- App.db.set.restore();
- App.clusterStatus.setClusterStatus.restore();
- });
- it("status is INSTALLING", function () {
- expect(version.get('status')).to.equal('INSTALLING');
- });
- it('valid data is saved to the localDB', function () {
- expect(App.db.set.calledWith('repoVersionInstall', 'id', [1])).to.be.true;
- });
- it('clusterStatus is updated', function () {
- expect(App.clusterStatus.setClusterStatus.calledOnce).to.be.true;
- });
- });
- describe('#getHiveHosts()', function () {
- var cases = [
- {
- 'input': {
- 'hiveMetastoreHost': '',
- 'fromDeleteHost': false,
- 'deleteHiveMetaStore': false,
- 'deleteWebHCatServer': false
- },
- 'hiveHosts': ['h1', 'h2', 'h4'],
- 'title': 'adding HiveServer2'
- },
- {
- 'input': {
- 'hiveMetastoreHost': 'h0',
- 'fromDeleteHost': false,
- 'deleteHiveMetaStore': false,
- 'deleteWebHCatServer': false
- },
- 'hiveHosts': ['h0', 'h1', 'h2', 'h4'],
- 'title': 'adding Hive Metastore'
- },
- {
- 'input': {
- 'webhcatServerHost': 'h0',
- 'fromDeleteHost': false,
- 'deleteHiveMetaStore': false,
- 'deleteWebHCatServer': false
- },
- 'hiveHosts': ['h0', 'h1', 'h2', 'h4'],
- 'title': 'adding WebHCat Server'
- },
- {
- 'input': {
- 'hiveMetastoreHost': '',
- 'content.hostName': 'h1',
- 'fromDeleteHost': false,
- 'deleteHiveMetaStore': true,
- 'deleteWebHCatServer': false
- },
- 'hiveHosts': ['h2', 'h4'],
- 'title': 'deleting Hive component'
- },
- {
- 'input': {
- 'hiveMetastoreHost': '',
- 'content.hostName': 'h4',
- 'fromDeleteHost': false,
- 'deleteHiveMetaStore': false,
- 'deleteWebHCatServer': true
- },
- 'hiveHosts': ['h1', 'h2'],
- 'title': 'deleting WebHCat Server'
- },
- {
- 'input': {
- 'hiveMetastoreHost': '',
- 'content.hostName': 'h2',
- 'fromDeleteHost': true,
- 'deleteHiveMetaStore': false,
- 'deleteWebHCatServer': false
- },
- 'hiveHosts': ['h1', 'h4'],
- 'title': 'deleting host with Hive component'
- },
- {
- 'input': {
- 'webhcatServerHost': '',
- 'content.hostName': 'h2',
- 'fromDeleteHost': true,
- 'deleteHiveMetaStore': false,
- 'deleteWebHCatServer': false
- },
- 'hiveHosts': ['h1', 'h4'],
- 'title': 'deleting host with WebHCat Server'
- }
- ];
- before(function () {
- sinon.stub(App.HostComponent, 'find').returns([
- {
- componentName: 'HIVE_METASTORE',
- hostName: 'h2'
- },
- {
- componentName: 'HIVE_METASTORE',
- hostName: 'h1'
- },
- {
- componentName: 'HIVE_SERVER',
- hostName: 'h3'
- },
- {
- componentName: 'WEBHCAT_SERVER',
- hostName: 'h4'
- }
- ]);
- });
- after(function () {
- App.HostComponent.find.restore();
- });
- cases.forEach(function (item) {
- describe(item.title, function () {
- beforeEach(function () {
- Em.keys(item.input).forEach(function (key) {
- controller.set(key, item.input[key]);
- });
- this.hostsMap = controller.getHiveHosts().toArray();
- this.expectedHosts = this.hostsMap.filter(function(hostInfo) {
- return ['WEBHCAT_SERVER', 'HIVE_METASTORE'].contains(hostInfo.component) && hostInfo.isInstalled === true;
- }).mapProperty('hostName').uniq();
- });
- it(JSON.stringify(item.hiveHosts) + ' are in the list', function () {
- expect(this.expectedHosts).to.include.same.members(item.hiveHosts);
- });
- it('hiveMetastoreHost is empty', function () {
- expect(controller.get('hiveMetastoreHost')).to.be.empty;
- });
- it('webhcatServerHost is empty', function () {
- expect(controller.get('webhcatServerHost')).to.be.empty;
- });
- it('fromDeleteHost is false', function () {
- expect(controller.get('fromDeleteHost')).to.be.false;
- });
- it('deleteHiveMetaStore is false', function () {
- expect(controller.get('deleteHiveMetaStore')).to.be.false;
- });
- });
- });
- });
- describe('#onLoadRangerConfigs()', function () {
- var cases = [
- {
- 'kmsHosts': ['host1'],
- 'kmsPort': 'port',
- 'title': 'single host',
- 'hostToInstall': undefined,
- 'result': [
- {
- properties: {
- 'core-site': {'hadoop.security.key.provider.path': 'kms://http@host1:port/kms'},
- 'hdfs-site': {'dfs.encryption.key.provider.uri': 'kms://http@host1:port/kms'}
- },
- properties_attributes: {
- 'core-site': undefined,
- 'hdfs-site': undefined
- }
- }
- ]
- },
- {
- 'kmsHosts': ['host1', 'host2'],
- 'kmsPort': 'port',
- 'title': 'two hosts',
- 'hostToInstall': 'host2',
- 'result': [
- {
- properties: {
- 'core-site': {'hadoop.security.key.provider.path': 'kms://http@host1;host2:port/kms'},
- 'hdfs-site': {'dfs.encryption.key.provider.uri': 'kms://http@host1;host2:port/kms'}
- },
- properties_attributes: {
- 'core-site': undefined,
- 'hdfs-site': undefined
- }
- }
- ]
- }
- ];
- beforeEach(function () {
- sinon.spy(controller, 'saveConfigsBatch')
- });
- afterEach(function () {
- controller.saveConfigsBatch.restore();
- });
- cases.forEach(function (item) {
- describe(item.title, function () {
- var data = {
- items: [
- {
- type: 'kms-env',
- properties: {'kms_port': item.kmsPort}
- },
- {
- type: 'core-site',
- properties: {}
- },
- {
- type: 'hdfs-site',
- properties: {}
- }
- ]
- };
- beforeEach(function () {
- controller.set('rangerKMSServerHost', item.hostToInstall);
- sinon.stub(controller, 'getRangerKMSServerHosts').returns(item.kmsHosts);
- controller.onLoadRangerConfigs(data);
- });
- it('saveConfigsBatch is called with valid arguments', function () {
- expect(controller.saveConfigsBatch.calledWith(item.result, 'RANGER_KMS_SERVER', item.hostToInstall)).to.be.true;
- });
- });
- });
- });
- describe("#removeHostComponentModel()", function () {
- beforeEach(function () {
- App.cache.services = [
- {
- ServiceInfo: {
- service_name: 'S1'
- },
- host_components: ['C1_host1']
- }
- ];
- sinon.stub(App.HostComponent, 'find').returns([
- Em.Object.create({
- id: 'C1_host1',
- componentName: 'C1',
- hostName: 'host1',
- service: Em.Object.create({
- serviceName: 'S1'
- })
- })
- ]);
- sinon.stub(App.serviceMapper, 'deleteRecord', Em.K);
- controller.removeHostComponentModel('C1', 'host1');
- });
- afterEach(function () {
- App.HostComponent.find.restore();
- App.serviceMapper.deleteRecord.restore();
- });
- it("App.cache is updated", function () {
- expect(App.cache.services[0].host_components).to.be.empty;
- });
- it('Record is deleted', function () {
- expect(App.serviceMapper.deleteRecord.calledOnce).to.be.true;
- });
- });
- describe("#updateStormConfigs()", function () {
- beforeEach(function () {
- this.serviceMock = sinon.stub(App.Service, 'find');
- sinon.stub(controller, 'loadConfigs');
- this.mock = sinon.stub(App, 'get')
- });
- afterEach(function () {
- this.serviceMock.restore();
- this.mock.restore();
- controller.loadConfigs.restore();
- });
- it("storm not installed, hadoop stack is 2.2", function () {
- this.serviceMock.returns(Em.Object.create({
- isLoaded: false
- }));
- this.mock.returns(false);
- controller.updateStormConfigs();
- expect(controller.loadConfigs.called).to.be.false;
- });
- it("storm installed, hadoop stack is 2.2", function () {
- this.serviceMock.returns(Em.Object.create({
- isLoaded: true
- }));
- this.mock.returns(false);
- controller.updateStormConfigs();
- expect(controller.loadConfigs.called).to.be.false;
- });
- it("storm installed, hadoop stack is 2.3", function () {
- this.serviceMock.returns(Em.Object.create({
- isLoaded: true
- }));
- this.mock.returns(true);
- controller.updateStormConfigs();
- expect(controller.loadConfigs.calledWith('loadStormConfigs')).to.be.true;
- });
- });
- describe("#parseNnCheckPointTime", function () {
- var tests = [
- {
- m: "NameNode on this host has JMX data, the last checkpoint time is less than 12 hours ago",
- data:
- {
- "href" : "",
- "HostRoles" : {
- "cluster_name" : "c123",
- "component_name" : "NAMENODE",
- "host_name" : "c6401.ambari.apache.org"
- },
- "metrics" : {
- "dfs" : {
- "FSNamesystem" : {
- "HAState" : "active",
- "LastCheckpointTime" : 1435775648000
- }
- }
- }
- },
- result: false
- },
- {
- m: "NameNode on this host has JMX data, the last checkpoint time is > 12 hours ago",
- data:
- {
- "href" : "",
- "HostRoles" : {
- "cluster_name" : "c123",
- "component_name" : "NAMENODE",
- "host_name" : "c6401.ambari.apache.org"
- },
- "metrics" : {
- "dfs" : {
- "FSNamesystem" : {
- "HAState" : "active",
- "LastCheckpointTime" : 1435617248000
- }
- }
- }
- },
- result: "c6401.ambari.apache.org"
- },
- {
- m: "NameNode(standby) on this host has JMX data",
- data:
- {
- "href" : "",
- "HostRoles" : {
- "cluster_name" : "c123",
- "component_name" : "NAMENODE",
- "host_name" : "c6401.ambari.apache.org"
- },
- "metrics" : {
- "dfs" : {
- "FSNamesystem" : {
- "HAState" : "standby",
- "LastCheckpointTime" : 1435617248000
- }
- }
- }
- },
- result: false
- },
- {
- m: "NameNode on this host has no JMX data",
- data:
- {
- "href" : "",
- "HostRoles" : {
- "cluster_name" : "c123",
- "component_name" : "NAMENODE",
- "host_name" : "c6401.ambari.apache.org"
- },
- "metrics" : {
- "dfs" : {
- "FSNamesystem" : {
- "HAState" : "active"
- }
- }
- }
- },
- result: null
- },
- {
- m: "NameNode on this host has no JMX data",
- data:
- {
- "href" : "",
- "HostRoles" : {
- "cluster_name" : "c123",
- "component_name" : "NAMENODE",
- "host_name" : "c6401.ambari.apache.org"
- },
- "metrics" : {
- }
- },
- result: null
- }
- ];
- beforeEach(function () {
- sinon.stub(App, 'dateTime').returns(1435790048000);
- });
- afterEach(function () {
- App.dateTime.restore();
- });
- tests.forEach(function (test) {
- it(test.m, function () {
- var mainHostDetailsController = App.MainHostDetailsController.create({isNNCheckpointTooOld: null});
- mainHostDetailsController.parseNnCheckPointTime(test.data);
- expect(mainHostDetailsController.get('isNNCheckpointTooOld')).to.equal(test.result);
- });
- });
- });
- describe("#checkComponentDependencies()", function() {
- beforeEach(function () {
- this.mock = sinon.stub(App.StackServiceComponent, 'find');
- sinon.stub(App.HostComponent, 'find').returns([{
- hostName: 'host1',
- componentName: 'C1'
- }]);
- });
- afterEach(function () {
- this.mock.restore();
- App.HostComponent.find.restore();
- });
- it("no dependencies", function () {
- var opt = {scope: '*'};
- this.mock.returns(Em.Object.create({
- dependencies: []
- }));
- expect(controller.checkComponentDependencies('C1', opt)).to.be.empty;
- });
- it("dependecies already installed", function () {
- var opt = {scope: '*', installedComponents: ['C2']};
- this.mock.returns(Em.Object.create({
- dependencies: [{componentName: 'C2'}]
- }));
- expect(controller.checkComponentDependencies('C1', opt)).to.be.empty;
- });
- it("dependecies should be added", function () {
- var opt = {scope: '*', installedComponents: ['C2']};
- this.mock.returns(Em.Object.create({
- dependencies: [{componentName: 'C3'}]
- }));
- expect(controller.checkComponentDependencies('C1', opt)).to.eql(['C3']);
- });
- it("scope is host", function () {
- var opt = {scope: 'host', hostName: 'host1'};
- this.mock.returns(Em.Object.create({
- dependencies: [{componentName: 'C3', scope: 'host'}]
- }));
- expect(controller.checkComponentDependencies('C1', opt)).to.eql(['C3']);
- });
- });
- describe('#onLoadHiveConfigs', function() {
- beforeEach(function() {
- sinon.stub(controller, 'saveConfigsBatch', Em.K);
- });
- afterEach(function() {
- controller.saveConfigsBatch.restore();
- });
- var makeHostComponentModel = function(componentName, hostNames) {
- if (Em.isArray(componentName)) {
- return componentName.map(function(cName, index) {
- return makeHostComponentModel(cName, hostNames[index]);
- }).reduce(function(p,c) { return p.concat(c); }, []);
- }
- return hostNames.map(function(hostName) {
- return {
- componentName: componentName,
- hostName: hostName
- };
- });
- };
- var makeFileNameProps = function(fileName, configs) {
- var ret = {
- type: fileName,
- properties: {}
- };
- var propRet = {};
- configs.forEach(function(property) {
- propRet[property[0]] = property[1];
- });
- ret.properties = propRet;
- return ret;
- };
- var makeEmptyPropAttrs = function() {
- var fileNames = Array.prototype.slice.call(arguments);
- var ret = {};
- fileNames.forEach(function(fileName) {
- ret[fileName] = {};
- });
- return ret;
- };
- var inlineComponentHostInfo = function(hostComponentModel) {
- return hostComponentModel.mapProperty('componentName').uniq()
- .map(function(componentName) {
- return componentName + ":" + hostComponentModel.filterProperty('componentName', componentName).mapProperty('hostName').join();
- }).join(',');
- };
- var tests = [
- {
- hostComponentModel: makeHostComponentModel(['HIVE_SERVER', 'HIVE_METASTORE'], [['host1', 'host2'], ['host1']]),
- configs: {
- items: [
- makeFileNameProps('hive-site', [
- ['hive.metastore.uris', 'thrift://host1:9090']
- ]),
- makeFileNameProps('hive-env', [
- ['hive_user', 'hive_user_val']
- ]),
- makeFileNameProps('webhcat-site', [
- ['templeton.hive.properties', 'hive.metastore.local=false,hive.metastore.uris=thrift://host1:9083,hive.metastore.sasl.enabled=false']
- ]),
- makeFileNameProps('core-site', [
- ['hadoop.proxyuser.hive_user_val.hosts', 'host1']
- ])
- ]
- },
- m: 'Components: {0}, appropriate configs should be changed, thrift port 9090, Controller stubs: {1}',
- e: {
- configs: [
- {
- "properties": {
- "hive-site": makeFileNameProps('hive-site', [
- ['hive.metastore.uris', 'thrift://host1:9090']
- ]).properties,
- "webhcat-site": makeFileNameProps('webhcat-site', [
- ['templeton.hive.properties', 'hive.metastore.local=false,hive.metastore.uris=thrift://host1:9090,hive.metastore.sasl.enabled=false']
- ]).properties,
- "hive-env": makeFileNameProps('hive-env', [
- ['hive_user', 'hive_user_val']
- ]).properties
- },
- "properties_attributes": makeEmptyPropAttrs("hive-site", "webhcat-site", "hive-env")
- },
- {
- "properties": {
- "core-site": makeFileNameProps('core-site', [
- ['hadoop.proxyuser.hive_user_val.hosts', 'host1,host2']
- ]).properties
- },
- "properties_attributes": makeEmptyPropAttrs("core-site")
- },
- ]
- }
- },
- {
- hostComponentModel: makeHostComponentModel(['HIVE_SERVER', 'HIVE_METASTORE', 'WEBHCAT_SERVER'], [['host1', 'host2'], ['host1'], ['host2']]),
- ctrlStubs: {
- webhcatServerHost: 'host3'
- },
- configs: {
- items: [
- makeFileNameProps('hive-site', [
- ['hive.metastore.uris', 'thrift://host1']
- ]),
- makeFileNameProps('hive-env', [
- ['hive_user', 'hive_user_val']
- ]),
- makeFileNameProps('webhcat-site', [
- ['templeton.hive.properties', 'hive.metastore.local=false,hive.metastore.uris=thrift://host1:9083,hive.metastore.sasl.enabled=false']
- ]),
- makeFileNameProps('core-site', [
- ['hadoop.proxyuser.hive_user_val.hosts', 'host1']
- ])
- ]
- },
- m: 'Components: {0}, appropriate configs should be changed, thrift port should be default 9083, Controller Stubs: {1}',
- e: {
- configs: [
- {
- "properties": {
- "hive-site": makeFileNameProps('hive-site', [
- ['hive.metastore.uris', 'thrift://host1:9083,thrift://host2:9083,thrift://host3:9083']
- ]).properties,
- "webhcat-site": makeFileNameProps('webhcat-site', [
- ['templeton.hive.properties', 'hive.metastore.local=false,hive.metastore.uris=thrift://host1:9083\\,thrift://host2:9083\\,thrift://host3:9083,hive.metastore.sasl.enabled=false']
- ]).properties,
- "hive-env": makeFileNameProps('hive-env', [
- ['hive_user', 'hive_user_val']
- ]).properties
- },
- "properties_attributes": makeEmptyPropAttrs("hive-site", "webhcat-site", "hive-env")
- },
- {
- "properties": {
- "core-site": makeFileNameProps('core-site', [
- ['hadoop.proxyuser.hive_user_val.hosts', 'host1,host2,host3']
- ]).properties
- },
- "properties_attributes": makeEmptyPropAttrs("core-site")
- },
- ]
- }
- },
- {
- hostComponentModel: makeHostComponentModel(['HIVE_SERVER', 'HIVE_METASTORE', 'WEBHCAT_SERVER'], [['host1'], ['host1'], ['host1']]),
- ctrlStubs: {
- webhcatServerHost: 'host3',
- hiveMetastoreHost: 'host2'
- },
- configs: {
- items: [
- makeFileNameProps('hive-site', [
- ['hive.metastore.uris', 'thrift://host1:1111']
- ]),
- makeFileNameProps('hive-env', [
- ['hive_user', 'hive_user_val']
- ]),
- makeFileNameProps('webhcat-site', [
- ['templeton.hive.properties', 'hive.metastore.local=false,hive.metastore.uris=thrift://host1:9083,hive.metastore.sasl.enabled=false']
- ]),
- makeFileNameProps('core-site', [
- ['hadoop.proxyuser.hive_user_val.hosts', 'host1']
- ])
- ]
- },
- m: 'Components: {0}, appropriate configs should be changed, thrift port should be 1111, Controller Stubs: {1}',
- e: {
- configs: [
- {
- "properties": {
- "hive-site": makeFileNameProps('hive-site', [
- ['hive.metastore.uris', 'thrift://host1:1111,thrift://host2:1111,thrift://host3:1111']
- ]).properties,
- "webhcat-site": makeFileNameProps('webhcat-site', [
- ['templeton.hive.properties', 'hive.metastore.local=false,hive.metastore.uris=thrift://host1:1111\\,thrift://host2:1111\\,thrift://host3:1111,hive.metastore.sasl.enabled=false']
- ]).properties,
- "hive-env": makeFileNameProps('hive-env', [
- ['hive_user', 'hive_user_val']
- ]).properties
- },
- "properties_attributes": makeEmptyPropAttrs("hive-site", "webhcat-site", "hive-env")
- },
- {
- "properties": {
- "core-site": makeFileNameProps('core-site', [
- ['hadoop.proxyuser.hive_user_val.hosts', 'host1,host2,host3']
- ]).properties
- },
- "properties_attributes": makeEmptyPropAttrs("core-site")
- },
- ]
- }
- },
- {
- hostComponentModel: makeHostComponentModel(['HIVE_SERVER', 'HIVE_METASTORE', 'WEBHCAT_SERVER'], [['host1', 'host2'], ['host1','host2'], ['host1', 'host3']]),
- ctrlStubs: {
- fromDeleteHost: true,
- 'content.hostName': 'host2',
- webhcatServerHost: '',
- hiveMetastoreHost: ''
- },
- webHCat: true,
- configs: {
- items: [
- makeFileNameProps('hive-site', [
- ['hive.metastore.uris', 'thrift://host1:1111']
- ]),
- makeFileNameProps('hive-env', [
- ['webhcat_user', 'webhcat_user_val']
- ]),
- makeFileNameProps('webhcat-site', [
- ['templeton.hive.properties', 'hive.metastore.local=false,hive.metastore.uris=thrift://host1:9083,hive.metastore.sasl.enabled=false']
- ]),
- makeFileNameProps('core-site', [
- ['hadoop.proxyuser.webhcat_user_val.hosts', 'host1']
- ])
- ]
- },
- m: 'Change WebHCat proxyuser',
- e: {
- configs: [
- {
- "properties": {
- "hive-site": makeFileNameProps('hive-site', [
- ['hive.metastore.uris', 'thrift://host1:1111,thrift://host3:1111']
- ]).properties,
- "webhcat-site": makeFileNameProps('webhcat-site', [
- ['templeton.hive.properties', 'hive.metastore.local=false,hive.metastore.uris=thrift://host1:1111\\,thrift://host3:1111,hive.metastore.sasl.enabled=false']
- ]).properties,
- "hive-env": makeFileNameProps('hive-env', [
- ['webhcat_user', 'webhcat_user_val']
- ]).properties
- },
- "properties_attributes": makeEmptyPropAttrs("hive-site", "webhcat-site", "hive-env")
- },
- {
- "properties": {
- "core-site": makeFileNameProps('core-site', [
- ['hadoop.proxyuser.webhcat_user_val.hosts', 'host1,host3']
- ]).properties
- },
- "properties_attributes": makeEmptyPropAttrs("core-site")
- },
- ]
- }
- },
- {
- hostComponentModel: makeHostComponentModel(['HIVE_SERVER', 'HIVE_METASTORE', 'WEBHCAT_SERVER'], [['host1', 'host2'], ['host1','host2'], ['host1', 'host3']]),
- ctrlStubs: {
- fromDeleteHost: true,
- 'content.hostName': 'host2',
- webhcatServerHost: '',
- hiveMetastoreHost: ''
- },
- configs: {
- items: [
- makeFileNameProps('hive-site', [
- ['hive.metastore.uris', 'thrift://host1:1111']
- ]),
- makeFileNameProps('hive-env', [
- ['hive_user', 'hive_user_val']
- ]),
- makeFileNameProps('webhcat-site', [
- ['templeton.hive.properties', 'hive.metastore.local=false,hive.metastore.uris=thrift://host1:9083,hive.metastore.sasl.enabled=false']
- ]),
- makeFileNameProps('core-site', [
- ['hadoop.proxyuser.hive_user_val.hosts', 'host1']
- ])
- ]
- },
- m: 'Components: {0}, appropriate configs should be changed, thrift port should be default 9083, Controller Stubs: {1}',
- e: {
- configs: [
- {
- "properties": {
- "hive-site": makeFileNameProps('hive-site', [
- ['hive.metastore.uris', 'thrift://host1:1111,thrift://host3:1111']
- ]).properties,
- "webhcat-site": makeFileNameProps('webhcat-site', [
- ['templeton.hive.properties', 'hive.metastore.local=false,hive.metastore.uris=thrift://host1:1111\\,thrift://host3:1111,hive.metastore.sasl.enabled=false']
- ]).properties,
- "hive-env": makeFileNameProps('hive-env', [
- ['hive_user', 'hive_user_val']
- ]).properties
- },
- "properties_attributes": makeEmptyPropAttrs("hive-site", "webhcat-site", "hive-env")
- },
- {
- "properties": {
- "core-site": makeFileNameProps('core-site', [
- ['hadoop.proxyuser.hive_user_val.hosts', 'host1,host3']
- ]).properties
- },
- "properties_attributes": makeEmptyPropAttrs("core-site")
- }
- ]
- }
- }
- ];
- tests.forEach(function(test) {
- describe(test.m.format(inlineComponentHostInfo(test.hostComponentModel), test.ctrlStubs ? JSON.stringify(test.ctrlStubs) : 'None'), function() {
- beforeEach(function () {
- if (test.appGetterStubs) {
- Em.keys(test.appGetterStubs).forEach(function(key) {
- sinon.stub(App, 'get').withArgs(key).returns(test.appGetterStubs[key]);
- });
- }
- if (test.ctrlStubs) {
- var stub = sinon.stub(controller, 'get');
- Em.keys(test.ctrlStubs).forEach(function(key) {
- stub.withArgs(key).returns(test.ctrlStubs[key]);
- });
- }
- sinon.stub(App.HostComponent, 'find').returns(test.hostComponentModel);
- });
- afterEach(function () {
- if (test.ctrlStubs) {
- controller.get.restore();
- }
- if (test.appGetterStubs) {
- App.get.restore();
- }
- App.HostComponent.find.restore();
- });
- it('saveConfigsBatch is called with correct configs', function () {
- controller.onLoadHiveConfigs(test.configs, null, {webHCat: test.webHCat});
- var configs = controller.saveConfigsBatch.args[0];
- var properties = configs[0];
- expect(properties).to.be.eql(test.e.configs);
- });
- });
- });
- });
- });
|