Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(884)

Unified Diff: test/cctest/test-code-stub-assembler.cc

Issue 2573703002: Add PromiseReactionJobInfo to CSA (Closed)
Patch Set: fix test Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/code-stub-assembler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-code-stub-assembler.cc
diff --git a/test/cctest/test-code-stub-assembler.cc b/test/cctest/test-code-stub-assembler.cc
index 1c76f4cb6caf931b67d638b4f7ebe21098fa2879..8fb709eff8ae627e83475af7f2bb3814df96498d 100644
--- a/test/cctest/test-code-stub-assembler.cc
+++ b/test/cctest/test-code-stub-assembler.cc
@@ -2069,5 +2069,39 @@ TEST(PromiseSet) {
CHECK(!js_promise->has_handler());
}
+TEST(AllocatePromiseReactionJobInfo) {
+ Isolate* isolate(CcTest::InitIsolateOnce());
+
+ const int kNumParams = 1;
+ CodeAssemblerTester data(isolate, kNumParams);
+ CodeStubAssembler m(data.state());
+
+ Node* const context = m.Parameter(kNumParams + 2);
+ Node* const tasks = m.AllocateFixedArray(FAST_ELEMENTS, m.Int32Constant(1));
+ m.StoreFixedArrayElement(tasks, 0, m.UndefinedConstant());
+ Node* const deferred =
+ m.AllocateFixedArray(FAST_ELEMENTS, m.Int32Constant(1));
+ m.StoreFixedArrayElement(deferred, 0, m.UndefinedConstant());
+ Node* const info = m.AllocatePromiseReactionJobInfo(m.SmiConstant(1), tasks,
+ deferred, context);
+ m.Return(info);
+
+ Handle<Code> code = data.GenerateCode();
+ CHECK(!code.is_null());
+
+ FunctionTester ft(code, kNumParams);
+ Handle<Object> result =
+ ft.Call(isolate->factory()->undefined_value()).ToHandleChecked();
+ CHECK(result->IsPromiseReactionJobInfo());
+ Handle<PromiseReactionJobInfo> promise_info =
+ Handle<PromiseReactionJobInfo>::cast(result);
+ CHECK_EQ(Smi::FromInt(1), promise_info->value());
+ CHECK(promise_info->tasks()->IsFixedArray());
+ CHECK(promise_info->deferred()->IsFixedArray());
+ CHECK(promise_info->context()->IsContext());
+ CHECK(promise_info->debug_id()->IsUndefined(isolate));
+ CHECK(promise_info->debug_name()->IsUndefined(isolate));
+}
+
} // namespace internal
} // namespace v8
« no previous file with comments | « src/code-stub-assembler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698