File: exceptions.js

package info (click to toggle)
kjs 5.103.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,020 kB
  • sloc: cpp: 36,704; javascript: 5,079; yacc: 790; perl: 191; sh: 52; makefile: 7
file content (141 lines) | stat: -rw-r--r-- 2,568 bytes parent folder | download | duplicates (2)
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
function shouldBe(a, b, c)
{
  if ( a == b )
   debug(c+" .......... PASS");
  else
   debug(c+" .......... FAIL");
}

function testThrow()
{
  var caught = false;
  try {
    throw 99;
  } catch (e) {
    caught = true;
  }
  shouldBe(caught, true, "testing throw()");
}

// same as above but lacking a semicolon after throw
function testThrow2()
{
  var caught = false;
  try {
    throw 99
  } catch (e) {
    caught = true;
  }
  shouldBe(caught, true, "testing throw()");
}

function testReferenceError()
{
  var err = "noerror";
  var caught = false;
  try {
    var dummy = nonexistant; // throws reference error
  } catch (e) {
    caught = true;
    err = e.name;
  }
  // test err
  shouldBe(caught, true, "ReferenceError");
}

function testFunctionErrorHelper()
{
   var a = b;  // throws reference error
}

function testFunctionError()
{
  var caught = false;
  try {
    testFunctionErrorHelper();
  } catch (e) {
    caught = true;
  }
  shouldBe(caught, true, "error propagation in functions");
}

function testMathFunctionError()
{
  var caught = false;
  try {
    Math();
  } catch (e) {
    debug("catch");
    caught = true;
  } finally {
    debug("finally");
  }
  shouldBe(caught, true, "Math() error");
}

function testWhileAbortion()
{
  var caught = 0;
  try { 
    while (a=b, 1) { 	// "endless error" in condition
      ;
    }
  } catch (e) {
    caught++;
  }

  try { 
    while (1) {
      var a = b;	// error in body
    }
  } catch (e) {
    caught++;
  }
  shouldBe(caught, 2, "Abort while() on error");
}

function testCrashes()
{
    var caught = 0;
    // prefix node returned an invalid object in case of an error
    try {
	eval("!--D()");
    } catch(e) {
	++caught;
    }
    try {
	eval("--D() + ''");
    } catch(e) {
	++caught;
    }
    shouldBe(caught, 2, "no crashes");
}

function testVariable()
{
    try {
	throw 1;
    } catch (x) { // local to catch-block?
	var x = 2;
	var y = 3;
	z = 4;
	shouldBe(x, 2, "exception variable 1");
	shouldBe(y, 3, "exception variable 2");
	shouldBe(z, 4, "exception variable 3");
    }
    // IE and Firefox disagree on this one
    var pass = typeof x == "undefined" || x == 2;
    shouldBe(pass, true, "out-of-scope exception variable 1");
    shouldBe(y, 3, "out-of-scope exception variable 2");
    shouldBe(z, 4, "out-of-scope exception variable 3");
}

debug("Except a lot of errors. They should all be caught and lead to PASS");
testThrow();
testThrow2();
testReferenceError();
testFunctionError();
testMathFunctionError();
testWhileAbortion();
testCrashes();
testVariable();