summaryrefslogtreecommitdiffstats
path: root/js/src/tests/ecma_2/Statements/try-006.js
blob: 0a85200a152234bb0424249606733a34587d3aaf (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
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


/**
 *  File Name:          try-006.js
 *  ECMA Section:
 *  Description:        The try statement
 *
 *  Throw an exception from within a With block in a try block.  Verify
 *  that any expected exceptions are caught.
 *
 *  Author:             christine@netscape.com
 *  Date:               11 August 1998
 */
var SECTION = "try-006";
var VERSION = "ECMA_2";
var TITLE   = "The try statement";

startTest();
writeHeaderToLog( SECTION + " "+ TITLE);

/**
 *  This is the "check" function for test objects that will
 *  throw an exception.
 */
function throwException() {
  throw EXCEPTION_STRING +": " + this.valueOf();
}
var EXCEPTION_STRING = "Exception thrown:";

/**
 *  This is the "check" function for test objects that do not
 *  throw an exception
 */
function noException() {
  return this.valueOf();
}

/**
 *  Add test cases here
 */
TryWith( new TryObject( "hello", throwException, true ));
TryWith( new TryObject( "hola",  noException, false ));

/**
 *  Run the test.
 */

test();

/**
 *  This is the object that will be the "this" in a with block.
 */
function TryObject( value, fun, exception ) {
  this.value = value;
  this.exception = exception;

  this.valueOf = new Function ( "return this.value" );
  this.check = fun;
}

/**
 *  This function has the try block that has a with block within it.
 *  Test cases are added in this function.  Within the with block, the
 *  object's "check" function is called.  If the test object's exception
 *  property is true, we expect the result to be the exception value.
 *  If exception is false, then we expect the result to be the value of
 *  the object.
 */
function TryWith( object ) {
  try {
    with ( object ) {
      result = check();
    }
  } catch ( e ) {
    result = e;
  }

  new TestCase(
    SECTION,
    "TryWith( " + object.value +" )",
    (object.exception ? EXCEPTION_STRING +": " + object.valueOf() : object.valueOf()),
    result );
}