123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /**
- * 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('views/main/menu');
- var mainMenuView = App.MainMenuView.create();
- describe('App.MainMenuView', function () {
- describe('#content', function () {
- beforeEach(function () {
- this.mock = sinon.stub(App, 'get');
- sinon.stub(App.router, 'get')
- .withArgs('clusterController.isLoaded').returns(true)
- .withArgs('loggedIn').returns(true);
- });
- afterEach(function () {
- this.mock.restore();
- App.router.get.restore();
- });
- it('menu should be populated if cluster installation is completed', function () {
- this.mock.withArgs('router.clusterInstallCompleted').returns(true);
- App.router.notifyPropertyChange('clusterInstallCompleted');
- expect(mainMenuView.get('content').length > 1).to.be.true;
- });
- it('menu should not be populated if cluster installation is not completed', function () {
- this.mock.withArgs('router.clusterInstallCompleted').returns(false);
- App.router.notifyPropertyChange('clusterInstallCompleted');
- expect(mainMenuView.get('content').length > 1).to.be.false;
- });
- });
- describe('#itemViewClass', function () {
- beforeEach(function () {
- mainMenuView.reopen({
- content: [
- mainMenuView.get('itemViewClass').create({
- content: {
- routing: 'dashboard'
- }
- }),
- mainMenuView.get('itemViewClass').create({
- content: {
- routing: 'admin'
- }
- })
- ]
- });
- });
- describe('#dropdownCategories', function () {
- var cases = [
- {
- itemName: 'dashboard',
- dropdownCategories: [],
- title: 'not Admin item'
- },
- {
- itemName: 'admin',
- isHadoopWindowsStack: true,
- dropdownCategories: [
- {
- name: 'stackAndUpgrade',
- url: 'stack',
- label: Em.I18n.t('admin.stackUpgrade.title')
- },
- {
- name: 'adminServiceAccounts',
- url: 'serviceAccounts',
- label: Em.I18n.t('common.serviceAccounts')
- }
- ],
- title: 'Admin item, HDPWIN'
- },
- {
- itemName: 'admin',
- isHadoopWindowsStack: false,
- dropdownCategories: [
- {
- name: 'stackAndUpgrade',
- url: 'stack',
- label: Em.I18n.t('admin.stackUpgrade.title')
- },
- {
- name: 'adminServiceAccounts',
- url: 'serviceAccounts',
- label: Em.I18n.t('common.serviceAccounts')
- },
- {
- name: 'kerberos',
- url: 'kerberos/',
- label: Em.I18n.t('common.kerberos')
- }
- ],
- title: 'Admin item, not HDPWIN'
- }
- ];
- afterEach(function () {
- App.get.restore();
- });
- cases.forEach(function (item) {
- it(item.title, function () {
- sinon.stub(App, 'get').withArgs('isHadoopWindowsStack').returns(item.isHadoopWindowsStack);
- var menuItem = mainMenuView.get('content').findProperty('content.routing', item.itemName);
- menuItem.propertyDidChange('dropdownCategories');
- expect(menuItem.get('dropdownCategories')).to.eql(item.dropdownCategories);
- });
- });
- });
- });
- });
|