rt/vm/src/test/java/org/apidesign/vm4brwsr/ImplementExternalInterfaceTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 28 May 2014 13:38:29 +0200
branchclosure
changeset 1610 a6f807104d8e
parent 1587 rt/vm/src/test/java/org/apidesign/vm4brwsr/ResourcesWithExtensionsTest.java@bf08bd96d408
child 1611 d0df418a5993
permissions -rw-r--r--
Make sure Object is always available in each VM and each extension.
jaroslav@106
     1
/**
jaroslav@106
     2
 * Back 2 Browser Bytecode Translator
jaroslav@106
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@106
     4
 *
jaroslav@106
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@106
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@106
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@106
     8
 *
jaroslav@106
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@106
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@106
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@106
    12
 * GNU General Public License for more details.
jaroslav@106
    13
 *
jaroslav@106
    14
 * You should have received a copy of the GNU General Public License
jaroslav@106
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@106
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@106
    17
 */
jaroslav@22
    18
package org.apidesign.vm4brwsr;
jaroslav@0
    19
jaroslav@1497
    20
import javax.script.ScriptEngine;
jaroslav@789
    21
import org.testng.annotations.AfterClass;
jaroslav@103
    22
import org.testng.annotations.BeforeClass;
jaroslav@0
    23
import org.testng.annotations.Test;
jaroslav@0
    24
jaroslav@1610
    25
/** Tests whether private impl can implement public interface method
jaroslav@1610
    26
 * from another extension.
jaroslav@0
    27
 *
jaroslav@0
    28
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@0
    29
 */
jaroslav@1610
    30
public class ImplementExternalInterfaceTest {
jaroslav@1497
    31
    @Test public void checkHello() throws Exception {
jaroslav@1610
    32
        String exp = "Hello!";
jaroslav@1493
    33
        
jaroslav@1610
    34
        code.assertExec("Can extension implement class from another extension",
jaroslav@1610
    35
            ImplementFactory.class, "hello__Ljava_lang_String_2", 
jaroslav@1493
    36
            exp
jaroslav@291
    37
        );
jaroslav@291
    38
    }
jaroslav@1519
    39
jaroslav@708
    40
    private static TestVM code;
jaroslav@103
    41
    
jaroslav@103
    42
    @BeforeClass 
jaroslav@789
    43
    public static void compileTheCode() throws Exception {
jaroslav@103
    44
        StringBuilder sb = new StringBuilder();
jaroslav@1497
    45
        ScriptEngine[] eng = { null };
jaroslav@1497
    46
        code = TestVM.compileClassAsExtension(sb, eng, 
jaroslav@1610
    47
            "org/apidesign/vm4brwsr/ImplementInterface", null, null
jaroslav@1497
    48
        );
jaroslav@1610
    49
        code = TestVM.compileClassesAsExtension(sb, eng, null, null,
jaroslav@1610
    50
            "org/apidesign/vm4brwsr/ImplementFactory", 
jaroslav@1610
    51
            "org/apidesign/vm4brwsr/ImplementFactory$Impl"
jaroslav@1496
    52
        );
jaroslav@2
    53
    }
jaroslav@789
    54
    @AfterClass
jaroslav@789
    55
    public static void releaseTheCode() {
jaroslav@789
    56
        code = null;
jaroslav@789
    57
    }
jaroslav@0
    58
}