load("@fbcode//quic:defs.bzl", "mvfst_cpp_test")

oncall("traffic_protocols")

mvfst_cpp_test(
    name = "FizzTransportParametersTest",
    srcs = [
        "FizzTransportParametersTest.cpp",
    ],
    deps = [
        "//fizz/record/test:extension_tests_base",
        "//folly/portability:gmock",
        "//folly/portability:gtest",
        "//quic/common/test:test_utils",
        "//quic/fizz/handshake:fizz_handshake",
    ],
)

mvfst_cpp_test(
    name = "FizzCryptoFactoryTest",
    srcs = [
        "FizzCryptoFactoryTest.cpp",
    ],
    deps = [
        "//fizz/crypto/aead/test:mocks",
        "//folly/portability:gmock",
        "//folly/portability:gtest",
        "//quic/common/test:test_utils",
        "//quic/fizz/handshake:fizz_handshake",
        "//quic/handshake/test:mocks",
    ],
)

mvfst_cpp_test(
    name = "FizzPacketNumberCipherTest",
    srcs = [
        "FizzPacketNumberCipherTest.cpp",
    ],
    supports_static_listing = False,
    deps = [
        "//fizz/record:record",
        "//folly:string",
        "//folly/portability:gtest",
        "//quic/fizz/handshake:fizz_handshake",
    ],
)
