1 /*
2 * Copyright (C) 2012 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 *
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26 #include "config.h"
27
28 #include "core/rendering/RenderTableRow.h"
29
30 #include "core/dom/Document.h"
31 #include "core/frame/LocalFrame.h"
32 #include "public/web/WebFrame.h"
33 #include "public/web/WebView.h"
34 #include "web/WebLocalFrameImpl.h"
35 #include "web/tests/FrameTestHelpers.h"
36
37 #include <gtest/gtest.h>
38
39 using namespace blink;
40
41 namespace WebCore {
42
43 namespace {
44
45 class RenderTableRowDeathTest : public testing::Test {
46 protected:
SetUpTestCase()47 static void SetUpTestCase()
48 {
49 // It's unfortunate that we have to get the whole browser stack to test one RenderObject
50 // but the code needs it.
51 s_webViewHelper = new FrameTestHelpers::WebViewHelper();
52 s_webViewHelper->initializeAndLoad("about:blank");
53 s_webViewHelper->webView()->setFocus(true);
54 }
55
TearDownTestCase()56 static void TearDownTestCase()
57 {
58 delete s_webViewHelper;
59 }
60
document()61 static Document* document()
62 {
63 return toWebLocalFrameImpl(s_webViewHelper->webView()->mainFrame())->frame()->document();
64 }
65
SetUp()66 virtual void SetUp()
67 {
68 m_row = RenderTableRow::createAnonymous(document());
69 }
70
TearDown()71 virtual void TearDown()
72 {
73 m_row->destroy();
74 }
75
76 RenderTableRow* m_row;
77
78 private:
79 static FrameTestHelpers::WebViewHelper* s_webViewHelper;
80 };
81
82 FrameTestHelpers::WebViewHelper* RenderTableRowDeathTest::s_webViewHelper = 0;
83
TEST_F(RenderTableRowDeathTest,CanSetRow)84 TEST_F(RenderTableRowDeathTest, CanSetRow)
85 {
86 static const unsigned rowIndex = 10;
87 m_row->setRowIndex(rowIndex);
88 EXPECT_EQ(rowIndex, m_row->rowIndex());
89 }
90
TEST_F(RenderTableRowDeathTest,CanSetRowToMaxRowIndex)91 TEST_F(RenderTableRowDeathTest, CanSetRowToMaxRowIndex)
92 {
93 m_row->setRowIndex(maxRowIndex);
94 EXPECT_EQ(maxRowIndex, m_row->rowIndex());
95 }
96
97 // FIXME: Re-enable these tests once ASSERT_DEATH is supported for Android.
98 // See: https://bugs.webkit.org/show_bug.cgi?id=74089
99 #if !OS(ANDROID)
100
TEST_F(RenderTableRowDeathTest,CrashIfRowOverflowOnSetting)101 TEST_F(RenderTableRowDeathTest, CrashIfRowOverflowOnSetting)
102 {
103 ASSERT_DEATH(m_row->setRowIndex(maxRowIndex + 1), "");
104 }
105
TEST_F(RenderTableRowDeathTest,CrashIfSettingUnsetRowIndex)106 TEST_F(RenderTableRowDeathTest, CrashIfSettingUnsetRowIndex)
107 {
108 ASSERT_DEATH(m_row->setRowIndex(unsetRowIndex), "");
109 }
110
111 #endif
112
113 }
114
115 } // namespace WebCore
116