blob: 70687ada903dcfe2af14af6da9cc15873703988f [file] [log] [blame]
// Copyright 2020 The Pigweed Authors
//
// 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
//
// https://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 <cstdint>
#include <cstring>
#include <span>
#include "pw_rpc/internal/method.h"
#include "pw_rpc/internal/method_union.h"
#include "pw_rpc/internal/packet.h"
#include "pw_rpc/internal/server_call.h"
#include "pw_rpc/method_type.h"
#include "pw_status/status_with_size.h"
namespace pw::rpc::internal {
// This is a fake RPC method implementation for testing only. It stores the
// channel ID, request, and payload buffer, and optionally provides a response.
class TestMethod : public Method {
public:
constexpr TestMethod(uint32_t id, MethodType type = MethodType::kUnary)
: Method(id, GetInvoker(type)), last_channel_id_(0), invocations_(0) {}
uint32_t last_channel_id() const { return last_channel_id_; }
const Packet& last_request() const { return last_request_; }
size_t invocations() const { return invocations_; }
void set_response(std::span<const std::byte> payload) { response_ = payload; }
void set_status(Status status) { response_status_ = status; }
private:
class FakeServerCall : public ServerCall {
public:
FakeServerCall(const CallContext& context, MethodType type)
: ServerCall(context, type) {}
};
template <MethodType kType>
static void InvokeForTest(const CallContext& context, const Packet& request) {
const auto& test_method = static_cast<const TestMethod&>(context.method());
test_method.last_channel_id_ = context.channel().id();
test_method.last_request_ = request;
test_method.invocations_ += 1;
// Create a call object so it registers / unregisters with the server.
FakeServerCall fake_call(context, kType);
}
static constexpr Invoker GetInvoker(MethodType type) {
switch (type) {
case MethodType::kUnary:
return InvokeForTest<MethodType::kUnary>;
case MethodType::kServerStreaming:
return InvokeForTest<MethodType::kServerStreaming>;
case MethodType::kClientStreaming:
return InvokeForTest<MethodType::kClientStreaming>;
case MethodType::kBidirectionalStreaming:
return InvokeForTest<MethodType::kBidirectionalStreaming>;
};
}
// Make these mutable so they can be set in the Invoke method, which is const.
// The Method class is used exclusively in tests. Having these members mutable
// allows tests to verify that the Method is invoked correctly.
mutable uint32_t last_channel_id_;
mutable Packet last_request_;
mutable size_t invocations_;
std::span<const std::byte> response_;
Status response_status_;
};
class TestMethodUnion : public MethodUnion {
public:
constexpr TestMethodUnion(TestMethod&& method) : impl_({.test = method}) {}
constexpr const Method& method() const { return impl_.method; }
constexpr const TestMethod& test_method() const { return impl_.test; }
private:
union {
Method method;
TestMethod test;
} impl_;
};
} // namespace pw::rpc::internal