0b168258563e5b62a570070d4df071755f02c029
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / bindings / v8 / ScriptPromiseTest.cpp
1 /*
2  * Copyright (C) 2014 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "config.h"
32 #include "bindings/v8/ScriptPromise.h"
33
34 #include "RuntimeEnabledFeatures.h"
35 #include "bindings/v8/DOMWrapperWorld.h"
36 #include "bindings/v8/ScriptPromiseResolver.h"
37 #include "bindings/v8/ScriptValue.h"
38 #include "bindings/v8/V8Binding.h"
39 #include "bindings/v8/custom/V8PromiseCustom.h"
40
41 #include <gtest/gtest.h>
42 #include <v8.h>
43
44 namespace WebCore {
45
46 namespace {
47
48 void callback(const v8::FunctionCallbackInfo<v8::Value>& info) { }
49
50 class ScriptPromiseTest : public testing::Test {
51 public:
52     ScriptPromiseTest()
53         : m_isolate(v8::Isolate::GetCurrent())
54     {
55         m_scope = V8ExecutionScope::create(m_isolate);
56     }
57
58     ~ScriptPromiseTest()
59     {
60         // FIXME: We put this statement here to clear an exception from the isolate.
61         createClosure(callback, v8::Undefined(m_isolate), m_isolate);
62     }
63
64     V8PromiseCustom::PromiseState state(ScriptPromise promise)
65     {
66         return V8PromiseCustom::getState(V8PromiseCustom::getInternal(promise.v8Value().As<v8::Object>()));
67     }
68
69 protected:
70     v8::Isolate* m_isolate;
71
72 private:
73     OwnPtr<V8ExecutionScope> m_scope;
74 };
75
76 TEST_F(ScriptPromiseTest, constructFromNonPromise)
77 {
78     v8::TryCatch trycatch;
79     ScriptPromise promise(v8::Undefined(m_isolate), m_isolate);
80     ASSERT_TRUE(trycatch.HasCaught());
81     ASSERT_TRUE(promise.hasNoValue());
82 }
83
84 TEST_F(ScriptPromiseTest, castPromise)
85 {
86     if (RuntimeEnabledFeatures::scriptPromiseOnV8PromiseEnabled())
87         return;
88     ScriptPromise promise = ScriptPromiseResolver::create(m_isolate)->promise();
89     ScriptPromise newPromise = ScriptPromise::cast(ScriptValue(promise.v8Value(), m_isolate));
90
91     ASSERT_FALSE(promise.hasNoValue());
92     EXPECT_EQ(V8PromiseCustom::Pending, state(promise));
93     EXPECT_EQ(promise.v8Value(), newPromise.v8Value());
94 }
95
96 TEST_F(ScriptPromiseTest, castNonPromise)
97 {
98     if (RuntimeEnabledFeatures::scriptPromiseOnV8PromiseEnabled())
99         return;
100     ScriptValue value = ScriptValue(v8String(m_isolate, "hello"), m_isolate);
101     ScriptPromise promise1 = ScriptPromise::cast(ScriptValue(value.v8Value(), m_isolate));
102     ScriptPromise promise2 = ScriptPromise::cast(ScriptValue(value.v8Value(), m_isolate));
103
104     ASSERT_FALSE(promise1.hasNoValue());
105     ASSERT_FALSE(promise2.hasNoValue());
106
107     ASSERT_TRUE(V8PromiseCustom::isPromise(promise1.v8Value(), m_isolate));
108     ASSERT_TRUE(V8PromiseCustom::isPromise(promise2.v8Value(), m_isolate));
109
110     EXPECT_EQ(V8PromiseCustom::Fulfilled, state(promise1));
111     EXPECT_EQ(V8PromiseCustom::Fulfilled, state(promise2));
112     EXPECT_NE(promise1.v8Value(), promise2.v8Value());
113 }
114
115 } // namespace
116
117 } // namespace WebCore