2021-01-10 21:59:07 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-04-20 10:27:15 -04:00
|
|
|
|
2019-12-05 15:30:20 -05:00
|
|
|
use std::process::Command;
|
2020-06-18 11:54:55 -04:00
|
|
|
use test_util::deno_cmd;
|
2019-12-05 15:30:20 -05:00
|
|
|
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
const BUILD_VARIANT: &str = "debug";
|
|
|
|
|
|
|
|
#[cfg(not(debug_assertions))]
|
|
|
|
const BUILD_VARIANT: &str = "release";
|
|
|
|
|
|
|
|
#[test]
|
2021-03-31 10:37:38 -04:00
|
|
|
// TODO: re-enable after adapting plugins to new op-layer
|
|
|
|
// see:
|
|
|
|
// - https://github.com/denoland/deno/pull/9843
|
|
|
|
// - https://github.com/denoland/deno/pull/9850
|
|
|
|
#[ignore]
|
2019-12-05 15:30:20 -05:00
|
|
|
fn basic() {
|
|
|
|
let mut build_plugin_base = Command::new("cargo");
|
|
|
|
let mut build_plugin =
|
|
|
|
build_plugin_base.arg("build").arg("-p").arg("test_plugin");
|
|
|
|
if BUILD_VARIANT == "release" {
|
|
|
|
build_plugin = build_plugin.arg("--release");
|
|
|
|
}
|
2020-03-03 17:09:13 -05:00
|
|
|
let build_plugin_output = build_plugin.output().unwrap();
|
|
|
|
assert!(build_plugin_output.status.success());
|
2019-12-05 15:30:20 -05:00
|
|
|
let output = deno_cmd()
|
2020-05-04 07:03:30 -04:00
|
|
|
.arg("run")
|
2019-12-05 15:30:20 -05:00
|
|
|
.arg("--allow-plugin")
|
2020-04-25 09:31:54 -04:00
|
|
|
.arg("--unstable")
|
2019-12-05 15:30:20 -05:00
|
|
|
.arg("tests/test.js")
|
|
|
|
.arg(BUILD_VARIANT)
|
|
|
|
.output()
|
|
|
|
.unwrap();
|
|
|
|
let stdout = std::str::from_utf8(&output.stdout).unwrap();
|
|
|
|
let stderr = std::str::from_utf8(&output.stderr).unwrap();
|
|
|
|
if !output.status.success() {
|
|
|
|
println!("stdout {}", stdout);
|
|
|
|
println!("stderr {}", stderr);
|
|
|
|
}
|
|
|
|
assert!(output.status.success());
|
2021-01-26 09:20:26 -05:00
|
|
|
let expected = "Hello from plugin.\nzero_copy[0]: test\nzero_copy[1]: 123\nzero_copy[2]: cba\nPlugin Sync Response: test\nHello from plugin.\nzero_copy[0]: test\nzero_copy[1]: 123\nzero_copy[2]: cba\nPlugin Async Response: test\n";
|
2019-12-05 15:30:20 -05:00
|
|
|
assert_eq!(stdout, expected);
|
|
|
|
assert_eq!(stderr, "");
|
|
|
|
}
|