Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / web / tests / Canvas2DLayerBridgeTest.cpp
1 /*
2  * Copyright (C) 2011 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
6  * are met:
7  * 1.  Redistributions of source code must retain the above copyright
8  *     notice, this list of conditions and the following disclaimer.
9  * 2.  Redistributions in binary form must reproduce the above copyright
10  *     notice, this list of conditions and the following disclaimer in the
11  *     documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16  * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
17  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #include "config.h"
26
27 #include "platform/graphics/Canvas2DLayerBridge.h"
28
29 #include "SkDeferredCanvas.h"
30 #include "SkSurface.h"
31 #include "platform/graphics/ImageBuffer.h"
32 #include "public/platform/Platform.h"
33 #include "public/platform/WebGraphicsContext3DProvider.h"
34 #include "public/platform/WebThread.h"
35 #include "third_party/skia/include/core/SkDevice.h"
36 #include "web/tests/MockWebGraphicsContext3D.h"
37 #include "wtf/RefPtr.h"
38
39 #include <gmock/gmock.h>
40 #include <gtest/gtest.h>
41
42 using namespace WebCore;
43 using namespace blink;
44 using testing::InSequence;
45 using testing::Return;
46 using testing::Test;
47
48 namespace {
49
50 class MockCanvasContext : public MockWebGraphicsContext3D {
51 public:
52     MOCK_METHOD0(flush, void(void));
53     MOCK_METHOD0(createTexture, unsigned(void));
54     MOCK_METHOD1(deleteTexture, void(unsigned));
55 };
56
57 class MockWebGraphicsContext3DProvider : public WebGraphicsContext3DProvider {
58 public:
59     MockWebGraphicsContext3DProvider(WebGraphicsContext3D* context3d)
60         : m_context3d(context3d) { }
61
62     WebGraphicsContext3D* context3d()
63     {
64         return m_context3d;
65     }
66
67     GrContext* grContext()
68     {
69         return 0;
70     }
71
72 private:
73     WebGraphicsContext3D* m_context3d;
74 };
75
76 class Canvas2DLayerBridgePtr {
77 public:
78     Canvas2DLayerBridgePtr(PassRefPtr<Canvas2DLayerBridge> layerBridge)
79         : m_layerBridge(layerBridge) { }
80
81     ~Canvas2DLayerBridgePtr()
82     {
83         m_layerBridge->beginDestruction();
84     }
85
86     Canvas2DLayerBridge* operator->() { return m_layerBridge.get(); }
87     Canvas2DLayerBridge* get() { return m_layerBridge.get(); }
88
89 private:
90     RefPtr<Canvas2DLayerBridge> m_layerBridge;
91 };
92
93 } // namespace
94
95 class Canvas2DLayerBridgeTest : public Test {
96 protected:
97     void fullLifecycleTest()
98     {
99         MockCanvasContext mainMock;
100         OwnPtr<MockWebGraphicsContext3DProvider> mainMockProvider = adoptPtr(new MockWebGraphicsContext3DProvider(&mainMock));
101         OwnPtr<SkDeferredCanvas> canvas = adoptPtr(SkDeferredCanvas::Create(SkSurface::NewRasterPMColor(300, 150)));
102
103         ::testing::Mock::VerifyAndClearExpectations(&mainMock);
104
105         {
106             Canvas2DLayerBridgePtr bridge(adoptRef(new Canvas2DLayerBridge(mainMockProvider.release(), canvas.release(), 0, NonOpaque)));
107
108             ::testing::Mock::VerifyAndClearExpectations(&mainMock);
109
110             EXPECT_CALL(mainMock, flush());
111             unsigned textureId = bridge->getBackingTexture();
112             EXPECT_EQ(textureId, 0u);
113
114             ::testing::Mock::VerifyAndClearExpectations(&mainMock);
115         } // bridge goes out of scope here
116
117         ::testing::Mock::VerifyAndClearExpectations(&mainMock);
118     }
119 };
120
121 namespace {
122
123 TEST_F(Canvas2DLayerBridgeTest, testFullLifecycleSingleThreaded)
124 {
125     fullLifecycleTest();
126 }
127
128 } // namespace