/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace apache::thrift::conformance { class RPCServerConformanceHandler : public apache::thrift::ServiceHandler { public: // =================== Request-Response =================== void requestResponseBasic( Response& res, std::unique_ptr req) override; void requestResponseDeclaredException(std::unique_ptr req) override; void requestResponseUndeclaredException( std::unique_ptr req) override; void requestResponseNoArgVoidResponse() override; // =================== Stream =================== apache::thrift::ServerStream streamBasic( std::unique_ptr req) override; apache::thrift::ResponseAndServerStream streamInitialResponse(std::unique_ptr req) override; apache::thrift::ServerStream streamDeclaredException( std::unique_ptr req) override; apache::thrift::ServerStream streamUndeclaredException( std::unique_ptr req) override; apache::thrift::ServerStream streamInitialDeclaredException( std::unique_ptr req) override; apache::thrift::ServerStream streamInitialUndeclaredException( std::unique_ptr req) override; // =================== Sink =================== apache::thrift::SinkConsumer sinkBasic( std::unique_ptr req) override; apache::thrift::SinkConsumer sinkChunkTimeout( std::unique_ptr req) override; // =================== Interactions =================== class BasicInteraction : public BasicInteractionIf { public: BasicInteraction( const RpcTestCase& testCase, ServerTestResult& result, int32_t initialSum = 0) : testCase_(testCase), result_(result), sum_(initialSum) {} void init() override {} int32_t add(int32_t toAdd) override { sum_ += toAdd; return sum_; } folly::coro::Task co_onTermination() override { switch (testCase_.serverInstruction()->getType()) { case ServerInstruction::Type::interactionTermination: result_.interactionTermination_ref().ensure().terminationReceived() = true; break; default:; // do nothing } co_return; } private: const RpcTestCase& testCase_; ServerTestResult& result_; int32_t sum_; }; std::unique_ptr createBasicInteraction() override; apache::thrift::TileAndResponse basicInteractionFactoryFunction(int32_t initialSum) override; // =================== Test Utils =================== void sendTestCase(std::unique_ptr req) override { testCase_ = std::move(req); } void getTestResult(ServerTestResult& res) override { res = result_; } private: std::unique_ptr testCase_; ServerTestResult result_; }; } // namespace apache::thrift::conformance