boa_engine 0.17.0

Boa is a Javascript lexer, parser and compiler written in Rust. Currently, it has support for some of the language.
Documentation
use crate::{run_test_actions, JsValue, TestAction};
use indoc::indoc;

#[test]
fn apply() {
    run_test_actions([
        TestAction::run(indoc! {r#"
                var called = {};
                function f(n) { called.result = n };
                Reflect.apply(f, undefined, [42]);
            "#}),
        TestAction::assert_eq("called.result", 42),
    ]);
}

#[test]
fn construct() {
    run_test_actions([
        TestAction::run(indoc! {r#"
                var called = {};
                function f(n) { called.result = n };
                Reflect.construct(f, [42]);
            "#}),
        TestAction::assert_eq("called.result", 42),
    ]);
}

#[test]
fn define_property() {
    run_test_actions([
        TestAction::run(indoc! {r#"
                let obj = {};
                Reflect.defineProperty(obj, 'p', { value: 42 });
            "#}),
        TestAction::assert_eq("obj.p", 42),
    ]);
}

#[test]
fn delete_property() {
    run_test_actions([
        TestAction::run("let obj = { p: 42 };"),
        TestAction::assert("Reflect.deleteProperty(obj, 'p')"),
        TestAction::assert_eq("obj.p", JsValue::undefined()),
    ]);
}

#[test]
fn get() {
    run_test_actions([
        TestAction::run("let obj = { p: 42 };"),
        TestAction::assert_eq("Reflect.get(obj, 'p')", 42),
    ]);
}

#[test]
fn get_own_property_descriptor() {
    run_test_actions([
        TestAction::run("let obj = { p: 42 };"),
        TestAction::assert_eq("Reflect.getOwnPropertyDescriptor(obj, 'p').value", 42),
    ]);
}

#[test]
fn get_prototype_of() {
    run_test_actions([
        TestAction::run(indoc! {r#"
                function F() { this.p = 42 };
                let f = new F();
            "#}),
        TestAction::assert_eq("Reflect.getPrototypeOf(f).constructor.name", "F"),
    ]);
}

#[test]
fn has() {
    run_test_actions([
        TestAction::run("let obj = { p: 42 };"),
        TestAction::assert("Reflect.has(obj, 'p')"),
        TestAction::assert("!Reflect.has(obj, 'p2')"),
    ]);
}

#[test]
fn is_extensible() {
    run_test_actions([
        TestAction::run("let obj = { p: 42 };"),
        TestAction::assert("Reflect.isExtensible(obj)"),
    ]);
}

#[test]
fn own_keys() {
    run_test_actions([
        TestAction::run_harness(),
        TestAction::run("let obj = { p: 42 };"),
        TestAction::assert(indoc! {r#"
                arrayEquals(
                    Reflect.ownKeys(obj),
                    ["p"]
                )
            "#}),
    ]);
}

#[test]
fn prevent_extensions() {
    run_test_actions([
        TestAction::run("let obj = { p: 42 };"),
        TestAction::assert("Reflect.preventExtensions(obj)"),
        TestAction::assert("!Reflect.isExtensible(obj)"),
    ]);
}

#[test]
fn set() {
    run_test_actions([
        TestAction::run(indoc! {r#"
                let obj = {};
                Reflect.set(obj, 'p', 42);
            "#}),
        TestAction::assert_eq("obj.p", 42),
    ]);
}

#[test]
fn set_prototype_of() {
    run_test_actions([
        TestAction::run(indoc! {r#"
                function F() { this.p = 42 };
                let obj = {}
                Reflect.setPrototypeOf(obj, F);
            "#}),
        TestAction::assert_eq("Reflect.getPrototypeOf(obj).name", "F"),
    ]);
}