0
Files
src/base/base64_encode_fuzzer.cc
Hans Wennborg c3cffa634c Remove/replace unnecessary logging.h includes in .cc files (base)
CHECK, CHECK_EQ etc., and NOTREACHED/NOTIMPLEMENTED have moved
to the much smaller headers check.h, check_op.h, and notreached.h,
respectively.

This CL updates .cc files to use those headers instead when
possible, with the purpose of saving compile time.

(Split out from https://crrev.com/c/2164525 which also has
notes on how the change was generated.)

Bug: 1031540
Change-Id: I39ecaaf0d0770f1048c7f2ce2c43f98ec9212565
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2164633
Commit-Queue: Hans Wennborg <hans@chromium.org>
Auto-Submit: Hans Wennborg <hans@chromium.org>
Reviewed-by: kylechar <kylechar@chromium.org>
Reviewed-by: Matthew Denton <mpdenton@chromium.org>
Cr-Commit-Position: refs/heads/master@{#762782}
2020-04-27 10:09:12 +00:00

28 lines
977 B
C++

// Copyright 2017 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 <string>
#include "base/base64.h"
#include "base/check_op.h"
#include "base/strings/string_piece.h"
// Encode some random data, and then decode it.
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
base::span<const uint8_t> data_span(data, size);
base::StringPiece data_piece(reinterpret_cast<const char*>(data), size);
const std::string encode_output = base::Base64Encode(data_span);
std::string decode_output;
CHECK(base::Base64Decode(encode_output, &decode_output));
CHECK_EQ(data_piece, decode_output);
// Also run the StringPiece variant and check that it gives the same results.
std::string string_piece_encode_output;
base::Base64Encode(data_piece, &string_piece_encode_output);
CHECK_EQ(encode_output, string_piece_encode_output);
return 0;
}