blob: 22a2d94a4004f7f2832b7777de3d39c53f31c6f3 [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 helpers = App.TestAliases.helpers;
/**
*
* @param {Em.Object} context
* @param {string} propertyName
* @param {string} dependentKey
*/
App.TestAliases.testAsComputedFormatNa = function (context, propertyName, dependentKey) {
describe('#' + propertyName + ' as Em.computed.formatUnavailable', function () {
afterEach(function () {
helpers.smartRestoreGet(context);
});
it('has valid dependent keys', function () {
expect(Em.meta(context).descs[propertyName]._dependentKeys).to.eql([dependentKey]);
});
it('should be `0` if ' + JSON.stringify(dependentKey) + ' is `0`', function () {
helpers.smartStubGet(context, dependentKey, 0)
.propertyDidChange(context, propertyName);
var value = helpers.smartGet(context, propertyName);
expect(value).to.be.equal(0);
});
it('should be `12` if ' + JSON.stringify(dependentKey) + ' is `12`', function () {
helpers.smartStubGet(context, dependentKey, 12)
.propertyDidChange(context, propertyName);
var value = helpers.smartGet(context, propertyName);
expect(value).to.be.equal(12);
});
it('should be `n/a` if ' + JSON.stringify(dependentKey) + ' is not number >= 0', function () {
helpers.smartStubGet(context, dependentKey, null)
.propertyDidChange(context, propertyName);
var value = helpers.smartGet(context, propertyName);
expect(value).to.be.equal(Em.I18n.t('services.service.summary.notAvailable'));
});
});
};