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

Unified Diff: Source/core/editing/SurroundingTextTest.cpp

Issue 307353002: Use Position instead of VisiblePosition for SurroundingText. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review comments Created 6 years, 6 months 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 | « Source/core/editing/SurroundingText.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/SurroundingTextTest.cpp
diff --git a/Source/core/editing/SurroundingTextTest.cpp b/Source/core/editing/SurroundingTextTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..cee97200f93ffaadec8cc8df4e04eb5323ecf8da
--- /dev/null
+++ b/Source/core/editing/SurroundingTextTest.cpp
@@ -0,0 +1,153 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+#include "core/editing/SurroundingText.h"
+
+#include "core/dom/Position.h"
+#include "core/dom/Range.h"
+#include "core/dom/Text.h"
+#include "core/editing/VisibleSelection.h"
+#include "core/html/HTMLElement.h"
+#include "core/testing/DummyPageHolder.h"
+#include <gtest/gtest.h>
+
+using namespace WebCore;
+
+namespace {
+
+class SurroundingTextTest : public ::testing::Test {
+protected:
+ Document& document() const { return m_dummyPageHolder->document(); }
+ void setHTML(const String&);
+ VisibleSelection select(int offset) { return select(offset, offset); }
+ VisibleSelection select(int start, int end);
+
+private:
+ virtual void SetUp() OVERRIDE;
+
+ OwnPtr<DummyPageHolder> m_dummyPageHolder;
+};
+
+void SurroundingTextTest::SetUp()
+{
+ m_dummyPageHolder = DummyPageHolder::create(IntSize(800, 600));
+}
+
+void SurroundingTextTest::setHTML(const String& content)
+{
+ document().body()->setInnerHTML(content, ASSERT_NO_EXCEPTION);
+}
+
+VisibleSelection SurroundingTextTest::select(int start, int end)
+{
+ Element* element = document().getElementById("selection");
+ VisibleSelection selection;
+ selection.setBase(Position(toText(element->firstChild()), start));
+ selection.setExtent(Position(toText(element->firstChild()), end));
+ return selection;
+}
+
+TEST_F(SurroundingTextTest, BasicCaretSelection)
+{
+ setHTML(String("<p id='selection'>foo bar</p>"));
+
+ {
+ VisibleSelection selection = select(0);
+ SurroundingText surroundingText(selection.start(), 1);
+
+ EXPECT_EQ("f", surroundingText.content());
+ EXPECT_EQ(0u, surroundingText.positionOffsetInContent());
+ }
+
+ {
+ VisibleSelection selection = select(0);
+ SurroundingText surroundingText(selection.start(), 5);
+
+ // maxlength/2 is used on the left and right.
+ EXPECT_EQ("foo", surroundingText.content().simplifyWhiteSpace());
+ EXPECT_EQ(1u, surroundingText.positionOffsetInContent());
+ }
+
+ {
+ VisibleSelection selection = select(0);
+ SurroundingText surroundingText(selection.start(), 42);
+
+ EXPECT_EQ("foo bar", surroundingText.content().simplifyWhiteSpace());
+ EXPECT_EQ(1u, surroundingText.positionOffsetInContent());
+ }
+
+ {
+ // FIXME: if the selection is at the end of the text, SurroundingText
+ // will return nothing.
+ VisibleSelection selection = select(7);
+ SurroundingText surroundingText(selection.start(), 42);
+
+ EXPECT_EQ(0u, surroundingText.content().length());
+ EXPECT_EQ(0u, surroundingText.positionOffsetInContent());
+ }
+
+ {
+ VisibleSelection selection = select(6);
+ SurroundingText surroundingText(selection.start(), 2);
+
+ EXPECT_EQ("ar", surroundingText.content());
+ EXPECT_EQ(1u, surroundingText.positionOffsetInContent());
+ }
+
+ {
+ VisibleSelection selection = select(6);
+ SurroundingText surroundingText(selection.start(), 42);
+
+ EXPECT_EQ("foo bar", surroundingText.content().simplifyWhiteSpace());
+ EXPECT_EQ(7u, surroundingText.positionOffsetInContent());
+ }
+}
+
+TEST_F(SurroundingTextTest, TreeCaretSelection)
+{
+ setHTML(String("<div>This is outside of <p id='selection'>foo bar</p> the selected node</div>"));
+
+ {
+ VisibleSelection selection = select(0);
+ SurroundingText surroundingText(selection.start(), 1);
+
+ EXPECT_EQ("f", surroundingText.content());
+ EXPECT_EQ(0u, surroundingText.positionOffsetInContent());
+ }
+
+ {
+ VisibleSelection selection = select(0);
+ SurroundingText surroundingText(selection.start(), 5);
+
+ EXPECT_EQ("foo", surroundingText.content().simplifyWhiteSpace());
+ EXPECT_EQ(1u, surroundingText.positionOffsetInContent());
+ }
+
+ {
+ VisibleSelection selection = select(0);
+ SurroundingText surroundingText(selection.start(), 1337);
+
+ EXPECT_EQ("This is outside of foo bar the selected node", surroundingText.content().simplifyWhiteSpace());
+ EXPECT_EQ(20u, surroundingText.positionOffsetInContent());
+ }
+
+ {
+ VisibleSelection selection = select(6);
+ SurroundingText surroundingText(selection.start(), 2);
+
+ EXPECT_EQ("ar", surroundingText.content());
+ EXPECT_EQ(1u, surroundingText.positionOffsetInContent());
+ }
+
+ {
+ VisibleSelection selection = select(6);
+ SurroundingText surroundingText(selection.start(), 1337);
+
+ EXPECT_EQ("This is outside of foo bar the selected node", surroundingText.content().simplifyWhiteSpace());
+ EXPECT_EQ(26u, surroundingText.positionOffsetInContent());
+ }
+}
+
+} // anonymous namespace
« no previous file with comments | « Source/core/editing/SurroundingText.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698