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

Unified Diff: Source/core/html/parser/HTMLEntityParserTest.cpp

Issue 1308573006: [reland] SegmentedString::push() should always push a char in front (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test / accept yosin@ suggestion Created 5 years, 4 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/html/parser/HTMLEntityParser.cpp ('k') | Source/platform/text/SegmentedString.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/HTMLEntityParserTest.cpp
diff --git a/Source/core/html/parser/HTMLEntityParserTest.cpp b/Source/core/html/parser/HTMLEntityParserTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..6f393e324b45b6f1729fc083f27b5ad1063840db
--- /dev/null
+++ b/Source/core/html/parser/HTMLEntityParserTest.cpp
@@ -0,0 +1,27 @@
+// Copyright 2015 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/html/parser/HTMLEntityParser.h"
+
+#include <gtest/gtest.h>
+
+namespace blink {
+
+TEST(HTMLEntityParserTest, ConsumeHTMLEntityIncomplete)
+{
+ String original("am"); // Incomplete by purpose.
+ SegmentedString src(original);
+
+ DecodedHTMLEntity entity;
+ bool notEnoughCharacters = false;
+ bool success = consumeHTMLEntity(src, entity, notEnoughCharacters);
+ EXPECT_TRUE(notEnoughCharacters);
+ EXPECT_FALSE(success);
+
+ // consumeHTMLEntity should recover the original SegmentedString state if failed.
+ EXPECT_EQ(original, src.toString());
+}
+
+} // namespace blink
« no previous file with comments | « Source/core/html/parser/HTMLEntityParser.cpp ('k') | Source/platform/text/SegmentedString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698