|
| 1 | +/* |
| 2 | + * Copyright 2024 The Project Oak Authors |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +#include "cc/client/session_client.h" |
| 18 | + |
| 19 | +#include "absl/status/status_matchers.h" |
| 20 | +#include "cc/oak_session/client_session.h" |
| 21 | +#include "cc/oak_session/server_session.h" |
| 22 | +#include "gmock/gmock.h" |
| 23 | +#include "gtest/gtest.h" |
| 24 | + |
| 25 | +namespace oak::client { |
| 26 | +namespace { |
| 27 | + |
| 28 | +using ::absl_testing::IsOk; |
| 29 | +using ::testing::Eq; |
| 30 | +using ::testing::Ne; |
| 31 | +using ::testing::Optional; |
| 32 | + |
| 33 | +class TestTransport : public OakSessionClient::Channel::Transport { |
| 34 | + public: |
| 35 | + TestTransport(std::unique_ptr<session::ServerSession> server_session) |
| 36 | + : server_session_(std::move(server_session)) {} |
| 37 | + absl::Status Send(const session::v1::SessionRequest& request) override { |
| 38 | + return server_session_->PutIncomingMessage(request); |
| 39 | + } |
| 40 | + absl::StatusOr<session::v1::SessionResponse> Receive() override { |
| 41 | + absl::StatusOr<std::optional<session::v1::SessionResponse>> msg = |
| 42 | + server_session_->GetOutgoingMessage(); |
| 43 | + if (!msg.ok()) { |
| 44 | + return msg.status(); |
| 45 | + } |
| 46 | + if (*msg == std::nullopt) { |
| 47 | + return absl::FailedPreconditionError("expected outgoing server message"); |
| 48 | + } |
| 49 | + return **msg; |
| 50 | + } |
| 51 | + |
| 52 | + private: |
| 53 | + std::unique_ptr<session::ServerSession> server_session_; |
| 54 | +}; |
| 55 | + |
| 56 | +TEST(OakSessionClientTest, CreateSuccessFullyHandshakes) { |
| 57 | + auto server_session = session::ServerSession::Create(); |
| 58 | + ASSERT_THAT(server_session, IsOk()); |
| 59 | + auto client_session = session::ClientSession::Create(); |
| 60 | + ASSERT_THAT(client_session, IsOk()); |
| 61 | + auto _ = OakSessionClient().NewChannel( |
| 62 | + std::make_unique<TestTransport>(std::move(*server_session))); |
| 63 | +} |
| 64 | + |
| 65 | +TEST(OakSessionClientTest, CreatedSessionCanSend) { |
| 66 | + auto server_session = session::ServerSession::Create(); |
| 67 | + // Hold a pointer for testing behavior below. |
| 68 | + session::ServerSession* server_session_ptr = server_session->get(); |
| 69 | + ASSERT_THAT(server_session, IsOk()); |
| 70 | + auto client_session = session::ClientSession::Create(); |
| 71 | + ASSERT_THAT(client_session, IsOk()); |
| 72 | + auto channel = OakSessionClient().NewChannel( |
| 73 | + std::make_unique<TestTransport>(std::move(*server_session))); |
| 74 | + |
| 75 | + std::string test_send_msg = "Testing Send"; |
| 76 | + ASSERT_THAT((*channel)->Send(test_send_msg), IsOk()); |
| 77 | + absl::StatusOr<std::optional<std::string>> test_send_read_back = |
| 78 | + server_session_ptr->Read(); |
| 79 | + EXPECT_THAT(test_send_read_back, IsOk()); |
| 80 | + EXPECT_THAT(*test_send_read_back, Optional(Eq(test_send_msg))); |
| 81 | +} |
| 82 | + |
| 83 | +TEST(OakSessionClientTest, CreatedSessionCanReceive) { |
| 84 | + auto server_session = session::ServerSession::Create(); |
| 85 | + // Hold a pointer for testing behavior below. |
| 86 | + session::ServerSession* server_session_ptr = server_session->get(); |
| 87 | + ASSERT_THAT(server_session, IsOk()); |
| 88 | + auto client_session = session::ClientSession::Create(); |
| 89 | + ASSERT_THAT(client_session, IsOk()); |
| 90 | + auto channel = OakSessionClient().NewChannel( |
| 91 | + std::make_unique<TestTransport>(std::move(*server_session))); |
| 92 | + |
| 93 | + std::string test_recv_msg = "Testing Receive"; |
| 94 | + ASSERT_THAT(server_session_ptr->Write(test_recv_msg), IsOk()); |
| 95 | + |
| 96 | + absl::StatusOr<std::string> server_read = (*channel)->Receive(); |
| 97 | + EXPECT_THAT(server_read, IsOk()); |
| 98 | + EXPECT_THAT(*server_read, Eq(test_recv_msg)); |
| 99 | +} |
| 100 | +} // namespace |
| 101 | +} // namespace oak::client |
0 commit comments