All Downloads are FREE. Search and download functionalities are using the official Maven repository.

testsrc.org.mozilla.javascript.tests.DefineClassMapInheritance Maven / Gradle / Ivy

Go to download

A distribution of rhino which releases snapshots from a submodule folder containing forked sources.

The newest version!
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.javascript.tests;

import static org.junit.Assert.*;

import java.lang.reflect.InvocationTargetException;

import org.junit.Test;
import org.mozilla.javascript.Context;
import org.mozilla.javascript.ScriptableObject;

@SuppressWarnings("serial")
public class DefineClassMapInheritance {

    public static class Food extends ScriptableObject {
        @Override
        public String getClassName() {
            return getClass().getSimpleName();
        }
    }

    public static class Fruit extends Food {
    }

    public static class Vegetable extends Food {
    }

    @Test
    public void test() throws IllegalAccessException, InstantiationException,
            InvocationTargetException {
        Context cx = Context.enter();
        try {
            ScriptableObject scope = cx.initStandardObjects();

            // define two classes that share a parent prototype
            ScriptableObject.defineClass(scope, Fruit.class, false, true);
            ScriptableObject.defineClass(scope, Vegetable.class, false, true);

            assertEquals(Boolean.TRUE,
                    evaluate(cx, scope, "(new Fruit instanceof Food)"));
            assertEquals(Boolean.TRUE,
                    evaluate(cx, scope, "(new Vegetable instanceof Food)"));
        } finally {
            Context.exit();
        }
    }

    private static Object evaluate(Context cx, ScriptableObject scope,
            String source) {
        return cx.evaluateString(scope, source, "", 1, null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy