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

Unified Diff: Source/core/html/track/BufferedLineReaderTest.cpp

Issue 64303004: Handle buffer boundaries in the WebVTT parser (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix compilation warning Created 7 years, 1 month 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/track/BufferedLineReader.cpp ('k') | Source/core/html/track/WebVTTParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/BufferedLineReaderTest.cpp
diff --git a/Source/core/html/track/BufferedLineReaderTest.cpp b/Source/core/html/track/BufferedLineReaderTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..9ef8d221cacf99568f76e0b4f42c56915a45cae5
--- /dev/null
+++ b/Source/core/html/track/BufferedLineReaderTest.cpp
@@ -0,0 +1,292 @@
+/*
+ * Copyright (C) 2013, Opera Software ASA. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ *
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following disclaimer
+ * in the documentation and/or other materials provided with the
+ * distribution.
+ * * Neither the name of Google Inc. nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "config.h"
+#include "core/html/track/BufferedLineReader.h"
+
+#include "wtf/text/CString.h"
+#include "wtf/text/WTFString.h"
+#include "wtf/unicode/CharacterNames.h"
+
+#include <gtest/gtest.h>
+
+using WebCore::BufferedLineReader;
+
+namespace {
+
+TEST(BufferedLineReader, Constructor)
+{
+ BufferedLineReader reader;
+ ASSERT_FALSE(reader.isAtEndOfStream());
+ String line;
+ ASSERT_FALSE(reader.getLine(line));
+}
+
+TEST(BufferedLineReader, EOSNoInput)
+{
+ BufferedLineReader reader;
+ String line;
+ ASSERT_FALSE(reader.getLine(line));
+ reader.setEndOfStream();
+ // No input observed, so still no line.
+ ASSERT_FALSE(reader.getLine(line));
+}
+
+TEST(BufferedLineReader, EOSInput)
+{
+ BufferedLineReader reader;
+ reader.append("A");
+ reader.setEndOfStream();
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "A");
+}
+
+TEST(BufferedLineReader, EOSMultipleReads_1)
+{
+ BufferedLineReader reader;
+ reader.append("A");
+ reader.setEndOfStream();
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "A");
+ // No more lines returned.
+ ASSERT_FALSE(reader.getLine(line));
+ ASSERT_FALSE(reader.getLine(line));
+}
+
+TEST(BufferedLineReader, EOSMultipleReads_2)
+{
+ BufferedLineReader reader;
+ reader.append("A\n");
+ reader.setEndOfStream();
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "A");
+ // No more lines returned.
+ ASSERT_FALSE(reader.getLine(line));
+ ASSERT_FALSE(reader.getLine(line));
+}
+
+TEST(BufferedLineReader, LineEndingCR)
+{
+ BufferedLineReader reader;
+ reader.append("X\rY");
+ reader.setEndOfStream();
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "X");
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "Y");
+}
+
+TEST(BufferedLineReader, LineEndingCR_EOS)
+{
+ BufferedLineReader reader;
+ reader.append("X\r");
+ reader.setEndOfStream();
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "X");
+ ASSERT_FALSE(reader.getLine(line));
+}
+
+TEST(BufferedLineReader, LineEndingLF)
+{
+ BufferedLineReader reader;
+ reader.append("X\nY");
+ reader.setEndOfStream();
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "X");
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "Y");
+}
+
+TEST(BufferedLineReader, LineEndingLF_EOS)
+{
+ BufferedLineReader reader;
+ reader.append("X\n");
+ reader.setEndOfStream();
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "X");
+ ASSERT_FALSE(reader.getLine(line));
+}
+
+TEST(BufferedLineReader, LineEndingCRLF)
+{
+ BufferedLineReader reader;
+ reader.append("X\r\nY");
+ reader.setEndOfStream();
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "X");
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "Y");
+}
+
+TEST(BufferedLineReader, LineEndingCRLF_EOS)
+{
+ BufferedLineReader reader;
+ reader.append("X\r\n");
+ reader.setEndOfStream();
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "X");
+ ASSERT_FALSE(reader.getLine(line));
+}
+
+enum LineBreakType {
+ Cr,
+ Lf,
+ CrLf
+};
+
+String LineBreakString(LineBreakType type)
+{
+ static const char breakStrings[] = "\r\n";
+ return String(type == Lf ? breakStrings + 1 : breakStrings, type == CrLf ? 2 : 1);
+}
+
+String MakeTestData(const char** lines, const LineBreakType* breaks, int count)
+{
+ StringBuilder builder;
+ for (int i = 0; i < count; ++i) {
+ builder.append(lines[i]);
+ builder.append(LineBreakString(breaks[i]));
+ }
+ return builder.toString();
+}
+
+const size_t blockSizes[] = { 64, 32, 16, 8, 4, 2, 1, 3, 5, 7, 9, 11, 13, 17, 19, 23 };
+
+TEST(BufferedLineReader, BufferSizes)
+{
+ const char* lines[] = {
+ "aaaaaaaaaaaaaaaa",
+ "bbbbbbbbbb",
+ "ccccccccccccc",
+ "",
+ "dddddd",
+ "",
+ "eeeeeeeeee"
+ };
+ const LineBreakType breaks[] = { Lf, Lf, Lf, Lf, Lf, Lf, Lf };
+ const size_t numTestLines = WTF_ARRAY_LENGTH(lines);
+ COMPILE_ASSERT(numTestLines == WTF_ARRAY_LENGTH(breaks), DifferentLengths_lines_and_breaks);
+ String data = MakeTestData(lines, breaks, numTestLines);
+
+ for (size_t k = 0; k < WTF_ARRAY_LENGTH(blockSizes); ++k) {
+ size_t lineCount = 0;
+ BufferedLineReader reader;
+ size_t blockSize = blockSizes[k];
+ for (size_t i = 0; i < data.length(); i += blockSize) {
+ reader.append(data.substring(i, blockSize));
+
+ String line;
+ while (reader.getLine(line)) {
+ ASSERT_LT(lineCount, numTestLines);
+ ASSERT_EQ(line, lines[lineCount++]);
+ }
+ }
+ ASSERT_EQ(lineCount, numTestLines);
+ }
+}
+
+TEST(BufferedLineReader, BufferSizesMixedEndings)
+{
+ const char* lines[] = {
+ "aaaaaaaaaaaaaaaa",
+ "bbbbbbbbbb",
+ "ccccccccccccc",
+ "",
+ "dddddd",
+ "eeeeeeeeee",
+ "fffffffffffffffffff"
+ };
+ const LineBreakType breaks[] = { Cr, Lf, CrLf, Cr, Lf, CrLf, Lf };
+ const size_t numTestLines = WTF_ARRAY_LENGTH(lines);
+ COMPILE_ASSERT(numTestLines == WTF_ARRAY_LENGTH(breaks), DifferentLengths_lines_and_breaks);
+ String data = MakeTestData(lines, breaks, numTestLines);
+
+ for (size_t k = 0; k < WTF_ARRAY_LENGTH(blockSizes); ++k) {
+ size_t lineCount = 0;
+ BufferedLineReader reader;
+ size_t blockSize = blockSizes[k];
+ for (size_t i = 0; i < data.length(); i += blockSize) {
+ reader.append(data.substring(i, blockSize));
+
+ String line;
+ while (reader.getLine(line)) {
+ ASSERT_LT(lineCount, numTestLines);
+ ASSERT_EQ(line, lines[lineCount++]);
+ }
+ }
+ ASSERT_EQ(lineCount, numTestLines);
+ }
+}
+
+TEST(BufferedLineReader, BufferBoundaryInCRLF_1)
+{
+ BufferedLineReader reader;
+ reader.append("X\r");
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "X");
+ reader.append("\n");
+ ASSERT_FALSE(reader.getLine(line));
+}
+
+TEST(BufferedLineReader, BufferBoundaryInCRLF_2)
+{
+ BufferedLineReader reader;
+ reader.append("X\r");
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "X");
+ ASSERT_FALSE(reader.getLine(line));
+ reader.append("\n");
+ ASSERT_FALSE(reader.getLine(line));
+ reader.append("Y\n");
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line, "Y");
+}
+
+TEST(BufferedLineReader, NormalizedNUL)
+{
+ BufferedLineReader reader;
+ reader.append(String("X\0Y\n", 4));
+ String line;
+ ASSERT_TRUE(reader.getLine(line));
+ ASSERT_EQ(line[1], WTF::Unicode::replacementCharacter);
+}
+
+} // namespace
« no previous file with comments | « Source/core/html/track/BufferedLineReader.cpp ('k') | Source/core/html/track/WebVTTParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698