chromium/net/third_party/quiche/src/quiche/quic/core/quic_crypto_client_handshaker_test.cc

// Copyright (c) 2012 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 "quiche/quic/core/quic_crypto_client_handshaker.h"

#include <memory>
#include <string>
#include <utility>
#include <vector>

#include "absl/strings/string_view.h"
#include "quiche/quic/core/proto/crypto_server_config_proto.h"
#include "quiche/quic/platform/api/quic_test.h"
#include "quiche/quic/test_tools/quic_test_utils.h"

namespace quic::test {
namespace {

class TestProofHandler : public QuicCryptoClientStream::ProofHandler {};

class InsecureProofVerifier : public ProofVerifier {};

class DummyProofSource : public ProofSource {};

class Handshaker : public QuicCryptoClientHandshaker {};

class QuicCryptoClientHandshakerTest
    : public QuicTestWithParam<ParsedQuicVersion> {};

INSTANTIATE_TEST_SUITE_P();

TEST_P(QuicCryptoClientHandshakerTest, TestSendFullPaddingInInchoateHello) {}

TEST_P(QuicCryptoClientHandshakerTest, TestDisabledPaddingInInchoateHello) {}

TEST_P(QuicCryptoClientHandshakerTest,
       TestPaddingInFullHelloEvenIfInchoateDisabled) {}

TEST_P(QuicCryptoClientHandshakerTest, TestNoPaddingInFullHelloWhenDisabled) {}

}  // namespace
}  // namespace quic::test