mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-29 02:21:44 +00:00
28 lines
857 B
C++
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
|