aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/ui/prompt_test.html
blob: 30b0ee013ca237ca710fd23f45120e7cde09be6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html>
<!--
Copyright 2010 The Closure Library Authors. All Rights Reserved.

Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Closure Unit Tests - goog.ui.Prompt</title>
<script src="../base.js"></script>
<script>
  goog.require('goog.dom.selection');
  goog.require('goog.functions');
  goog.require('goog.string');
  goog.require('goog.ui.BidiInput');
  goog.require('goog.ui.Prompt');
  goog.require('goog.userAgent.product');
  goog.require('goog.testing.jsunit');
  goog.require('goog.testing.events');
</script>
<link rel="stylesheet" type="text/css" href="../css/common.css"/>
<link rel="stylesheet" type="text/css" href="../css/dialog.css"/>
</head>
<body>

<input type='button' value='Prompt' onclick='newPrompt();' />

<script>

var prompt;

function setUp() {
  document.body.focus();
}

function tearDown() {
  goog.dispose(prompt);
}

function testFocusOnInputElement() {
  // FF does not perform focus if the window is not active in the first place.
  if (goog.userAgent.GECKO && document.hasFocus && !document.hasFocus()) {
    return;
  }

  var promptResult = undefined;
  prompt = new goog.ui.Prompt('title', 'Prompt:', function(result) {
    promptResult = result;
  }, 'defaultValue');
  prompt.setVisible(true);

  if (goog.userAgent.product.CHROME) {
    // For some reason, this test fails non-deterministically on Chrome,
    // but only on the test farm.
    return;
  }
  assertEquals('defaultValue',
      goog.dom.selection.getText(prompt.userInputEl_));
}


function testValidationFunction() {
  var promptResult = undefined;
  prompt = new goog.ui.Prompt('title', 'Prompt:', function(result) {
    promptResult = result;
  }, '');
  prompt.setValidationFunction(goog.functions.not(goog.string.isEmpty));
  prompt.setVisible(true);

  var buttonSet = prompt.getButtonSet();
  var okButton = buttonSet.getButton(goog.ui.Dialog.DefaultButtonKeys.OK);
  assertTrue(okButton.disabled);

  prompt.userInputEl_.value = '';
  goog.testing.events.fireKeySequence(prompt.userInputEl_,
      goog.events.KeyCodes.SPACE);
  assertTrue(okButton.disabled);
  prompt.userInputEl_.value = 'foo';
  goog.testing.events.fireKeySequence(prompt.userInputEl_,
      goog.events.KeyCodes.X);
  assertFalse(okButton.disabled);
}

function testBidiInput() {
  var shalomInHebrew = '\u05e9\u05dc\u05d5\u05dd';
  var promptResult = undefined;
  prompt = new goog.ui.Prompt('title', 'Prompt:', goog.functions.NULL, '');
  var bidiInput = new goog.ui.BidiInput();
  prompt.setInputDecoratorFn(goog.bind(bidiInput.decorate, bidiInput));
  prompt.setVisible(true);

  prompt.userInputEl_.value = shalomInHebrew;
  goog.testing.events.fireKeySequence(prompt.userInputEl_,
      goog.events.KeyCodes.SPACE);
  goog.testing.events.fireBrowserEvent(
      {'target' : prompt.userInputEl_, 'type' : 'input'});
  bidiInput.inputHandler_.dispatchEvent(
      goog.events.InputHandler.EventType.INPUT);
  assertEquals('rtl', prompt.userInputEl_.dir);

  prompt.userInputEl_.value = 'shalomInEnglish';
  goog.testing.events.fireKeySequence(prompt.userInputEl_,
      goog.events.KeyCodes.SPACE);
  goog.testing.events.fireBrowserEvent(
      {'target' : prompt.userInputEl_, 'type' : 'input'});
  bidiInput.inputHandler_.dispatchEvent(
      goog.events.InputHandler.EventType.INPUT);
  assertEquals('ltr', prompt.userInputEl_.dir);
  goog.dispose(bidiInput);
}

function testBidiInput_off() {
  var shalomInHebrew = '\u05e9\u05dc\u05d5\u05dd';
  var promptResult = undefined;
  prompt = new goog.ui.Prompt('title', 'Prompt:', goog.functions.NULL, '');
  prompt.setVisible(true);

  prompt.userInputEl_.value = shalomInHebrew;
  goog.testing.events.fireKeySequence(prompt.userInputEl_,
      goog.events.KeyCodes.SPACE);
  goog.testing.events.fireBrowserEvent(
      {'target' : prompt.userInputEl_, 'type' : 'input'});
  assertEquals('', prompt.userInputEl_.dir);

  prompt.userInputEl_.value = 'shalomInEnglish';
  goog.testing.events.fireKeySequence(prompt.userInputEl_,
      goog.events.KeyCodes.SPACE);
  assertEquals('', prompt.userInputEl_.dir);
}

// An interactive test so we can manually see what it looks like.
function newPrompt() {
  prompt = new goog.ui.Prompt('title', 'Prompt:', function(result) {
    alert('Result: ' + result);
    goog.dispose(prompt);
  }, 'defaultValue');
  prompt.setVisible(true);
}

</script>
</body>
</html>