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

Side by Side 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: Adding CORE_EXPORT per tasak@ suggestion Created 5 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/html/parser/HTMLEntityParser.cpp ('k') | Source/platform/text/SegmentedString.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "config.h"
6 #include "core/html/parser/HTMLEntityParser.h"
7
8 #include <gtest/gtest.h>
9
10 namespace blink {
11
12 TEST(HTMLEntityParserTest, ConsumeHTMLEntityIncomplete)
13 {
14 String original("am"); // Incomplete by purpose.
15 SegmentedString src(original);
16
17 DecodedHTMLEntity entity;
18 bool notEnoughCharacters;
19 bool success = consumeHTMLEntity(src, entity, notEnoughCharacters);
20 EXPECT_TRUE(notEnoughCharacters);
21 EXPECT_FALSE(success);
22
23 // consumeHTMLEntity should recover the original SegmentedString state if fa iled.
24 EXPECT_STREQ(original.ascii().data(), src.toString().ascii().data());
yosin_UTC9 2015/08/27 12:50:14 nit: EXPECT_EQ() can accept String. So, you can wr
25 }
26
27 } // namespace blink
OLDNEW
« 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