1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
llvm-mirror/unittests/Support/raw_sha1_ostream_test.cpp
Chandler Carruth ae65e281f3 Update the file headers across all of the LLVM projects in the monorepo
to reflect the new license.

We understand that people may be surprised that we're moving the header
entirely to discuss the new license. We checked this carefully with the
Foundation's lawyer and we believe this is the correct approach.

Essentially, all code in the project is now made available by the LLVM
project under our new license, so you will see that the license headers
include that license only. Some of our contributors have contributed
code under our old license, and accordingly, we have retained a copy of
our old license notice in the top-level files in each project and
repository.

llvm-svn: 351636
2019-01-19 08:50:56 +00:00

78 lines
2.3 KiB
C++

//===- llvm/unittest/Support/raw_ostream_test.cpp - raw_ostream tests -----===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "llvm/Support/Format.h"
#include "llvm/Support/raw_sha1_ostream.h"
#include "gtest/gtest.h"
#include <string>
using namespace llvm;
static std::string toHex(StringRef Input) {
static const char *const LUT = "0123456789ABCDEF";
size_t Length = Input.size();
std::string Output;
Output.reserve(2 * Length);
for (size_t i = 0; i < Length; ++i) {
const unsigned char c = Input[i];
Output.push_back(LUT[c >> 4]);
Output.push_back(LUT[c & 15]);
}
return Output;
}
TEST(raw_sha1_ostreamTest, Basic) {
llvm::raw_sha1_ostream Sha1Stream;
Sha1Stream << "Hello World!";
auto Hash = toHex(Sha1Stream.sha1());
ASSERT_EQ("2EF7BDE608CE5404E97D5F042F95F89F1C232871", Hash);
}
TEST(sha1_hash_test, Basic) {
ArrayRef<uint8_t> Input((const uint8_t *)"Hello World!", 12);
std::array<uint8_t, 20> Vec = SHA1::hash(Input);
std::string Hash = toHex({(const char *)Vec.data(), 20});
ASSERT_EQ("2EF7BDE608CE5404E97D5F042F95F89F1C232871", Hash);
}
// Check that getting the intermediate hash in the middle of the stream does
// not invalidate the final result.
TEST(raw_sha1_ostreamTest, Intermediate) {
llvm::raw_sha1_ostream Sha1Stream;
Sha1Stream << "Hello";
auto Hash = toHex(Sha1Stream.sha1());
ASSERT_EQ("F7FF9E8B7BB2E09B70935A5D785E0CC5D9D0ABF0", Hash);
Sha1Stream << " World!";
Hash = toHex(Sha1Stream.sha1());
// Compute the non-split hash separately as a reference.
llvm::raw_sha1_ostream NonSplitSha1Stream;
NonSplitSha1Stream << "Hello World!";
auto NonSplitHash = toHex(NonSplitSha1Stream.sha1());
ASSERT_EQ(NonSplitHash, Hash);
}
TEST(raw_sha1_ostreamTest, Reset) {
llvm::raw_sha1_ostream Sha1Stream;
Sha1Stream << "Hello";
auto Hash = toHex(Sha1Stream.sha1());
ASSERT_EQ("F7FF9E8B7BB2E09B70935A5D785E0CC5D9D0ABF0", Hash);
Sha1Stream.resetHash();
Sha1Stream << " World!";
Hash = toHex(Sha1Stream.sha1());
ASSERT_EQ("7447F2A5A42185C8CF91E632789C431830B59067", Hash);
}