mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
Add tests for deno_sub_cb.
This commit is contained in:
parent
2443f7efee
commit
482fc3a2ce
3 changed files with 67 additions and 13 deletions
|
@ -144,17 +144,12 @@ void Pub(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
||||||
|
|
||||||
auto retbuf = d->cb(d, deno_buf{buf, buflen});
|
auto retbuf = d->cb(d, deno_buf{buf, buflen});
|
||||||
if (retbuf.data) {
|
if (retbuf.data) {
|
||||||
auto ab = v8::ArrayBuffer::New(d->isolate, retbuf.data, retbuf.len,
|
// TODO(ry) Support zero-copy.
|
||||||
v8::ArrayBufferCreationMode::kInternalized);
|
|
||||||
/*
|
|
||||||
// I'm slightly worried the above v8::ArrayBuffer construction leaks memory
|
|
||||||
// the following might be a safer way to do it.
|
|
||||||
auto ab = v8::ArrayBuffer::New(d->isolate, retbuf.len);
|
auto ab = v8::ArrayBuffer::New(d->isolate, retbuf.len);
|
||||||
auto contents = ab->GetContents();
|
memcpy(ab->GetContents().Data(), retbuf.data, retbuf.len);
|
||||||
memcpy(contents.Data(), retbuf.data, retbuf.len);
|
|
||||||
free(retbuf.data);
|
|
||||||
*/
|
|
||||||
args.GetReturnValue().Set(handle_scope.Escape(ab));
|
args.GetReturnValue().Set(handle_scope.Escape(ab));
|
||||||
|
} else {
|
||||||
|
args.GetReturnValue().Set(v8::Null(d->isolate));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -207,7 +202,8 @@ v8::StartupData MakeSnapshot(v8::StartupData* prev_natives_blob,
|
||||||
v8::Context::Scope context_scope(context);
|
v8::Context::Scope context_scope(context);
|
||||||
|
|
||||||
auto global = context->Global();
|
auto global = context->Global();
|
||||||
|
// TODO(ry) Add a global namespace object "deno" and move print, sub, and
|
||||||
|
// pub inside that object.
|
||||||
auto print_tmpl = v8::FunctionTemplate::New(isolate, Print);
|
auto print_tmpl = v8::FunctionTemplate::New(isolate, Print);
|
||||||
auto print_val = print_tmpl->GetFunction(context).ToLocalChecked();
|
auto print_val = print_tmpl->GetFunction(context).ToLocalChecked();
|
||||||
CHECK(
|
CHECK(
|
||||||
|
|
|
@ -1,18 +1,42 @@
|
||||||
// A simple runtime that doesn't involve typescript or protobufs to test
|
// A simple runtime that doesn't involve typescript or protobufs to test
|
||||||
// libdeno.
|
// libdeno.
|
||||||
const window = eval("this");
|
const window = eval("this");
|
||||||
window['foo'] = () => {
|
window["foo"] = () => {
|
||||||
deno_print("Hello world from foo");
|
deno_print("Hello world from foo");
|
||||||
return "foo";
|
return "foo";
|
||||||
}
|
};
|
||||||
|
|
||||||
function assert(cond) {
|
function assert(cond) {
|
||||||
if (!cond) throw Error("mock_runtime.js assert failed");
|
if (!cond) throw Error("mock_runtime.js assert failed");
|
||||||
}
|
}
|
||||||
|
|
||||||
function subabc() {
|
function subabc() {
|
||||||
deno_sub((msg) => {
|
deno_sub(msg => {
|
||||||
assert(msg instanceof ArrayBuffer);
|
assert(msg instanceof ArrayBuffer);
|
||||||
assert(msg.byteLength === 3);
|
assert(msg.byteLength === 3);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function typedArrayToArrayBuffer(ta) {
|
||||||
|
return ta.buffer.slice(ta.byteOffset, ta.byteOffset + ta.byteLength);
|
||||||
|
}
|
||||||
|
|
||||||
|
function pubReturnEmpty() {
|
||||||
|
const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
|
||||||
|
const ab = typedArrayToArrayBuffer(ui8);
|
||||||
|
let r = deno_pub(ab);
|
||||||
|
assert(r == null);
|
||||||
|
r = deno_pub(ab);
|
||||||
|
assert(r == null);
|
||||||
|
}
|
||||||
|
|
||||||
|
function pubReturnBar() {
|
||||||
|
const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
|
||||||
|
const ab = typedArrayToArrayBuffer(ui8);
|
||||||
|
const r = deno_pub(ab);
|
||||||
|
assert(r instanceof ArrayBuffer);
|
||||||
|
assert(r.byteLength === 3);
|
||||||
|
const rui8 = new Uint8Array(r);
|
||||||
|
const rstr = String.fromCharCode(...rui8);
|
||||||
|
assert(rstr === "bar");
|
||||||
|
}
|
||||||
|
|
|
@ -49,6 +49,40 @@ TEST(MockRuntimeTest, PubNoCallback) {
|
||||||
deno_dispose(d);
|
deno_dispose(d);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST(MockRuntimeTest, SubReturnEmpty) {
|
||||||
|
static int count = 0;
|
||||||
|
Deno* d = deno_new(NULL, [](Deno* _, deno_buf buf) {
|
||||||
|
count++;
|
||||||
|
EXPECT_EQ(static_cast<size_t>(3), buf.len);
|
||||||
|
// TODO(ry) buf.data should just be a char*.
|
||||||
|
char* data = reinterpret_cast<char*>(buf.data);
|
||||||
|
EXPECT_EQ(data[0], 'a');
|
||||||
|
EXPECT_EQ(data[1], 'b');
|
||||||
|
EXPECT_EQ(data[2], 'c');
|
||||||
|
return deno_buf{nullptr, 0};
|
||||||
|
});
|
||||||
|
EXPECT_TRUE(deno_load(d, "a.js", "pubReturnEmpty()"));
|
||||||
|
EXPECT_EQ(count, 2);
|
||||||
|
deno_dispose(d);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(MockRuntimeTest, SubReturnBar) {
|
||||||
|
static int count = 0;
|
||||||
|
Deno* d = deno_new(NULL, [](Deno* _, deno_buf buf) {
|
||||||
|
count++;
|
||||||
|
EXPECT_EQ(static_cast<size_t>(3), buf.len);
|
||||||
|
// TODO(ry) buf.data should just be a char*.
|
||||||
|
char* data = reinterpret_cast<char*>(buf.data);
|
||||||
|
EXPECT_EQ(data[0], 'a');
|
||||||
|
EXPECT_EQ(data[1], 'b');
|
||||||
|
EXPECT_EQ(data[2], 'c');
|
||||||
|
return strbuf("bar");
|
||||||
|
});
|
||||||
|
EXPECT_TRUE(deno_load(d, "a.js", "pubReturnBar()"));
|
||||||
|
EXPECT_EQ(count, 1);
|
||||||
|
deno_dispose(d);
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char** argv) {
|
int main(int argc, char** argv) {
|
||||||
testing::InitGoogleTest(&argc, argv);
|
testing::InitGoogleTest(&argc, argv);
|
||||||
deno_init();
|
deno_init();
|
||||||
|
|
Loading…
Add table
Reference in a new issue