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

Unified Diff: third_party/WebKit/Source/core/html/parser/TextResourceDecoderFuzzer.cpp

Issue 2250263003: Move FuzzedDataProvider to //base and expose to blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move FuzzedDataProvider from platform to platform/testing (trybots previous) Created 4 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
Index: third_party/WebKit/Source/core/html/parser/TextResourceDecoderFuzzer.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/TextResourceDecoderFuzzer.cpp b/third_party/WebKit/Source/core/html/parser/TextResourceDecoderFuzzer.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..7bb309948be51fd61ea6cd797d6d7c786d1210ae
--- /dev/null
+++ b/third_party/WebKit/Source/core/html/parser/TextResourceDecoderFuzzer.cpp
@@ -0,0 +1,55 @@
+// Copyright 2016 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 "core/html/parser/TextResourceDecoder.h"
+
+#include "platform/testing/FuzzedDataProvider.h"
+#include "platform/testing/TestingPlatformSupport.h"
+#include "wtf/text/WTFString.h"
+#include <algorithm>
+
+namespace blink {
+
+class TextResourceDecoderForFuzzing : public TextResourceDecoder {
+public:
+ TextResourceDecoderForFuzzing(FuzzedDataProvider& fuzzedData)
+ : TextResourceDecoder(String::fromUTF8(fuzzedData.ConsumeBytesInRange(0, 16)), String::fromUTF8(fuzzedData.ConsumeBytesInRange(0, 16)), FuzzedOption(fuzzedData))
esprehn 2016/08/17 20:42:13 why 16?
Charlie Harrison 2016/08/17 21:22:14 Pretty arbitrary. I'll fix this up and add comment
+ {
+ }
+
+private:
+ static TextResourceDecoder::EncodingDetectionOption FuzzedOption(FuzzedDataProvider& fuzzedData)
+ {
+ // Don't use AlwaysUseUTF8ForText which requires knowing the mimeType
+ // ahead of time.
+ return fuzzedData.ConsumeBool() ? UseAllAutoDetection : UseContentAndBOMBasedDetection;
+ }
+};
+
+int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
+{
+ FuzzedDataProvider fuzzedData(data, size);
+ TextResourceDecoderForFuzzing decoder(fuzzedData);
+ CString bytes = fuzzedData.ConsumeRemainingBytes();
+ decoder.decode(bytes.data(), bytes.length());
+ decoder.flush();
+ return 0;
+}
+
+} // namespace blink
+
+extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
+{
+ return blink::LLVMFuzzerTestOneInput(data, size);
+}
+
+extern "C" int LLVMFuzzerInitialize(int* argc, char*** argv)
+{
+ // Intentional leak - no need to do cleanup as explained in
+ // "Initialization/Cleanup" section of testing/libfuzzer/efficient_fuzzer.md
+ DEFINE_STATIC_LOCAL(blink::ScopedUnittestsEnvironmentSetup, testSetup, (*argc, *argv));
+ ALLOW_UNUSED_LOCAL(testSetup);
+
+ return 0;
+}

Powered by Google App Engine
This is Rietveld 408576698