/tests/auto/qscriptjstestsuite/tests/ecma_3/Exceptions/15.11.1.1.js

https://bitbucket.org/ultra_iter/qt-vtl · JavaScript · 137 lines · 60 code · 20 blank · 57 comment · 1 complexity · fb09d6aa3d354e214ed00b42e857b1c3 MD5 · raw file

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4. *
  5. * The contents of this file are subject to the Mozilla Public License Version
  6. * 1.1 (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. * http://www.mozilla.org/MPL/
  9. *
  10. * Software distributed under the License is distributed on an "AS IS" basis,
  11. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. * for the specific language governing rights and limitations under the
  13. * License.
  14. *
  15. * The Original Code is JavaScript Engine testing utilities.
  16. *
  17. * The Initial Developer of the Original Code is
  18. * Netscape Communications Corp.
  19. * Portions created by the Initial Developer are Copyright (C) 2002
  20. * the Initial Developer. All Rights Reserved.
  21. *
  22. * Contributor(s):
  23. * joerg.schaible@gmx.de
  24. *
  25. * Alternatively, the contents of this file may be used under the terms of
  26. * either the GNU General Public License Version 2 or later (the "GPL"), or
  27. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28. * in which case the provisions of the GPL or the LGPL are applicable instead
  29. * of those above. If you wish to allow use of your version of this file only
  30. * under the terms of either the GPL or the LGPL, and not to allow others to
  31. * use your version of this file under the terms of the MPL, indicate your
  32. * decision by deleting the provisions above and replace them with the notice
  33. * and other provisions required by the GPL or the LGPL. If you do not delete
  34. * the provisions above, a recipient may use your version of this file under
  35. * the terms of any one of the MPL, the GPL or the LGPL.
  36. *
  37. * ***** END LICENSE BLOCK ***** */
  38. /*
  39. *
  40. * Date: 27 Nov 2002
  41. * SUMMARY: Ensuring normal function call of Error (ECMA-262 Ed.3 15.11.1.1).
  42. */
  43. //-----------------------------------------------------------------------------
  44. var gTestfile = '15.11.1.1.js';
  45. var UBound = 0;
  46. var BUGNUMBER = '';
  47. var summary = 'Ensuring normal function call of Error (ECMA-262 Ed.3 15.11.1.1)';
  48. var status = '';
  49. var statusitems = [];
  50. var actual = '';
  51. var actualvalues = [];
  52. var expect= '';
  53. var expectedvalues = [];
  54. var EMPTY_STRING = '';
  55. var EXPECTED_FORMAT = 0;
  56. function otherScope(msg)
  57. {
  58. return Error(msg);
  59. }
  60. status = inSection(1);
  61. var err1 = Error('msg1');
  62. actual = examineThis(err1, 'msg1');
  63. expect = EXPECTED_FORMAT;
  64. addThis();
  65. status = inSection(2);
  66. var err2 = otherScope('msg2');
  67. actual = examineThis(err2, 'msg2');
  68. expect = EXPECTED_FORMAT;
  69. addThis();
  70. status = inSection(3);
  71. var err3 = otherScope();
  72. actual = examineThis(err3, EMPTY_STRING);
  73. expect = EXPECTED_FORMAT;
  74. addThis();
  75. status = inSection(4);
  76. var err4 = eval("Error('msg4')");
  77. actual = examineThis(err4, 'msg4');
  78. expect = EXPECTED_FORMAT;
  79. addThis();
  80. //-----------------------------------------------------------------------------
  81. test();
  82. //-----------------------------------------------------------------------------
  83. /*
  84. * Searches err.toString() for err.name + ':' + err.message,
  85. * with possible whitespace on each side of the colon sign.
  86. *
  87. * We allow for no colon in case err.message was not provided by the user.
  88. * In such a case, SpiderMonkey and Rhino currently set err.message = '',
  89. * as allowed for by ECMA 15.11.4.3. This makes |pattern| work in this case.
  90. *
  91. * If this is ever changed to a non-empty string, e.g. 'undefined',
  92. * you may have to modify |pattern| to take that into account -
  93. *
  94. */
  95. function examineThis(err, msg)
  96. {
  97. var pattern = err.name + '\\s*:?\\s*' + msg;
  98. return err.toString().search(RegExp(pattern));
  99. }
  100. function addThis()
  101. {
  102. statusitems[UBound] = status;
  103. actualvalues[UBound] = actual;
  104. expectedvalues[UBound] = expect;
  105. UBound++;
  106. }
  107. function test()
  108. {
  109. enterFunc ('test');
  110. printBugNumber(BUGNUMBER);
  111. printStatus (summary);
  112. for (var i = 0; i < UBound; i++)
  113. {
  114. reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
  115. }
  116. exitFunc ('test');
  117. }