blob: 938062c121061b7c0c2105ddbce2a148fb333fa1 [file] [log] [blame]
// 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 "components/certificate_transparency/ct_known_logs.h"
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <algorithm>
#include "base/time/time.h"
#include "crypto/sha2.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace certificate_transparency {
namespace {
#include "components/certificate_transparency/data/log_list-inc.cc"
} // namespace
TEST(CTKnownLogsTest, GoogleIDsAreSorted) {
ASSERT_TRUE(std::is_sorted(std::begin(kGoogleLogIDs), std::end(kGoogleLogIDs),
[](const char* a, const char* b) {
return memcmp(a, b, crypto::kSHA256Length) < 0;
}));
}
TEST(CTKnownLogsTest, DisallowedLogsAreSortedByLogID) {
ASSERT_TRUE(std::is_sorted(
std::begin(kDisqualifiedCTLogList), std::end(kDisqualifiedCTLogList),
[](const DisqualifiedCTLogInfo& a, const DisqualifiedCTLogInfo& b) {
return memcmp(a.log_id, b.log_id, crypto::kSHA256Length) < 0;
}));
}
} // namespace certificate_transparency