summaryrefslogtreecommitdiff
path: root/xwalk/js/js-test-pre.js
blob: 3a2d181d5ead46230219e390f3217ee10ad8eec1 (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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
/*
 * Copyright (C) 2013 Google Inc. All rights reserved.
 * Copyright (C) 2013 Intel Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

// svg/dynamic-updates tests set enablePixelTesting=true, as we want to dump text + pixel results
var description, debug, successfullyParsed, errorMessage;

(function() {

  function getOrCreate(id, tagName)
  {
    var element = document.getElementById(id);
    if (element)
      return element;

    element = document.createElement(tagName);
    element.id = id;
    var refNode;
    var parent = document.body || document.documentElement;
    if (id == 'description')
      refNode = getOrCreate('console', 'div');
    else
      refNode = parent.firstChild;

    parent.insertBefore(element, refNode);
    return element;
  }

  description = function description(msg, quiet)
      {
    // For MSIE 6 compatibility
    var span = document.createElement('span');
    if (quiet)
      span.innerHTML = '<p>' + msg +
          '</p><p>' +
          'On success, you will see no "<span class="fail">FAIL</span>" messages, ' +
          'followed by "<span class="pass">TEST COMPLETE</span>".' +
          '</p>';
    else
      span.innerHTML = '<p>' + msg +
          '</p><p>' +
          'On success, you will see a series of "<span class="pass">PASS</span>" messages, ' +
          'followed by "<span class="pass">TEST COMPLETE</span>".' +
          '</p>';

    var description = getOrCreate('description', 'p');
    if (description.firstChild)
      description.replaceChild(span, description.firstChild);
    else
      description.appendChild(span);
  };

  debug = function debug(msg)
      {
    var span = document.createElement('span');
    getOrCreate('console', 'div').appendChild(span); // insert it first so XHTML knows the namespace
    span.innerHTML = msg + '<br />';
  };

  var css =
      '.pass {' +
            'font-weight: bold;' +
            'color: green;' +
      '}' +
      '.fail {' +
            'font-weight: bold;' +
            'color: red;' +
      '}' +
      '#console {' +
            'white-space: pre-wrap;' +
            'font-family: monospace;' +
      '}';

  function insertStyleSheet()
  {
    var styleElement = document.createElement('style');
    styleElement.textContent = css;
    (document.head || document.documentElement).appendChild(styleElement);
  }

  insertStyleSheet();

  if (!self.isOnErrorTest) {
    self.onerror = function(message)
        {
      errorMessage = message;
    };
  }

})();

function descriptionQuiet(msg) { description(msg, true); }

function escapeHTML(text)
{
  return text.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/\0/g, '\\0');
}

function testPassed(msg)
{
  debug('<span><span class="pass">PASS</span> ' + escapeHTML(msg) + '</span>');
}

function testFailed(msg)
{
  debug('<span><span class="fail">FAIL</span> ' + escapeHTML(msg) + '</span>');
}

function areArraysEqual(_a, _b)
{
  try {
    if (_a.length !== _b.length)
      return false;
    for (var i = 0; i < _a.length; i++)
      if (_a[i] !== _b[i])
        return false;
  } catch (ex) {
    return false;
  }
  return true;
}

function isMinusZero(n)
{
  // the only way to tell 0 from -0 in JS is the fact that 1/-0 is
  // -Infinity instead of Infinity
  return n === 0 && 1 / n < 0;
}

function isResultCorrect(_actual, _expected)
{
  if (_expected === 0)
    return _actual === _expected && (1 / _actual) === (1 / _expected);
  if (_actual === _expected)
    return true;
  if (typeof(_expected) == 'number' && isNaN(_expected))
    return typeof(_actual) == 'number' && isNaN(_actual);
  if (_expected &&
      (Object.prototype.toString.call(_expected) == Object.prototype.toString.call([])))
    return areArraysEqual(_actual, _expected);
  return false;
}

function stringify(v)
{
  if (v === 0 && 1 / v < 0)
    return '-0';
  else return '' + v;
}

function evalAndLog(_a, _quiet)
{
  if (typeof _a != 'string')
    debug('WARN: tryAndLog() expects a string argument');

  // Log first in case things go horribly wrong or this causes a sync event.
  if (!_quiet)
    debug(_a);

  var _av;
  try {
    _av = eval(_a);
  } catch (e) {
    testFailed(_a + ' threw exception ' + e);
  }
  return _av;
}

function shouldBe(_a, _b, quiet)
{
  if (typeof _a != 'string' || typeof _b != 'string')
    debug('WARN: shouldBe() expects string arguments');
  var exception;
  var _av;
  try {
    _av = eval(_a);
  } catch (e) {
    exception = e;
  }
  var _bv = eval(_b);

  if (exception)
    testFailed(_a + ' should be ' + _bv + '. Threw exception ' + exception);
  else if (isResultCorrect(_av, _bv)) {
    if (!quiet) {
      testPassed(_a + ' is ' + _b);
    }
  } else if (typeof(_av) == typeof(_bv))
    testFailed(_a + ' should be ' + _bv + '. Was ' + stringify(_av) + '.');
  else
    testFailed(_a + ' should be ' + _bv + ' (of type ' + typeof _bv + '). Was ' +
               _av + ' (of type ' + typeof _av + ').');
}

// Execute condition every 5 milliseconds until it succeed or failureTime is reached.
// completionHandler is executed on success, failureHandler is executed on timeout.
function _waitForCondition(condition, failureTime, completionHandler, failureHandler)
{
  if (condition()) {
    completionHandler();
  } else if (Date.now() > failureTime) {
    failureHandler();
  } else {
    setTimeout(_waitForCondition, 5, condition, failureTime, completionHandler, failureHandler);
  }
}

function shouldBecomeEqual(_a, _b, completionHandler, timeout)
{
  if (typeof _a != 'string' || typeof _b != 'string')
    debug('WARN: shouldBecomeEqual() expects string arguments');

  if (timeout === undefined)
    timeout = 500;

  var condition = function() {
    var exception;
    var _av;
    try {
      _av = eval(_a);
    } catch (e) {
      exception = e;
    }
    var _bv = eval(_b);
    if (exception)
      testFailed(_a + ' should become ' + _bv + '. Threw exception ' + exception);
    if (isResultCorrect(_av, _bv)) {
      testPassed(_a + ' became ' + _b);
      return true;
    }
    return false;
  };
  var failureTime = Date.now() + timeout;
  var failureHandler = function() {
    testFailed(_a + ' failed to change to ' + _b + ' in ' + (timeout / 1000) + ' seconds.');
    completionHandler();
  };
  _waitForCondition(condition, failureTime, completionHandler, failureHandler);
}

function shouldBecomeEqualToString(value, reference, completionHandler, timeout)
{
  if (typeof value !== 'string' || typeof reference !== 'string')
    debug('WARN: shouldBecomeEqualToString() expects string arguments');
  var unevaledString = JSON.stringify(reference);
  shouldBecomeEqual(value, unevaledString, completionHandler, timeout);
}

function shouldBeType(_a, _type) {
  var exception;
  var _av;
  try {
    _av = eval(_a);
  } catch (e) {
    exception = e;
  }

  var _typev = eval(_type);
  if (_av instanceof _typev) {
    testPassed(_a + ' is an instance of ' + _type);
  } else {
    testFailed(_a + ' is not an instance of ' + _type);
  }
}

// Variant of shouldBe()--confirms that result of eval(_to_eval) is within
// numeric _tolerance of numeric _target.
function shouldBeCloseTo(_to_eval, _target, _tolerance, quiet)
{
  if (typeof _to_eval != 'string') {
    testFailed('shouldBeCloseTo() requires string argument _to_eval. was type ' + typeof _to_eval);
    return;
  }
  if (typeof _target != 'number') {
    testFailed('shouldBeCloseTo() requires numeric argument _target. was type ' + typeof _target);
    return;
  }
  if (typeof _tolerance != 'number') {
    testFailed('shouldBeCloseTo() requires numeric argument _tolerance. was type ' +
               typeof _tolerance);
    return;
  }

  var _result;
  try {
    _result = eval(_to_eval);
  } catch (e) {
    testFailed(_to_eval + ' should be within ' + _tolerance + ' of ' +
               _target + '. Threw exception ' + e);
    return;
  }

  if (typeof(_result) != typeof(_target)) {
    testFailed(_to_eval + ' should be of type ' + typeof _target +
               ' but was of type ' + typeof _result);
  } else if (Math.abs(_result - _target) <= _tolerance) {
    if (!quiet) {
      testPassed(_to_eval + ' is within ' + _tolerance + ' of ' + _target);
    }
  } else {
    testFailed(_to_eval + ' should be within ' + _tolerance + ' of ' + _target +
               '. Was ' + _result + '.');
  }
}

function shouldNotBe(_a, _b, quiet)
{
  if (typeof _a != 'string' || typeof _b != 'string')
    debug('WARN: shouldNotBe() expects string arguments');
  var exception;
  var _av;
  try {
    _av = eval(_a);
  } catch (e) {
    exception = e;
  }
  var _bv = eval(_b);

  if (exception)
    testFailed(_a + ' should not be ' + _bv + '. Threw exception ' + exception);
  else if (!isResultCorrect(_av, _bv)) {
    if (!quiet) {
      testPassed(_a + ' is not ' + _b);
    }
  } else
    testFailed(_a + ' should not be ' + _bv + '.');
}

function shouldBecomeDifferent(_a, _b, completionHandler, timeout)
{
  if (typeof _a != 'string' || typeof _b != 'string')
    debug('WARN: shouldBecomeDifferent() expects string arguments');
  if (timeout === undefined)
    timeout = 500;

  var condition = function() {
    var exception;
    var _av;
    try {
      _av = eval(_a);
    } catch (e) {
      exception = e;
    }
    var _bv = eval(_b);
    if (exception)
      testFailed(_a + ' should became not equal to ' + _bv + '. Threw exception ' + exception);
    if (!isResultCorrect(_av, _bv)) {
      testPassed(_a + ' became different from ' + _b);
      return true;
    }
    return false;
  };
  var failureTime = Date.now() + timeout;
  var failureHandler = function() {
    testFailed(_a + ' did not become different from ' +
               _b + ' in ' + (timeout / 1000) + ' seconds.');
    completionHandler();
  };
  _waitForCondition(condition, failureTime, completionHandler, failureHandler);
}

function shouldBeTrue(_a) { shouldBe(_a, 'true'); }
function shouldBeTrueQuiet(_a) { shouldBe(_a, 'true', true); }
function shouldBeFalse(_a) { shouldBe(_a, 'false'); }
function shouldBeNaN(_a) { shouldBe(_a, 'NaN'); }
function shouldBeNull(_a) { shouldBe(_a, 'null'); }
function shouldBeZero(_a) { shouldBe(_a, '0'); }

function shouldBeEqualToString(a, b)
{
  if (typeof a !== 'string' || typeof b !== 'string')
    debug('WARN: shouldBeEqualToString() expects string arguments');
  var unevaledString = JSON.stringify(b);
  shouldBe(a, unevaledString);
}

function shouldBeEmptyString(_a) { shouldBeEqualToString(_a, ''); }

function shouldEvaluateTo(actual, expected) {
  // A general-purpose comparator.  'actual' should be a string to be
  // evaluated, as for shouldBe(). 'expected' may be any type and will be
  // used without being eval'ed.
  if (expected == null) {
    // Do this before the object test, since null is of type 'object'.
    shouldBeNull(actual);
  } else if (typeof expected == 'undefined') {
    shouldBeUndefined(actual);
  } else if (typeof expected == 'function') {
    // All this fuss is to avoid the string-arg warning from shouldBe().
    try {
      actualValue = eval(actual);
    } catch (e) {
      testFailed('Evaluating ' + actual + ': Threw exception ' + e);
      return;
    }
    shouldBe("'" + actualValue.toString().replace(/\n/g, '') + "'",
             "'" + expected.toString().replace(/\n/g, '') + "'");
  } else if (typeof expected == 'object') {
    shouldBeTrue(actual + " == '" + expected + "'");
  } else if (typeof expected == 'string') {
    shouldBe(actual, expected);
  } else if (typeof expected == 'boolean') {
    shouldBe('typeof ' + actual, "'boolean'");
    if (expected)
      shouldBeTrue(actual);
    else
      shouldBeFalse(actual);
  } else if (typeof expected == 'number') {
    shouldBe(actual, stringify(expected));
  } else {
    debug(expected + ' is unknown type ' + typeof expected);
    shouldBeTrue(actual, "'" + expected.toString() + "'");
  }
}

function shouldBeNonZero(_a)
{
  var exception;
  var _av;
  try {
    _av = eval(_a);
  } catch (e) {
    exception = e;
  }

  if (exception)
    testFailed(_a + ' should be non-zero. Threw exception ' + exception);
  else if (_av != 0)
    testPassed(_a + ' is non-zero.');
  else
    testFailed(_a + ' should be non-zero. Was ' + _av);
}

function shouldBeNonNull(_a)
{
  var exception;
  var _av;
  try {
    _av = eval(_a);
  } catch (e) {
    exception = e;
  }

  if (exception)
    testFailed(_a + ' should be non-null. Threw exception ' + exception);
  else if (_av != null)
    testPassed(_a + ' is non-null.');
  else
    testFailed(_a + ' should be non-null. Was ' + _av);
}

function shouldBeUndefined(_a)
{
  var exception;
  var _av;
  try {
    _av = eval(_a);
  } catch (e) {
    exception = e;
  }

  if (exception)
    testFailed(_a + ' should be undefined. Threw exception ' + exception);
  else if (typeof _av == 'undefined')
    testPassed(_a + ' is undefined.');
  else
    testFailed(_a + ' should be undefined. Was ' + _av);
}

function shouldBeDefined(_a)
{
  var exception;
  var _av;
  try {
    _av = eval(_a);
  } catch (e) {
    exception = e;
  }

  if (exception)
    testFailed(_a + ' should be defined. Threw exception ' + exception);
  else if (_av !== undefined)
    testPassed(_a + ' is defined.');
  else
    testFailed(_a + ' should be defined. Was ' + _av);
}

function shouldBeGreaterThanOrEqual(_a, _b) {
  if (typeof _a != 'string' || typeof _b != 'string')
    debug('WARN: shouldBeGreaterThanOrEqual expects string arguments');

  var exception;
  var _av;
  try {
    _av = eval(_a);
  } catch (e) {
    exception = e;
  }
  var _bv = eval(_b);

  if (exception)
    testFailed(_a + ' should be >= ' + _b + '. Threw exception ' + exception);
  else if (typeof _av == 'undefined' || _av < _bv)
    testFailed(_a + ' should be >= ' + _b + '. Was ' + _av + ' (of type ' + typeof _av + ').');
  else
    testPassed(_a + ' is >= ' + _b);
}

function shouldNotThrow(_a) {
  try {
    eval(_a);
    testPassed(_a + ' did not throw exception.');
  } catch (e) {
    testFailed(_a + ' should not throw exception. Threw exception ' + e + '.');
  }
}

function shouldThrow(_a, _e)
{
  var exception;
  var _av;
  try {
    _av = eval(_a);
  } catch (e) {
    exception = e;
  }

  var _ev;
  if (_e)
    _ev = eval(_e);

  if (exception) {
    // Handle WebAPIException and WebAPIError.
    if (exception instanceof tizen.WebAPIException || exception instanceof tizen.WebAPIError) {
      exception = exception.name;
      _ev = _ev.name;
    }

    if (typeof _e == 'undefined' || exception == _ev)
      testPassed(_a + ' threw exception ' + exception + '.');
    else
      testFailed(_a + ' should throw ' + (typeof _e == 'undefined' ? 'an exception' : _ev) +
                 '. Threw exception ' + exception + '.');
  } else if (typeof _av == 'undefined') {
    testFailed(_a + ' should throw ' + (typeof _e == 'undefined' ? 'an exception' : _ev) +
               '. Was undefined.');
  } else {
    testFailed(_a + ' should throw ' + (typeof _e == 'undefined' ? 'an exception' : _ev) +
               '. Was ' + _av + '.');
  }
}

function shouldHaveHadError(message)
{
  if (errorMessage) {
    if (!message)
      testPassed('Got expected error');
    else if (errorMessage.indexOf(message) !== -1)
      testPassed("Got expected error: '" + message + "'");
    else
      testFailed("Unexpexted error '" + message + "'");
  } else
    testFailed('Missing expexted error');
  errorMessage = undefined;
}

function isSuccessfullyParsed()
{
  // FIXME: Remove this and only report unexpected syntax errors.
  if (!errorMessage)
    successfullyParsed = true;
  shouldBeTrue('successfullyParsed');
  debug('<br /><span class="pass">TEST COMPLETE</span>');
}

function finishJSTest()
{
  wasFinishJSTestCalled = true;
  if (!self.wasPostTestScriptParsed)
    return;
  isSuccessfullyParsed();
}