| // 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. |
| |
| #include "pw_rpc/internal/raw_method_union.h" |
| |
| #include <array> |
| |
| #include "gtest/gtest.h" |
| #include "pw_bytes/array.h" |
| #include "pw_protobuf/decoder.h" |
| #include "pw_protobuf/encoder.h" |
| #include "pw_rpc/server_context.h" |
| #include "pw_rpc/service.h" |
| #include "pw_rpc_private/internal_test_utils.h" |
| #include "pw_rpc_test_protos/test.pwpb.h" |
| |
| namespace pw::rpc::internal { |
| namespace { |
| |
| template <typename Implementation> |
| class FakeGeneratedService : public Service { |
| public: |
| constexpr FakeGeneratedService(uint32_t id) : Service(id, kMethods) {} |
| |
| static constexpr std::array<RawMethodUnion, 3> kMethods = { |
| GetRawMethodFor<&Implementation::DoNothing, MethodType::kUnary>(10u), |
| GetRawMethodFor<&Implementation::AddFive, MethodType::kUnary>(11u), |
| GetRawMethodFor<&Implementation::StartStream, |
| MethodType::kServerStreaming>(12u), |
| }; |
| }; |
| |
| struct { |
| int64_t integer; |
| uint32_t status_code; |
| } last_request; |
| RawServerWriter last_writer; |
| |
| class FakeGeneratedServiceImpl |
| : public FakeGeneratedService<FakeGeneratedServiceImpl> { |
| public: |
| FakeGeneratedServiceImpl(uint32_t id) : FakeGeneratedService(id) {} |
| |
| StatusWithSize DoNothing(ServerContext&, ConstByteSpan, ByteSpan) { |
| return StatusWithSize::Unknown(); |
| } |
| |
| StatusWithSize AddFive(ServerContext&, |
| ConstByteSpan request, |
| ByteSpan response) { |
| DecodeRawTestRequest(request); |
| |
| protobuf::NestedEncoder encoder(response); |
| test::TestResponse::Encoder test_response(&encoder); |
| test_response.WriteValue(last_request.integer + 5); |
| ConstByteSpan payload; |
| encoder.Encode(&payload); |
| |
| return StatusWithSize::Unauthenticated(payload.size()); |
| } |
| |
| void StartStream(ServerContext&, |
| ConstByteSpan request, |
| RawServerWriter& writer) { |
| DecodeRawTestRequest(request); |
| last_writer = std::move(writer); |
| } |
| |
| private: |
| void DecodeRawTestRequest(ConstByteSpan request) { |
| protobuf::Decoder decoder(request); |
| |
| while (decoder.Next().ok()) { |
| test::TestRequest::Fields field = |
| static_cast<test::TestRequest::Fields>(decoder.FieldNumber()); |
| |
| switch (field) { |
| case test::TestRequest::Fields::INTEGER: |
| decoder.ReadInt64(&last_request.integer); |
| break; |
| case test::TestRequest::Fields::STATUS_CODE: |
| decoder.ReadUint32(&last_request.status_code); |
| break; |
| } |
| } |
| } |
| }; |
| |
| TEST(RawMethodUnion, InvokesUnary) { |
| std::byte buffer[16]; |
| protobuf::NestedEncoder encoder(buffer); |
| test::TestRequest::Encoder test_request(&encoder); |
| test_request.WriteInteger(456); |
| test_request.WriteStatusCode(7); |
| |
| const Method& method = |
| std::get<1>(FakeGeneratedServiceImpl::kMethods).method(); |
| ServerContextForTest<FakeGeneratedServiceImpl> context(method); |
| method.Invoke(context.get(), context.request(encoder.Encode().value())); |
| |
| EXPECT_EQ(last_request.integer, 456); |
| EXPECT_EQ(last_request.status_code, 7u); |
| |
| const Packet& response = context.output().sent_packet(); |
| EXPECT_EQ(response.status(), Status::Unauthenticated()); |
| |
| protobuf::Decoder decoder(response.payload()); |
| ASSERT_TRUE(decoder.Next().ok()); |
| int64_t value; |
| EXPECT_EQ(decoder.ReadInt64(&value), OkStatus()); |
| EXPECT_EQ(value, 461); |
| } |
| |
| TEST(RawMethodUnion, InvokesServerStreaming) { |
| std::byte buffer[16]; |
| protobuf::NestedEncoder encoder(buffer); |
| test::TestRequest::Encoder test_request(&encoder); |
| test_request.WriteInteger(777); |
| test_request.WriteStatusCode(2); |
| |
| const Method& method = |
| std::get<2>(FakeGeneratedServiceImpl::kMethods).method(); |
| ServerContextForTest<FakeGeneratedServiceImpl> context(method); |
| |
| method.Invoke(context.get(), context.request(encoder.Encode().value())); |
| |
| EXPECT_EQ(0u, context.output().packet_count()); |
| EXPECT_EQ(777, last_request.integer); |
| EXPECT_EQ(2u, last_request.status_code); |
| EXPECT_TRUE(last_writer.open()); |
| EXPECT_EQ(OkStatus(), last_writer.Finish()); |
| } |
| |
| } // namespace |
| } // namespace pw::rpc::internal |