910e62b5创建于 1月15日历史提交
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/tools/dump_cache/dump_cache_helper.h"

#include "base/containers/span.h"
#include "testing/gtest/include/gtest/gtest.h"

TEST(DumpCacheHelper, HexDump) {
  std::string out = "Prefix\n";
  const char kIn[] = "0123456789ABCDEFGHIJ\x01\x80<&>";
  DumpCacheHelper::HexDump(base::byte_span_from_cstring(kIn), &out);
  EXPECT_EQ(
      "Prefix\n00000000: 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46  "
      "0123456789ABCDEF\n00000010: 47 48 49 4a 01 80 3c 26 3e                  "
      "     GHIJ..&lt;&amp;&gt;\n",
      out);
}