blob: 7e9cad6e8e083fd7df07ec62d1ef701646d3d0b3 [file] [log] [blame]
/**
* 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/wizard/step1_controller');
/*describe('App.InstallerStep1Controller', function () {
describe('#validateStep1()', function () {
it('should return false and sets invalidClusterName to true if cluster name is empty', function () {
var controller = App.InstallerStep1Controller.create();
controller.set('clusterName', '');
expect(controller.validateStep1()).to.equal(false);
expect(controller.get('invalidClusterName')).to.equal(true);
})
it('should return false and sets invalidClusterName to true if cluster name has whitespaces', function () {
var controller = App.InstallerStep1Controller.create();
controller.set('clusterName', 'My Cluster');
expect(controller.validateStep1()).to.equal(false);
expect(controller.get('invalidClusterName')).to.equal(true);
})
it('should return false and sets invalidClusterName to true if cluster name has special characters', function () {
var controller = App.InstallerStep1Controller.create();
controller.set('clusterName', 'my-cluster');
expect(controller.validateStep1()).to.equal(false);
expect(controller.get('invalidClusterName')).to.equal(true);
})
it('should return true, sets invalidClusterName to false if cluster name is valid', function () {
var controller = App.InstallerStep1Controller.create();
var clusterName = 'mycluster1';
controller.set('clusterName', clusterName);
expect(controller.validateStep1()).to.equal(true);
expect(controller.get('invalidClusterName')).to.equal(false);
})
})
})*/
describe('App.WizardStep1Controller', function () {
var wizardStep1Controller = App.WizardStep1Controller.create();
describe('#invalidClusterName', function () {
it('should return true if no cluster name is present', function () {
wizardStep1Controller.set('hasSubmitted', true);
wizardStep1Controller.set('content', {'cluster':{'name':''}});
expect(wizardStep1Controller.get('invalidClusterName')).to.equal(true);
})
it('should return true if cluster name contains white spaces', function () {
wizardStep1Controller.set('hasSubmitted', true);
wizardStep1Controller.set('content', {'cluster':{'name':'the cluster'}});
expect(wizardStep1Controller.get('invalidClusterName')).to.equal(true);
})
it('should return true if cluster name contains special chars', function () {
wizardStep1Controller.set('hasSubmitted', true);
wizardStep1Controller.set('content', {'cluster':{'name':'$cluster'}});
expect(wizardStep1Controller.get('invalidClusterName')).to.equal(true);
})
})
})