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

rhino1.7.7.testsrc.org.mozilla.javascript.tests.ExternalArrayTest Maven / Gradle / Ivy

Go to download

Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically embedded into Java applications to provide scripting to end users.

There is a newer version: 1.7.15
Show newest version
package org.mozilla.javascript.tests;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.mozilla.javascript.Context;
import org.mozilla.javascript.ExternalArrayData;
import org.mozilla.javascript.Scriptable;
import org.mozilla.javascript.ScriptableObject;
import org.mozilla.javascript.tools.shell.Global;
import org.mozilla.javascript.typedarrays.NativeFloat64Array;
import org.mozilla.javascript.typedarrays.NativeInt16Array;
import org.mozilla.javascript.typedarrays.NativeInt32Array;

import java.io.FileReader;
import java.io.IOException;

import static org.junit.Assert.assertFalse;

public class ExternalArrayTest
{
    private Context cx;
    private Scriptable root;

    @Before
    public void init()
    {
        cx = Context.enter();
        cx.setLanguageVersion(Context.VERSION_1_8);
        cx.setGeneratingDebug(true);

        Global global = new Global(cx);
        root = cx.newObject(global);
    }

    @After
    public void terminate()
    {
        Context.exit();
    }

    @Test
    public void testRegularArray()
    {
        Scriptable a = cx.newArray(root, 10);
        root.put("testArray", root, a);
        root.put("testArrayLength", root, 10);
        root.put("regularArray", root, true);
        runScript("testsrc/jstests/extensions/external-array-test.js", 1);
    }

    @Test
    public void testIntArray()
    {
        ScriptableObject a = (ScriptableObject)cx.newObject(root);
        TestIntArray l = new TestIntArray(10);
        a.setExternalArrayData(l);
        for (int i = 0; i < 10; i++) {
            l.setArrayElement(i, i);
        }
        root.put("testArray", root, a);
        root.put("testArrayLength", root, 10);
        root.put("regularArray", root, false);
        runScript("testsrc/jstests/extensions/external-array-test.js", 1);
    }

    @Test
    public void testIntArrayThenRemove()
    {
        ScriptableObject a = (ScriptableObject)cx.newObject(root);
        // Set the external array data
        TestIntArray l = new TestIntArray(10);
        a.setExternalArrayData(l);
        for (int i = 0; i < 10; i++) {
            l.setArrayElement(i, i);
        }
        root.put("testArray", root, a);
        root.put("testArrayLength", root, 10);
        root.put("regularArray", root, false);
        runScript("testsrc/jstests/extensions/external-array-test.js", 1);

        // Clear it and test again. When cleared, object should go back to behaving like a
        // regular JavaScript object.
        a.delete("stringField");
        a.delete("intField");
        a.setExternalArrayData(null);
        for (int i = 0; i < 10; i++) {
            a.put(i, a, i);
        }
        a.defineProperty("length", 10, ScriptableObject.DONTENUM);
        root.put("regularArray", root, true);
        runScript("testsrc/jstests/extensions/external-array-test.js", 1);
    }

    @Test
    public void testNativeIntArray()
    {
        ScriptableObject a = (ScriptableObject)cx.newObject(root);
        NativeInt32Array l = new NativeInt32Array(10);
        a.setExternalArrayData(l);

        root.put("testArray", root, a);
        root.put("testArrayLength", root, 10);
        root.put("regularArray", root, false);
        runScript("testsrc/jstests/extensions/external-array-test.js", 1);
    }

    @Test
    public void testNativeShortArray()
    {
        ScriptableObject a = (ScriptableObject)cx.newObject(root);
        NativeInt16Array l = new NativeInt16Array(10);
        a.setExternalArrayData(l);

        root.put("testArray", root, a);
        root.put("testArrayLength", root, 10);
        root.put("regularArray", root, false);
        runScript("testsrc/jstests/extensions/external-array-test.js", 1);
    }

    @Test
    public void testNativeDoubleArray()
    {
        ScriptableObject a = (ScriptableObject)cx.newObject(root);
        NativeFloat64Array l = new NativeFloat64Array(10);
        a.setExternalArrayData(l);

        root.put("testArray", root, a);
        root.put("testArrayLength", root, 10);
        root.put("regularArray", root, false);
        runScript("testsrc/jstests/extensions/external-array-test.js", 1);
    }

    private void runScript(String script, int opt)
    {
        try {
            cx.setOptimizationLevel(opt);
            FileReader rdr = new FileReader(script);

            try {
                cx.evaluateReader(root, rdr, script, 1, null);
            } finally {
                rdr.close();
            }
        } catch (IOException ioe) {
            assertFalse("I/O Error: " + ioe, true);
        }
    }

    private static class TestIntArray
        implements ExternalArrayData
    {
        private int[] elements;

        public TestIntArray(int length)
        {
            elements = new int[length];
        }

        @Override
        public Object getArrayElement(int index)
        {
            return elements[index];
        }

        @Override
        public void setArrayElement(int index, Object value)
        {
            elements[index] = (int)Context.toNumber(value);
        }

        @Override
        public int getArrayLength()
        {
            return elements.length;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy