chromium/services/network/public/cpp/cors/origin_access_entry_unittest.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "services/network/public/cpp/cors/origin_access_entry.h"

#include "services/network/public/mojom/cors_origin_pattern.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
#include "url/origin.h"

namespace network::cors {

namespace {

TEST(OriginAccessEntryTest, IsSubdomainOfHost) {}

TEST(OriginAccessEntryTest, PublicSuffixListTest) {}

TEST(OriginAccessEntryTest, AllowSubdomainsTest) {}

TEST(OriginAccessEntryTest, AllowRegistrableDomainsTest) {}

TEST(OriginAccessEntryTest, AllowRegistrableDomainsTestWithDottedSuffix) {}

TEST(OriginAccessEntryTest, DisallowSubdomainsTest) {}

TEST(OriginAccessEntryTest, IPAddressTest) {}

TEST(OriginAccessEntryTest, IPAddressMatchingTest) {}

TEST(OriginAccessEntryTest, PortMatchingTest) {}

TEST(OriginAccessEntryTest, CreateCorsOriginPattern) {}

}  // namespace

}  // namespace network::cors