michael@0: /* michael@0: * Copyright 2012, Mozilla Foundation and contributors michael@0: * michael@0: * Licensed under the Apache License, Version 2.0 (the "License"); michael@0: * you may not use this file except in compliance with the License. michael@0: * You may obtain a copy of the License at michael@0: * michael@0: * http://www.apache.org/licenses/LICENSE-2.0 michael@0: * michael@0: * Unless required by applicable law or agreed to in writing, software michael@0: * distributed under the License is distributed on an "AS IS" BASIS, michael@0: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. michael@0: * See the License for the specific language governing permissions and michael@0: * limitations under the License. michael@0: */ michael@0: michael@0: 'use strict'; michael@0: // michael@0: michael@0: // THIS FILE IS GENERATED FROM SOURCE IN THE GCLI PROJECT michael@0: // DO NOT EDIT IT DIRECTLY michael@0: michael@0: var exports = {}; michael@0: michael@0: var TEST_URI = "data:text/html;charset=utf-8,

gcli-testPref2.js

"; michael@0: michael@0: function test() { michael@0: return Task.spawn(function() { michael@0: let options = yield helpers.openTab(TEST_URI); michael@0: yield helpers.openToolbar(options); michael@0: gcli.addItems(mockCommands.items); michael@0: michael@0: yield helpers.runTests(options, exports); michael@0: michael@0: gcli.removeItems(mockCommands.items); michael@0: yield helpers.closeToolbar(options); michael@0: yield helpers.closeTab(options); michael@0: }).then(finish, helpers.handleError); michael@0: } michael@0: michael@0: // michael@0: michael@0: // var assert = require('../testharness/assert'); michael@0: // var helpers = require('./helpers'); michael@0: var mockSettings = require('./mockSettings'); michael@0: var settings = require('gcli/settings'); michael@0: michael@0: exports.testPrefExec = function(options) { michael@0: if (options.requisition.canon.getCommand('pref') == null) { michael@0: assert.log('Skipping test; missing pref command.'); michael@0: return; michael@0: } michael@0: michael@0: if (options.isRemote) { michael@0: assert.log('Skipping test which assumes local settings.'); michael@0: return; michael@0: } michael@0: michael@0: var allowSet = settings.getSetting('allowSet'); michael@0: var initialAllowSet = allowSet.value; michael@0: allowSet.value = false; michael@0: michael@0: assert.is(mockSettings.tempNumber.value, 42, 'set to 42'); michael@0: michael@0: return helpers.audit(options, [ michael@0: { michael@0: // Delegated remote types can't transfer value types so we only test for michael@0: // the value of 'value' when we're local michael@0: skipIf: options.isRemote, michael@0: setup: 'pref set tempNumber 4', michael@0: check: { michael@0: setting: { value: mockSettings.tempNumber }, michael@0: args: { value: { value: 4 } } michael@0: } michael@0: }, michael@0: { michael@0: skipRemainingIf: options.isNoDom, michael@0: setup: 'pref set tempNumber 4', michael@0: check: { michael@0: input: 'pref set tempNumber 4', michael@0: hints: '', michael@0: markup: 'VVVVVVVVVVVVVVVVVVVVV', michael@0: cursor: 21, michael@0: current: 'value', michael@0: status: 'VALID', michael@0: predictions: [ ], michael@0: unassigned: [ ], michael@0: args: { michael@0: command: { name: 'pref set' }, michael@0: setting: { michael@0: arg: ' tempNumber', michael@0: status: 'VALID', michael@0: message: '' michael@0: }, michael@0: value: { michael@0: arg: ' 4', michael@0: status: 'VALID', michael@0: message: '' michael@0: } michael@0: } michael@0: }, michael@0: exec: { michael@0: output: [ /void your warranty/, /I promise/ ] michael@0: }, michael@0: post: function() { michael@0: assert.is(mockSettings.tempNumber.value, 42, 'still set to 42'); michael@0: allowSet.value = true; michael@0: } michael@0: }, michael@0: { michael@0: setup: 'pref set tempNumber 4', michael@0: exec: { michael@0: output: '' michael@0: }, michael@0: post: function() { michael@0: assert.is(mockSettings.tempNumber.value, 4, 'set to 4'); michael@0: } michael@0: }, michael@0: { michael@0: setup: 'pref reset tempNumber', michael@0: check: { michael@0: args: { michael@0: command: { name: 'pref reset' }, michael@0: setting: { value: mockSettings.tempNumber } michael@0: } michael@0: }, michael@0: exec: { michael@0: output: '' michael@0: }, michael@0: post: function() { michael@0: assert.is(mockSettings.tempNumber.value, 42, 'reset to 42'); michael@0: michael@0: allowSet.value = initialAllowSet; michael@0: } michael@0: }, michael@0: { michael@0: skipRemainingIf: function commandPrefListMissing() { michael@0: return options.requisition.canon.getCommand('pref list') == null; michael@0: }, michael@0: setup: 'pref list tempNum', michael@0: check: { michael@0: args: { michael@0: command: { name: 'pref list' }, michael@0: search: { value: 'tempNum' } michael@0: } michael@0: }, michael@0: exec: { michael@0: output: /tempNum/ michael@0: } michael@0: }, michael@0: ]); michael@0: };