Files
allwpilib/wpinet/src/test/native/cpp/HttpWebSocketServerConnectionTest.cpp
2026-06-19 19:49:50 -07:00

28 lines
857 B
C++

// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "wpi/net/HttpWebSocketServerConnection.hpp"
#include <memory>
#include <catch2/catch_test_macros.hpp>
namespace wpi::net {
class HttpWebSocketServerConnectionTest
: public HttpWebSocketServerConnection<HttpWebSocketServerConnectionTest> {
public:
HttpWebSocketServerConnectionTest(std::shared_ptr<uv::Stream> stream,
std::span<const std::string_view> protocols)
: HttpWebSocketServerConnection{stream, protocols} {}
void ProcessRequest() override { ++gotRequest; }
void ProcessWsUpgrade() override { ++gotUpgrade; }
int gotRequest = 0;
int gotUpgrade = 0;
};
} // namespace wpi::net