summaryrefslogtreecommitdiff
path: root/test/built-ins/Boolean/S15.6.1.1_A1_T3.js
blob: ab9b2a1b3398e3bd117e11fff90bb15395c2ce6f (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    Returns a boolean value (not a Boolean object) computed by
    ToBoolean(value)
esid: sec-terms-and-definitions-boolean-value
es5id: 15.6.1.1_A1_T3
description: Used various string values as argument
---*/

//CHECK#1
if (typeof Boolean("0") !== "boolean") {
  $ERROR('#1.1: typeof Boolean("0") should be "boolean", actual is "' + typeof Boolean("0") + '"');
}
if (Boolean("0") !== true) {
  $ERROR('#1.2: Boolean("0") should be true');
}

//CHECK#2
if (typeof Boolean("-1") !== "boolean") {
  $ERROR('#2.1: typeof Boolean("-1") should be "boolean", actual is "' + typeof Boolean("-1") + '"');
}
if (Boolean("-1") !== true) {
  $ERROR('#2.2: Boolean("-1") should be true');
}

//CHECK#3
if (typeof Boolean("1") !== "boolean") {
  $ERROR('#3.1: typeof Boolean("1") should be "boolean", actual is "' + typeof Boolean("1") + '"');
}
if (Boolean("1") !== true) {
  $ERROR('#3.2: Boolean("1") should be true');
}

//CHECK#4
if (typeof Boolean("false") !== "boolean") {
  $ERROR('#4.1: typeof Boolean("false") should be "boolean", actual is "' + typeof Boolean("false") + '"');
}
if (Boolean("false") !== true) {
  $ERROR('#4.2: Boolean("false") should be true');
}

//CHECK#5
if (typeof Boolean("true") !== "boolean") {
  $ERROR('#5.1: typeof Boolean("true") should be "boolean", actual is "' + typeof Boolean("true") + '"');
}
if (Boolean("true") !== true) {
  $ERROR('#5.2: Boolean("true") should be true');
}