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

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

Issue 2571663002: [promises] Refactor CreatePromise (Closed)
Patch Set: rename to allocatejspromise 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 b4b9e7b55b2ea5b41c177ec11838869b10bfb89a..1c76f4cb6caf931b67d638b4f7ebe21098fa2879 100644
--- a/test/cctest/test-code-stub-assembler.cc
+++ b/test/cctest/test-code-stub-assembler.cc
@@ -1999,5 +1999,75 @@ TEST(IsPromiseHookEnabled) {
CHECK_EQ(isolate->heap()->false_value(), *result);
}
+TEST(AllocateJSPromise) {
+ 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 promise = m.AllocateJSPromise(context);
+ m.Return(promise);
+
+ 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->IsJSPromise());
+}
+
+TEST(PromiseInit) {
+ 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 promise = m.AllocateJSPromise(context);
+ m.PromiseInit(promise);
+ m.Return(promise);
+
+ 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->IsJSPromise());
+ Handle<JSPromise> js_promise = Handle<JSPromise>::cast(result);
+ CHECK_EQ(kPromisePending, js_promise->status());
+ CHECK_EQ(isolate->heap()->undefined_value(), js_promise->result());
+ CHECK(!js_promise->has_handler());
+}
+
+TEST(PromiseSet) {
+ 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 promise = m.AllocateJSPromise(context);
+ m.PromiseSet(promise, m.SmiConstant(kPromisePending), m.SmiConstant(1));
+ m.Return(promise);
+
+ 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->IsJSPromise());
+ Handle<JSPromise> js_promise = Handle<JSPromise>::cast(result);
+ CHECK_EQ(kPromisePending, js_promise->status());
+ CHECK_EQ(Smi::FromInt(1), js_promise->result());
+ CHECK(!js_promise->has_handler());
+}
+
} // 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