nashorn/test/script/basic/optimistic_logical_check_type.js
author hannesw
Fri, 03 Feb 2017 13:28:00 +0100
changeset 43555 1bb10bccf057
parent 24778 2ff5d7041566
permissions -rw-r--r--
8173888: Test for JDK-8169481 causes stack overflows in parser tests Reviewed-by: jlaskey, sundar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     1
/*
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
     4
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     7
 * published by the Free Software Foundation.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
     8
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    13
 * accompanied this code).
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
    14
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
    18
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    21
 * questions.
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    22
 */
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    23
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    24
/**
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    25
 * @test
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
    26
 * @bug 8036987, 8037572
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    27
 * @summary Implement tests that checks static types in the compiled code
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    28
 * @run
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    29
 */
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    30
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    31
var inspect = Java.type("jdk.nashorn.test.tools.StaticTypeInspector").inspect
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    32
var a = 3, b = true, c = 0;
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    33
var x = { a: 2, b: undefined, c: true}
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    34
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    35
// Testing logical operators
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    36
//-- Global variable
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    37
print(inspect("cat" && "dog", "object AND object"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    38
print(inspect(b && a, "true AND non-falsey global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    39
print(inspect(a && b, "non-falsey global int AND true"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    40
print(inspect(x && b, "non-falsey object AND true"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    41
print(inspect(b && x, "true AND non-falsey object"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    42
print(inspect("cat" || "dog", "object OR object"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    43
print(inspect(b || a, "true OR non-falsey global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    44
print(inspect(a || b, "non-falsey global int OR true"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    45
print(inspect(x || b, "non-falsey object OR true"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    46
print(inspect(b || x, "true OR non-falsey object"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    47
print(inspect(!x.c || b, "false OR true"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    48
print(inspect(c && b, "falsey global int AND true"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    49
print(inspect(c || x.b, "falsey global int OR undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    50
print(inspect(!c || x.b, "logical not falsey global int OR undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    51
print(inspect(!b || x.b, "false OR undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    52
print(inspect(!b || c, "false OR falsey global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    53
print(inspect(!c || c, "logical not falsey global int OR falsey global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    54
 //--Local variable
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    55
print(inspect(x.b && a, "local undefined AND non-falsey global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    56
print(inspect(b && x.b, "true AND local undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    57
print(inspect(x.b && x.a, "local undefined AND non-falsey local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    58
print(inspect(x.b || b, "local undefined OR true"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    59
print(inspect(b || x.b, "true OR local undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    60
print(inspect(x.a && x.c, "non-falsey local int AND true"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    61
print(inspect(x.c && x.a, "true AND non-falsey local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    62
print(inspect(x.c && !!x.a, "true AND double logical not non-falsey local int "))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    63
print(inspect(!x.c && x.a, "false AND non-falsey local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    64
print(inspect(x.a || x.c, "non-falsey local int OR true"))
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
    65
print(inspect(!x.c || x.c, "false OR true"))