/** * 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); }) }) })*/ require('controllers/wizard/step0_controller'); describe('App.WizardStep0Controller', function () { var wizardStep0Controller = App.WizardStep0Controller.create(); describe('#invalidClusterName', function () { it('should return true if no cluster name is present', function () { wizardStep0Controller.set('hasSubmitted', true); wizardStep0Controller.set('content', {'cluster':{'name':''}}); expect(wizardStep0Controller.get('invalidClusterName')).to.equal(true); }) it('should return true if cluster name contains white spaces', function () { wizardStep0Controller.set('hasSubmitted', true); wizardStep0Controller.set('content', {'cluster':{'name':'the cluster'}}); expect(wizardStep0Controller.get('invalidClusterName')).to.equal(true); }) it('should return true if cluster name contains special chars', function () { wizardStep0Controller.set('hasSubmitted', true); wizardStep0Controller.set('content', {'cluster':{'name':'$cluster'}}); expect(wizardStep0Controller.get('invalidClusterName')).to.equal(true); }) }) })