Upstream version 5.34.104.0
[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 "bindings/v8/DOMWrapperWorld.h"
35 #include "bindings/v8/ScriptValue.h"
36 #include "bindings/v8/V8Binding.h"
37 #include "bindings/v8/custom/V8PromiseCustom.h"
38
39 #include <gtest/gtest.h>
40 #include <v8.h>
41
42 namespace WebCore {
43
44 namespace {
45
46 class ScriptPromiseTest : public testing::Test {
47 public:
48     ScriptPromiseTest()
49         : m_isolate(v8::Isolate::GetCurrent())
50         , m_handleScope(m_isolate)
51         , m_context(m_isolate, v8::Context::New(m_isolate))
52         , m_contextScope(m_context.newLocal(m_isolate))
53     {
54     }
55
56     void SetUp()
57     {
58         v8::Handle<v8::Context> context(m_context.newLocal(m_isolate));
59         V8PerContextDataHolder::install(context, DOMWrapperWorld::current(m_isolate));
60         m_perContextData = V8PerContextData::create(context);
61         m_perContextData->init();
62     }
63
64     void TearDown()
65     {
66         m_perContextData.clear();
67     }
68
69     V8PromiseCustom::PromiseState state(ScriptPromise promise)
70     {
71         return V8PromiseCustom::getState(V8PromiseCustom::getInternal(promise.v8Value().As<v8::Object>()));
72     }
73
74 protected:
75     v8::Isolate* m_isolate;
76     v8::HandleScope m_handleScope;
77     ScopedPersistent<v8::Context> m_context;
78     v8::Context::Scope m_contextScope;
79     OwnPtr<V8PerContextData> m_perContextData;
80 };
81
82 TEST_F(ScriptPromiseTest, castPromise)
83 {
84     ScriptPromise promise = ScriptPromise::createPending();
85     ScriptPromise newPromise(ScriptValue(promise.v8Value(), m_isolate));
86
87     ASSERT_FALSE(promise.hasNoValue());
88     EXPECT_EQ(V8PromiseCustom::Pending, state(promise));
89     EXPECT_EQ(promise.v8Value(), newPromise.v8Value());
90 }
91
92 TEST_F(ScriptPromiseTest, castNonPromise)
93 {
94     ScriptValue value = ScriptValue(v8String(m_isolate, "hello"), m_isolate);
95     ScriptPromise promise1(ScriptValue(value.v8Value(), m_isolate));
96     ScriptPromise promise2(ScriptValue(value.v8Value(), m_isolate));
97
98     ASSERT_FALSE(promise1.hasNoValue());
99     ASSERT_FALSE(promise2.hasNoValue());
100
101     ASSERT_TRUE(V8PromiseCustom::isPromise(promise1.v8Value(), m_isolate));
102     ASSERT_TRUE(V8PromiseCustom::isPromise(promise2.v8Value(), m_isolate));
103
104     EXPECT_EQ(V8PromiseCustom::Fulfilled, state(promise1));
105     EXPECT_EQ(V8PromiseCustom::Fulfilled, state(promise2));
106     EXPECT_NE(promise1.v8Value(), promise2.v8Value());
107 }
108
109 } // namespace
110
111 } // namespace WebCore