nashorn/test/script/sandbox/interfaceimpl.js
author twisti
Wed, 11 Nov 2015 14:40:38 -1000
changeset 34173 01bb07d23a5b
parent 29758 cb8621d74d60
permissions -rw-r--r--
8141133: [JVMCI] crash during safepoint deopt if rethrow_exception is set Reviewed-by: twisti Contributed-by: Gilles Duboscq <gilles.m.duboscq@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16221
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
     1
/*
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
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: 16221
diff changeset
     4
 *
16221
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
     7
 * published by the Free Software Foundation.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 16221
diff changeset
     8
 *
16221
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    13
 * accompanied this code).
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 16221
diff changeset
    14
 *
16221
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
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: 16221
diff changeset
    18
 *
16221
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    21
 * questions.
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    22
 */
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    23
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    24
/**
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    25
 * Check that user defined interface can be implemented.
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    26
 *
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    27
 * @test
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    28
 * @run
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    29
 * @security
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    30
 */
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    31
29758
cb8621d74d60 8076646: nashorn tests should avoid using package names used by nashorn sources
sundar
parents: 24778
diff changeset
    32
var Window = Java.type("jdk.nashorn.api.scripting.test.Window");
cb8621d74d60 8076646: nashorn tests should avoid using package names used by nashorn sources
sundar
parents: 24778
diff changeset
    33
var WindowEventHandler = Java.type("jdk.nashorn.api.scripting.test.WindowEventHandler");
16221
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    34
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    35
var w = new Window();
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    36
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    37
var loadedFuncReached = false;
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    38
// try function to SAM converter
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    39
w.onload = function() {
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    40
    loadedFuncReached = true;
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    41
    return true;
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    42
}
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    43
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    44
w.onload.loaded();
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    45
if (! loadedFuncReached) {
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    46
    fail("Interface method impl. not called");
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    47
}
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    48
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    49
// reset
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    50
loadedFuncReached = false;
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    51
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    52
// try direct interface implementation
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    53
w.onload = new WindowEventHandler() {
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    54
    loaded: function() {
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    55
        loadedFuncReached = true;
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    56
        return true;
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    57
    }
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    58
};
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    59
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    60
w.onload.loaded();
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    61
if (! loadedFuncReached) {
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    62
    fail("Interface method impl. not called");
38ac51eba133 8007715: Make sure that not all tests run with AllPermission
sundar
parents:
diff changeset
    63
}