1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231 |
- /**
- * 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('config');
- require('utils/configs_collection');
- require('utils/config');
- require('models/service/hdfs');
- var setups = require('test/init_model_test');
- function dummyCopy(val) {
- return JSON.parse(JSON.stringify(val));
- }
- describe('App.config', function () {
- describe('#fileConfigsIntoTextarea', function () {
- var filename = 'capacity-scheduler.xml';
- var configs = [
- {
- name: 'config1',
- value: 'value1',
- recommendedValue: 'value1',
- filename: 'capacity-scheduler.xml'
- },
- {
- name: 'config2',
- value: 'value2',
- recommendedValue: 'value2',
- filename: 'capacity-scheduler.xml'
- }
- ];
- var c3 = {
- name: 'config3',
- value: 'value3',
- recommendedValue: 'value3',
- filename: 'capacity-scheduler.xml'
- };
- describe('two configs into textarea', function () {
- var result;
- beforeEach(function () {
- result = App.config.fileConfigsIntoTextarea(configs, filename);
- });
- it('One config is returned', function () {
- expect(result.length).to.equal(1);
- });
- it('value is valid', function () {
- expect(result[0].value).to.equal('config1=value1\nconfig2=value2\n');
- });
- it('recommendedValue is valid', function () {
- expect(result[0].recommendedValue).to.equal('config1=value1\nconfig2=value2\n');
- });
- });
- describe('three config into textarea', function () {
- var newConfigs = dummyCopy(configs);
- newConfigs.push(dummyCopy(c3));
- var result;
- beforeEach(function () {
- result = App.config.fileConfigsIntoTextarea(newConfigs, filename);
- });
- it('One config is returned', function () {
- expect(result.length).to.equal(1);
- });
- it('valid is valid', function () {
- expect(result[0].value).to.equal('config1=value1\nconfig2=value2\nconfig3=value3\n');
- });
- it('recommendedValue is valid', function () {
- expect(result[0].recommendedValue).to.equal('config1=value1\nconfig2=value2\nconfig3=value3\n');
- });
- });
- describe('one of three configs has different filename', function () {
- var newConfigs = dummyCopy(configs);
- newConfigs.push(dummyCopy(c3));
- newConfigs[1].filename = 'another filename';
- var result;
- beforeEach(function () {
- result = App.config.fileConfigsIntoTextarea(newConfigs, filename);
- });
- it('Two configs are returned', function () {
- //result contains two configs: one with different filename and one textarea config
- expect(result.length).to.equal(2);
- });
- it('Value is valid', function () {
- expect(result[1].value).to.equal('config1=value1\nconfig3=value3\n');
- });
- it('RecommendedValue is valid', function () {
- expect(result[1].recommendedValue).to.equal('config1=value1\nconfig3=value3\n');
- });
- });
- describe('none configs into empty textarea', function () {
- var result;
- beforeEach(function () {
- result = App.config.fileConfigsIntoTextarea([], 'capacity-scheduler.xml');
- });
- it('One config is returned', function () {
- expect(result.length).to.equal(1);
- });
- it('value is empty', function () {
- expect(result[0].value).to.equal('');
- });
- it('recommendedValue is none', function () {
- expect(Em.isNone(result[0].recommendedValue)).to.be.true;
- });
- it('savedValue is none', function () {
- expect(Em.isNone(result[0].savedValue)).to.be.true;
- });
- });
- describe("filename has configs that shouldn't be included in textarea", function () {
- var newConfigs = dummyCopy(configs);
- newConfigs.push(dummyCopy(c3));
- var result;
- beforeEach(function () {
- result = App.config.fileConfigsIntoTextarea(newConfigs, 'capacity-scheduler.xml', [c3]);
- });
- it('Two configs are returned', function () {
- expect(result.length).to.equal(2);
- });
- it('value is correct', function () {
- expect(result[1].value).to.equal('config1=value1\nconfig2=value2\n');
- });
- it('recommendedValue is correct', function () {
- expect(result[1].recommendedValue).to.equal('config1=value1\nconfig2=value2\n');
- });
- it('skipped config is correct', function () {
- expect(newConfigs.findProperty('name', 'config3')).to.eql(c3);
- });
- });
- });
- describe('#textareaIntoFileConfigs', function () {
- var filename = 'capacity-scheduler.xml';
- var testData = [
- {
- configs: [Em.Object.create({
- "name": "capacity-scheduler",
- "value": "config1=value1",
- "filename": "capacity-scheduler.xml",
- "isRequiredByAgent": true
- })]
- },
- {
- configs: [Em.Object.create({
- "name": "capacity-scheduler",
- "value": "config1=value1\nconfig2=value2\n",
- "filename": "capacity-scheduler.xml",
- "isRequiredByAgent": false
- })]
- },
- {
- configs: [Em.Object.create({
- "name": "capacity-scheduler",
- "value": "config1=value1,value2\n",
- "filename": "capacity-scheduler.xml",
- "isRequiredByAgent": true
- })]
- },
- {
- configs: [Em.Object.create({
- "name": "capacity-scheduler",
- "value": "config1=value1 config2=value2\n",
- "filename": "capacity-scheduler.xml",
- "isRequiredByAgent": false
- })]
- }
- ];
- describe('config1=value1 to one config', function () {
- var result;
- beforeEach(function () {
- result = App.config.textareaIntoFileConfigs(testData[0].configs, filename);
- });
- it('One config is returned', function () {
- expect(result.length).to.equal(1);
- });
- it('value is correct', function () {
- expect(result[0].value).to.equal('value1');
- });
- it('name is correct', function () {
- expect(result[0].name).to.equal('config1');
- });
- it('isRequiredByAgent is true', function () {
- expect(result[0].isRequiredByAgent).to.be.true;
- });
- });
- describe('config1=value1\\nconfig2=value2\\n to two configs', function () {
- var result;
- beforeEach(function () {
- result = App.config.textareaIntoFileConfigs(testData[1].configs, filename);
- });
- it('Two configs are returned', function (){
- expect(result.length).to.equal(2);
- });
- it('1st value is valid', function (){
- expect(result[0].value).to.equal('value1');
- });
- it('1st name is valid', function (){
- expect(result[0].name).to.equal('config1');
- });
- it('2nd value is valid', function (){
- expect(result[1].value).to.equal('value2');
- });
- it('2nd name is valid', function (){
- expect(result[1].name).to.equal('config2');
- });
- it('1st isRequiredByAgent is false', function (){
- expect(result[0].isRequiredByAgent).to.be.false;
- });
- it('2nd isRequiredByAgent is false', function (){
- expect(result[1].isRequiredByAgent).to.be.false;
- });
- });
- describe('config1=value1,value2\n to one config', function () {
- var result;
- beforeEach(function () {
- result = App.config.textareaIntoFileConfigs(testData[2].configs, filename);
- });
- it('One config is returned', function () {
- expect(result.length).to.equal(1);
- });
- it('value is correct', function () {
- expect(result[0].value).to.equal('value1,value2');
- });
- it('name is correct', function () {
- expect(result[0].name).to.equal('config1');
- });
- it('isRequiredByAgent is true', function () {
- expect(result[0].isRequiredByAgent).to.be.true;
- });
- });
- describe('config1=value1 config2=value2 to two configs', function () {
- var result;
- beforeEach(function () {
- result = App.config.textareaIntoFileConfigs(testData[3].configs, filename);
- });
- it('One config is returned', function () {
- expect(result.length).to.equal(1);
- });
- it('isRequiredByAgent is false', function () {
- expect(result[0].isRequiredByAgent).to.be.false;
- });
- });
- });
- describe('#trimProperty',function() {
- var testMessage = 'displayType `{0}`, value `{1}`{3} should return `{2}`';
- var tests = [
- {
- config: {
- displayType: 'directory',
- value: ' /a /b /c'
- },
- e: '/a,/b,/c'
- },
- {
- config: {
- displayType: 'directories',
- value: ' /a /b '
- },
- e: '/a,/b'
- },
- {
- config: {
- displayType: 'directories',
- name: 'dfs.datanode.data.dir',
- value: ' [DISK]/a [SSD]/b '
- },
- e: '[DISK]/a,[SSD]/b'
- },
- {
- config: {
- displayType: 'directories',
- name: 'dfs.datanode.data.dir',
- value: '/a,/b, /c\n/d,\n/e /f'
- },
- e: '/a,/b,/c,/d,/e,/f'
- },
- {
- config: {
- displayType: 'host',
- value: ' localhost '
- },
- e: 'localhost'
- },
- {
- config: {
- displayType: 'password',
- value: ' passw ord '
- },
- e: ' passw ord '
- },
- {
- config: {
- displayType: 'string',
- value: ' value'
- },
- e: ' value'
- },
- {
- config: {
- displayType: 'string',
- value: ' value'
- },
- e: ' value'
- },
- {
- config: {
- displayType: 'string',
- value: 'http://localhost ',
- name: 'javax.jdo.option.ConnectionURL'
- },
- e: 'http://localhost'
- },
- {
- config: {
- displayType: 'string',
- value: 'http://localhost ',
- name: 'oozie.service.JPAService.jdbc.url'
- },
- e: 'http://localhost'
- },
- {
- config: {
- displayType: 'custom',
- value: ' custom value '
- },
- e: ' custom value'
- },
- {
- config: {
- displayType: 'componentHosts',
- value: ['host1.com', 'host2.com']
- },
- e: ['host1.com', 'host2.com']
- }
- ];
- tests.forEach(function(test) {
- it(testMessage.format(test.config.displayType, test.config.value, test.e, !!test.config.name ? ', name `' + test.config.name + '`' : ''), function() {
- expect(App.config.trimProperty(test.config)).to.eql(test.e);
- expect(App.config.trimProperty(Em.Object.create(test.config), true)).to.eql(test.e);
- });
- });
- });
- describe('#preDefinedConfigFile', function() {
- before(function() {
- setups.setupStackVersion(this, 'BIGTOP-0.8');
- });
- it('bigtop site properties should be ok.', function() {
- var bigtopSiteProperties = App.config.preDefinedConfigFile('BIGTOP', 'site_properties');
- expect(bigtopSiteProperties).to.be.ok;
- });
- it('a non-existing file should not be ok.', function () {
- var notExistingSiteProperty = App.config.preDefinedConfigFile('notExisting');
- expect(notExistingSiteProperty).to.not.be.ok;
- });
- after(function() {
- setups.restoreStackVersion(this);
- });
- });
- describe('#preDefinedSiteProperties-bigtop', function () {
- before(function() {
- setups.setupStackVersion(this, 'BIGTOP-0.8');
- });
- it('bigtop should use New PostgreSQL Database as its default hive metastore database', function () {
- App.StackService.createRecord({serviceName: 'HIVE'});
- expect(App.config.get('preDefinedSiteProperties').findProperty('recommendedValue', 'New PostgreSQL Database')).to.be.ok;
- });
- after(function() {
- setups.restoreStackVersion(this);
- });
- });
- describe('#generateConfigPropertiesByName', function() {
- var tests = [
- {
- names: ['property_1', 'property_2'],
- properties: undefined,
- e: {
- keys: ['name']
- },
- m: 'Should generate base property object without additional fields'
- },
- {
- names: ['property_1', 'property_2'],
- properties: { category: 'SomeCat', serviceName: 'SERVICE_NAME' },
- e: {
- keys: ['name', 'category', 'serviceName']
- },
- m: 'Should generate base property object without additional fields'
- }
- ];
- tests.forEach(function(test) {
- it(test.m, function() {
- expect(App.config.generateConfigPropertiesByName(test.names, test.properties).length).to.eql(test.names.length);
- expect(App.config.generateConfigPropertiesByName(test.names, test.properties).map(function(property) {
- return Em.keys(property);
- }).reduce(function(p, c) {
- return p.concat(c);
- }).uniq()).to.eql(test.e.keys);
- });
- });
- });
- describe('#setPreDefinedServiceConfigs', function() {
- beforeEach(function() {
- sinon.stub(App.StackService, 'find', function() {
- return [
- Em.Object.create({
- id: 'HDFS',
- serviceName: 'HDFS',
- configTypes: {
- 'hadoop-env': {},
- 'hdfs-site': {}
- }
- }),
- Em.Object.create({
- id: 'OOZIE',
- serviceName: 'OOZIE',
- configTypes: {
- 'oozie-env': {},
- 'oozie-site': {}
- }
- })
- ];
- });
- App.config.setPreDefinedServiceConfigs(true);
- });
- afterEach(function() {
- App.StackService.find.restore();
- });
- it('should include service MISC', function() {
- expect(App.config.get('preDefinedServiceConfigs').findProperty('serviceName', 'MISC')).to.be.ok;
- });
- it('should include -env config types according to stack services', function() {
- var miscCategory = App.config.get('preDefinedServiceConfigs').findProperty('serviceName', 'MISC');
- expect(Em.keys(miscCategory.get('configTypes'))).to.eql(['cluster-env', 'hadoop-env', 'oozie-env']);
- });
- });
-
- describe('#isManagedMySQLForHiveAllowed', function () {
- var cases = [
- {
- osFamily: 'redhat5',
- expected: false
- },
- {
- osFamily: 'redhat6',
- expected: true
- },
- {
- osFamily: 'suse11',
- expected: false
- }
- ],
- title = 'should be {0} for {1}';
- cases.forEach(function (item) {
- it(title.format(item.expected, item.osFamily), function () {
- expect(App.config.isManagedMySQLForHiveAllowed(item.osFamily)).to.equal(item.expected);
- });
- });
- });
- describe('#shouldSupportFinal', function () {
- var cases = [
- {
- shouldSupportFinal: false,
- title: 'no service name specified'
- },
- {
- serviceName: 's0',
- shouldSupportFinal: false,
- title: 'no filename specified'
- },
- {
- serviceName: 'MISC',
- shouldSupportFinal: false,
- title: 'MISC'
- },
- {
- serviceName: 's0',
- filename: 's0-site',
- shouldSupportFinal: true,
- title: 'final attribute supported'
- },
- {
- serviceName: 's0',
- filename: 's0-env',
- shouldSupportFinal: false,
- title: 'final attribute not supported'
- },
- {
- serviceName: 'Cluster',
- filename: 'krb5-conf.xml',
- shouldSupportFinal: false,
- title: 'kerberos descriptor identities don\'t support final'
- }
- ];
- beforeEach(function () {
- sinon.stub(App.StackService, 'find').returns([
- {
- serviceName: 's0'
- }
- ]);
- sinon.stub(App.config, 'getConfigTypesInfoFromService').returns({
- supportsFinal: ['s0-site']
- });
- });
- afterEach(function () {
- App.StackService.find.restore();
- App.config.getConfigTypesInfoFromService.restore();
- });
- cases.forEach(function (item) {
- it(item.title, function () {
- expect(App.config.shouldSupportFinal(item.serviceName, item.filename)).to.equal(item.shouldSupportFinal);
- });
- });
- });
- describe('#shouldSupportAddingForbidden', function () {
- var cases = [
- {
- shouldSupportAddingForbidden: false,
- title: 'no service name specified'
- },
- {
- serviceName: 's0',
- shouldSupportAddingForbidden: false,
- title: 'no filename specified'
- },
- {
- serviceName: 'MISC',
- shouldSupportAddingForbidden: false,
- title: 'MISC'
- },
- {
- serviceName: 's0',
- filename: 's0-site',
- shouldSupportAddingForbidden: true,
- title: 'adding forbidden supported'
- },
- {
- serviceName: 's0',
- filename: 's0-properties',
- shouldSupportAddingForbidden: false,
- title: 'adding forbidden not supported'
- }
- ];
- beforeEach(function () {
- sinon.stub(App.StackService, 'find').returns([
- Em.Object.create({
- serviceName: 's0',
- configTypes: {
- 's0-size': {},
- 's0-properties': {}
- }
- })
- ]);
- sinon.stub(App.config, 'getConfigTypesInfoFromService').returns({
- supportsAddingForbidden: ['s0-site']
- });
- });
- afterEach(function () {
- App.StackService.find.restore();
- App.config.getConfigTypesInfoFromService.restore();
- });
- cases.forEach(function (item) {
- it(item.title, function () {
- expect(App.config.shouldSupportAddingForbidden(item.serviceName, item.filename)).to.equal(item.shouldSupportAddingForbidden);
- });
- });
- });
- describe('#removeRangerConfigs', function () {
- it('should remove ranger configs and categories', function () {
- var configs = [
- Em.Object.create({
- configs: [
- Em.Object.create({filename: 'filename'}),
- Em.Object.create({filename: 'ranger-filename'})
- ],
- configCategories: [
- Em.Object.create({name: 'ranger-name'}),
- Em.Object.create({name: 'name'}),
- Em.Object.create({name: 'also-ranger-name'})
- ]
- })
- ];
- App.config.removeRangerConfigs(configs);
- expect(configs).eql(
- [
- Em.Object.create({
- configs: [
- Em.Object.create({filename: 'filename'})
- ],
- configCategories: [
- Em.Object.create({name: 'name'})
- ]
- })
- ]
- );
- });
- });
- describe("#createOverride", function() {
- var template = {
- name: "p1",
- filename: "f1",
- value: "v1",
- recommendedValue: "rv1",
- savedValue: "sv1",
- isFinal: true,
- recommendedIsFinal: false,
- savedIsFinal: true
- };
- var configProperty = App.ServiceConfigProperty.create(template);
- var group = Em.Object.create({name: "group1"});
- Object.keys(template).forEach(function (key) {
- it(key, function () {
- var override = App.config.createOverride(configProperty, {}, group);
- expect(override.get(key)).to.equal(template[key]);
- });
- });
- describe('overrides some values that should be different for override', function() {
- var override;
- beforeEach(function () {
- override = App.config.createOverride(configProperty, {}, group);
- });
- it('isOriginalSCP is false', function () {
- expect(override.get('isOriginalSCP')).to.be.false;
- });
- it('overrides is null', function () {
- expect(override.get('overrides')).to.be.null;
- });
- it('group is valid', function () {
- expect(override.get('group')).to.eql(group);
- });
- it('parentSCP is valid', function () {
- expect(override.get('parentSCP')).to.eql(configProperty);
- });
- });
- var overriddenTemplate = {
- value: "v2",
- recommendedValue: "rv2",
- savedValue: "sv2",
- isFinal: true,
- recommendedIsFinal: false,
- savedIsFinal: true
- };
- Object.keys(overriddenTemplate).forEach(function (key) {
- it('overrides some specific values `' + key + '`', function () {
- var override = App.config.createOverride(configProperty, overriddenTemplate, group);
- expect(override.get(key)).to.equal(overriddenTemplate[key]);
- });
- });
- it('throws error due to undefined configGroup', function() {
- expect(App.config.createOverride.bind(App.config, configProperty, {}, null)).to.throw(Error, 'configGroup can\' be null');
- });
- it('throws error due to undefined originalSCP', function() {
- expect(App.config.createOverride.bind(App.config, null, {}, group)).to.throw(Error, 'serviceConfigProperty can\' be null');
- });
- describe('updates originalSCP object ', function() {
- var overridenTemplate2;
- var override;
- beforeEach(function () {
- configProperty.set('overrides', null);
- configProperty.set('overrideValues', []);
- configProperty.set('overrideIsFinalValues', []);
- overridenTemplate2 = {
- value: "v12",
- recommendedValue: "rv12",
- savedValue: "sv12",
- isFinal: true,
- recommendedIsFinal: false,
- savedIsFinal: false
- };
- override = App.config.createOverride(configProperty, overridenTemplate2, group);
- });
- it('overrides.0 is valid', function () {
- expect(configProperty.get('overrides')[0]).to.be.eql(override);
- });
- it('overrideValues is valid', function () {
- expect(configProperty.get('overrideValues')).to.be.eql([overridenTemplate2.value]);
- });
- it('overrideIsFinalValues is valid', function () {
- expect(configProperty.get('overrideIsFinalValues')).to.be.eql([overridenTemplate2.isFinal]);
- });
- });
- });
- describe('#getIsEditable', function() {
- [{
- isDefaultGroup: true,
- isReconfigurable: true,
- canEdit: true,
- res: true,
- m: "isEditable is true"
- },
- {
- isDefaultGroup: false,
- isReconfigurable: true,
- canEdit: true,
- res: false,
- m: "isEditable is false; config group is not default"
- },
- {
- isDefaultGroup: true,
- isReconfigurable: false,
- canEdit: true,
- res: false,
- m: "isEditable is true; config is not reconfigurable"
- },
- {
- isDefaultGroup: true,
- isReconfigurable: true,
- canEdit: false,
- res: false,
- m: "isEditable is true; edition restricted by controller state"
- }].forEach(function(t) {
- it(t.m, function() {
- var configProperty = Ember.Object.create({isReconfigurable: t.isReconfigurable});
- var configGroup = Ember.Object.create({isDefault: t.isDefaultGroup});
- var isEditable = App.config.getIsEditable(configProperty, configGroup, t.canEdit);
- expect(isEditable).to.equal(t.res);
- })
- });
- });
- describe('#getIsSecure', function() {
- var secureConfigs = App.config.get('secureConfigs');
- before(function() {
- App.config.set('secureConfigs', [{name: 'secureConfig'}]);
- });
- after(function() {
- App.config.set('secureConfigs', secureConfigs);
- });
- it('config is secure', function() {
- expect(App.config.getIsSecure('secureConfig')).to.equal(true);
- });
- it('config is not secure', function() {
- expect(App.config.getIsSecure('NotSecureConfig')).to.equal(false);
- });
- });
- describe('#getDefaultCategory', function() {
- it('returns custom category', function() {
- expect(App.config.getDefaultCategory(null, 'filename.xml')).to.equal('Custom filename');
- });
- it('returns advanced category', function() {
- expect(App.config.getDefaultCategory(Em.Object.create, 'filename.xml')).to.equal('Advanced filename');
- });
- });
- describe('#getDefaultDisplayType', function() {
- it('returns singleLine displayType', function() {
- expect(App.config.getDefaultDisplayType('v1')).to.equal('string');
- });
- it('returns multiLine displayType', function() {
- expect(App.config.getDefaultDisplayType('v1\nv2')).to.equal('multiLine');
- });
- });
- describe('#formatValue', function() {
- it('formatValue for componentHosts', function () {
- var serviceConfigProperty = Em.Object.create({'displayType': 'componentHosts', value: "['h1','h2']"});
- expect(App.config.formatPropertyValue(serviceConfigProperty)).to.eql(['h1','h2']);
- });
- it('formatValue for int', function () {
- var serviceConfigProperty = Em.Object.create({'displayType': 'int', value: '4.0'});
- expect(App.config.formatPropertyValue(serviceConfigProperty)).to.equal('4');
- });
- it('formatValue for int with m', function () {
- var serviceConfigProperty = Em.Object.create({'displayType': 'int', value: '4m'});
- expect(App.config.formatPropertyValue(serviceConfigProperty)).to.equal('4');
- });
- it('formatValue for float', function () {
- var serviceConfigProperty = Em.Object.create({'displayType': 'float', value: '0.40'});
- expect(App.config.formatPropertyValue(serviceConfigProperty)).to.equal('0.4');
- });
- it('formatValue for kdc_type', function () {
- var serviceConfigProperty = Em.Object.create({'name': 'kdc_type', value: 'mit-kdc'});
- expect(App.config.formatPropertyValue(serviceConfigProperty)).to.equal(Em.I18n.t('admin.kerberos.wizard.step1.option.kdc'));
- });
- it('don\'t format value', function () {
- var serviceConfigProperty = Em.Object.create({'name': 'any', displayType: 'any', value: 'any'});
- expect(App.config.formatPropertyValue(serviceConfigProperty)).to.equal('any');
- });
- });
- describe('#getPropertyIfExists', function() {
- [
- {
- propertyName: 'someProperty',
- defaultValue: 'default',
- firstObject: { someProperty: '1' },
- secondObject: { someProperty: '2' },
- res: '1',
- m: 'use value from first object'
- },
- {
- propertyName: 'someProperty',
- defaultValue: 'default',
- firstObject: { someOtherProperty: '1' },
- secondObject: { someProperty: '2' },
- res: '2',
- m: 'use value from second object'
- },
- {
- propertyName: 'someProperty',
- defaultValue: 'default',
- firstObject: { someOtherProperty: '1' },
- secondObject: { someOtherProperty: '2' },
- res: 'default',
- m: 'use default value'
- },
- {
- propertyName: 'someProperty',
- defaultValue: 'default',
- res: 'default',
- m: 'use default value'
- },
- {
- propertyName: 'someProperty',
- defaultValue: true,
- firstObject: { someProperty: false },
- secondObject: { someProperty: true },
- res: false,
- m: 'use value from first object, check booleans'
- },
- {
- propertyName: 'someProperty',
- defaultValue: true,
- firstObject: { someProperty: 0 },
- secondObject: { someProperty: 1 },
- res: 0,
- m: 'use value from first object, check 0'
- },
- {
- propertyName: 'someProperty',
- defaultValue: true,
- firstObject: { someProperty: '' },
- secondObject: { someProperty: '1' },
- res: '',
- m: 'use value from first object, check empty string'
- }
- ].forEach(function (t) {
- it(t.m, function () {
- expect(App.config.getPropertyIfExists(t.propertyName, t.defaultValue, t.firstObject, t.secondObject)).to.equal(t.res);
- })
- });
- });
- describe('#createDefaultConfig', function() {
- before(function() {
- sinon.stub(App.config, 'getDefaultDisplayType', function() {
- return 'pDisplayType';
- });
- sinon.stub(App.config, 'getDefaultCategory', function() {
- return 'pCategory';
- });
- sinon.stub(App.config, 'getIsSecure', function() {
- return false;
- });
- sinon.stub(App.config, 'shouldSupportFinal', function() {
- return true;
- });
- });
- after(function() {
- App.config.getDefaultDisplayType.restore();
- App.config.getDefaultCategory.restore();
- App.config.getIsSecure.restore();
- App.config.shouldSupportFinal.restore();
- });
- var res = {
- /** core properties **/
- id: "pName__pFileName",
- name: 'pName',
- filename: 'pFileName.xml',
- value: '',
- savedValue: null,
- isFinal: false,
- savedIsFinal: null,
- /** UI and Stack properties **/
- recommendedValue: null,
- recommendedIsFinal: null,
- supportsFinal: true,
- supportsAddingForbidden: false,
- serviceName: 'pServiceName',
- displayName: 'pName',
- displayType: 'pDisplayType',
- description: '',
- category: 'pCategory',
- isSecureConfig: false,
- showLabel: true,
- isVisible: true,
- isUserProperty: false,
- isRequired: true,
- group: null,
- isRequiredByAgent: true,
- isReconfigurable: true,
- unit: null,
- hasInitialValue: false,
- isOverridable: true,
- index: Infinity,
- dependentConfigPattern: null,
- options: null,
- radioName: null,
- widgetType: null
- };
- it('create default config object', function () {
- expect(App.config.createDefaultConfig('pName', 'pServiceName', 'pFileName', true)).to.eql(res);
- });
- it('getDefaultDisplayType is called', function() {
- expect(App.config.getDefaultDisplayType.called).to.be.true;
- });
- it('getDefaultCategory is called with correct arguments', function() {
- expect(App.config.getDefaultCategory.calledWith(true, 'pFileName')).to.be.true;
- });
- it('getIsSecure is called with correct arguments', function() {
- expect(App.config.getIsSecure.calledWith('pName')).to.be.true;
- });
- it('shouldSupportFinal is called with correct arguments', function() {
- expect(App.config.shouldSupportFinal.calledWith('pServiceName', 'pFileName')).to.be.true;
- });
- });
- describe('#mergeStackConfigsWithUI', function() {
- beforeEach(function() {
- sinon.stub(App.config, 'getPropertyIfExists', function(key, value) {return 'res_' + value});
- });
- afterEach(function() {
- App.config.getPropertyIfExists.restore();
- });
- var template = {
- name: 'pName',
- filename: 'pFileName',
- value: 'pValue',
- savedValue: 'pValue',
- isFinal: true,
- savedIsFinal: true,
- serviceName: 'pServiceName',
- displayName: 'pDisplayName',
- displayType: 'pDisplayType',
- category: 'pCategory'
- };
- var result = {
- name: 'pName',
- filename: 'pFileName',
- value: 'pValue',
- savedValue: 'pValue',
- isFinal: true,
- savedIsFinal: true,
- serviceName: 'res_pServiceName',
- displayName: 'res_pDisplayName',
- displayType: 'res_pDisplayType',
- category: 'res_pCategory'
- };
- it('called generate property object', function () {
- expect(App.config.mergeStaticProperties(template, {}, {})).to.eql(result);
- });
- });
- describe('#updateHostsListValue', function() {
- var tests = [
- {
- siteConfigs: {
- 'hadoop.registry.zk.quorum': 'host1,host2'
- },
- propertyName: 'hadoop.registry.zk.quorum',
- hostsList: 'host1',
- e: 'host1'
- },
- {
- siteConfigs: {
- 'hadoop.registry.zk.quorum': 'host1:10,host2:10'
- },
- propertyName: 'hadoop.registry.zk.quorum',
- hostsList: 'host2:10,host1:10',
- e: 'host1:10,host2:10'
- },
- {
- siteConfigs: {
- 'hadoop.registry.zk.quorum': 'host1:10,host2:10,host3:10'
- },
- propertyName: 'hadoop.registry.zk.quorum',
- hostsList: 'host2:10,host1:10',
- e: 'host2:10,host1:10'
- },
- {
- siteConfigs: {
- 'hadoop.registry.zk.quorum': 'host1:10,host2:10,host3:10'
- },
- propertyName: 'hadoop.registry.zk.quorum',
- hostsList: 'host2:10,host1:10,host3:10,host4:11',
- e: 'host2:10,host1:10,host3:10,host4:11'
- },
- {
- siteConfigs: {
- 'hive.zookeeper.quorum': 'host1'
- },
- propertyName: 'some.new.property',
- hostsList: 'host2,host1:10',
- e: 'host2,host1:10'
- }
- ];
- tests.forEach(function(test) {
- it('ZK located on {0}, current prop value is "{1}" "{2}" value should be "{3}"'.format(test.hostsList, ''+test.siteConfigs[test.propertyName], test.propertyName, test.e), function() {
- var result = App.config.updateHostsListValue(test.siteConfigs, test.propertyName, test.hostsList);
- expect(result).to.be.eql(test.e);
- expect(test.siteConfigs[test.propertyName]).to.be.eql(test.e);
- });
- });
- });
- describe('#createHostNameProperty', function() {
- it('create host property', function() {
- expect(App.config.createHostNameProperty('service1', 'component1', ['host1'], Em.Object.create({
- isMultipleAllowed: false,
- displayName: 'display name'
- }))).to.eql({
- "name": 'component1_host',
- "displayName": 'display name host',
- "value": ['host1'],
- "recommendedValue": ['host1'],
- "description": "The host that has been assigned to run display name",
- "displayType": "componentHost",
- "isOverridable": false,
- "isRequiredByAgent": false,
- "serviceName": 'service1',
- "filename": "service1-site.xml",
- "category": 'component1',
- "index": 0
- })
- });
- it('create hosts property', function() {
- expect(App.config.createHostNameProperty('service1', 'component1', ['host1'], Em.Object.create({
- isMultipleAllowed: true,
- displayName: 'display name'
- }))).to.eql({
- "name": 'component1_hosts',
- "displayName": 'display name host',
- "value": ['host1'],
- "recommendedValue": ['host1'],
- "description": "The hosts that has been assigned to run display name",
- "displayType": "componentHosts",
- "isOverridable": false,
- "isRequiredByAgent": false,
- "serviceName": 'service1',
- "filename": "service1-site.xml",
- "category": 'component1',
- "index": 0
- })
- });
- });
- describe("#restrictSecureProperties()", function() {
- var testCases = [
- {
- input: {
- isSecureConfig: true,
- isKerberosEnabled: true,
- isReconfigurable: false,
- isOverridable: false
- },
- expected: {
- isReconfigurable: false,
- isOverridable: false
- }
- },
- {
- input: {
- isSecureConfig: true,
- isKerberosEnabled: true,
- isReconfigurable: true,
- isOverridable: true
- },
- expected: {
- isReconfigurable: false,
- isOverridable: false
- }
- },
- {
- input: {
- isSecureConfig: true,
- isKerberosEnabled: false,
- isReconfigurable: true,
- isOverridable: true
- },
- expected: {
- isReconfigurable: true,
- isOverridable: true
- }
- },
- {
- input: {
- isSecureConfig: false,
- isReconfigurable: false,
- isOverridable: false
- },
- expected: {
- isReconfigurable: false,
- isOverridable: false
- }
- },
- {
- input: {
- isSecureConfig: false,
- isReconfigurable: true,
- isOverridable: true
- },
- expected: {
- isReconfigurable: true,
- isOverridable: true
- }
- }
- ];
- testCases.forEach(function(test) {
- it("isSecureConfig = " + test.input.isSecureConfig + "; isKerberosEnabled = " + test.input.isKerberosEnabled, function() {
- var config = {
- isSecureConfig: test.input.isSecureConfig,
- isReconfigurable: test.input.isReconfigurable,
- isOverridable: test.input.isOverridable
- };
- App.set('isKerberosEnabled', !!test.input.isKerberosEnabled);
- App.config.restrictSecureProperties(config);
- expect(config.isReconfigurable).to.equal(test.expected.isReconfigurable);
- expect(config.isOverridable).to.equal(test.expected.isOverridable);
- });
- });
- });
- describe("#truncateGroupName()", function() {
- it("name is empty", function() {
- expect(App.config.truncateGroupName('')).to.be.empty;
- });
- it("name has less than max chars", function() {
- expect(App.config.truncateGroupName('group1')).to.equal('group1');
- });
- it("name has more than max chars", function() {
- expect(App.config.truncateGroupName('group_has_more_than_max_characters')).to.equal('group_has...haracters');
- });
- });
- });
|