1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/host/security_key/security_key_auth_handler.h"
#include <cstdint>
#include <memory>
#include <string>
#include "base/functional/bind.h"
#include "base/memory/weak_ptr.h"
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "remoting/host/host_mock_objects.h"
#include "remoting/host/security_key/fake_security_key_ipc_client.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
const int kConnectionId1 = 1;
const int kConnectionId2 = 2;
} // namespace
namespace remoting {
class SecurityKeyAuthHandlerWinTest : public testing::Test {
public:
SecurityKeyAuthHandlerWinTest();
SecurityKeyAuthHandlerWinTest(const SecurityKeyAuthHandlerWinTest&) = delete;
SecurityKeyAuthHandlerWinTest& operator=(
const SecurityKeyAuthHandlerWinTest&) = delete;
~SecurityKeyAuthHandlerWinTest() override;
// Passed to the object used for testing to be called back to signal
// completion of an IPC connection state change or reception of an IPC
// message.
void OperationComplete();
protected:
// Waits until the current |run_loop_| instance is signaled, then resets it.
void WaitForOperationComplete(int expected_call_count = 1);
// Used as a callback given to the object under test, expected to be called
// back when a security key request is received by it.
void SendMessageToClient(int connection_id, const std::string& data);
// Uses |fake_ipc_client| to connect to the auth handler via mojo pipe, it
// then validates internal state of the object under test.
void EstablishIpcConnection(FakeSecurityKeyIpcClient& fake_ipc_client,
int expected_connection_id);
// Sends a security key response message using |fake_ipc_client| and
// validates the state of the object under test.
void SendRequestToSecurityKeyAuthHandler(
FakeSecurityKeyIpcClient& fake_ipc_client,
int connection_id,
const std::string& request_payload);
// Sends a security key response message to |fake_ipc_client| and validates
// the state of the object under test.
void SendResponseViaSecurityKeyAuthHandler(
FakeSecurityKeyIpcClient& fake_ipc_client,
int connection_id,
const std::string& response_payload);
// Closes a security key session IPC connection and validates state.
void CloseSecurityKeySessionIpcConnection(
FakeSecurityKeyIpcClient& fake_ipc_client,
int connection_id);
// IPC tests require a valid MessageLoop to run.
base::test::SingleThreadTaskEnvironment task_environment_{
base::test::SingleThreadTaskEnvironment::MainThreadType::IO};
// Used to allow |message_loop_| to run during tests. The instance is reset
// after each stage of the tests has been completed.
std::unique_ptr<base::RunLoop> run_loop_;
// Number of times OperationComplete() has been called since last call to
// WaitForOperationComplete().
int operation_complete_call_count_ = 0;
// The object under test.
std::unique_ptr<SecurityKeyAuthHandler> auth_handler_;
// Used to validate the object under test uses the correct ID when
// communicating over the IPC connection.
int last_connection_id_received_ = -1;
// Stores the contents of the last IPC message received for validation.
std::string last_message_received_;
private:
testing::NiceMock<MockClientSessionDetails> mock_client_session_details_;
};
SecurityKeyAuthHandlerWinTest::SecurityKeyAuthHandlerWinTest()
: run_loop_(new base::RunLoop()) {
auth_handler_ = remoting::SecurityKeyAuthHandler::Create(
&mock_client_session_details_,
base::BindRepeating(&SecurityKeyAuthHandlerWinTest::SendMessageToClient,
base::Unretained(this)),
/*file_task_runner=*/nullptr);
}
SecurityKeyAuthHandlerWinTest::~SecurityKeyAuthHandlerWinTest() {}
void SecurityKeyAuthHandlerWinTest::OperationComplete() {
run_loop_->Quit();
operation_complete_call_count_++;
}
void SecurityKeyAuthHandlerWinTest::WaitForOperationComplete(
int expected_call_count) {
run_loop_->Run();
int actual_call_count = operation_complete_call_count_;
operation_complete_call_count_ = 0;
run_loop_ = std::make_unique<base::RunLoop>();
if (actual_call_count < expected_call_count) {
WaitForOperationComplete(expected_call_count - actual_call_count);
}
}
void SecurityKeyAuthHandlerWinTest::SendMessageToClient(
int connection_id,
const std::string& data) {
last_connection_id_received_ = connection_id;
last_message_received_ = data;
OperationComplete();
}
void SecurityKeyAuthHandlerWinTest::EstablishIpcConnection(
FakeSecurityKeyIpcClient& fake_ipc_client,
int expected_connection_id) {
size_t expected_connection_count =
auth_handler_->GetActiveConnectionCountForTest() + 1;
ASSERT_FALSE(auth_handler_->IsValidConnectionId(expected_connection_id));
auth_handler_->BindSecurityKeyForwarder(
fake_ipc_client.BindNewPipeAndPassReceiver());
WaitForOperationComplete();
ASSERT_TRUE(fake_ipc_client.ipc_connected());
// Verify the internal state of the SecurityKeyAuthHandler is correct.
ASSERT_TRUE(auth_handler_->IsValidConnectionId(expected_connection_id));
ASSERT_EQ(expected_connection_count,
auth_handler_->GetActiveConnectionCountForTest());
}
void SecurityKeyAuthHandlerWinTest::SendRequestToSecurityKeyAuthHandler(
FakeSecurityKeyIpcClient& fake_ipc_client,
int connection_id,
const std::string& request_payload) {
size_t expected_connection_count =
auth_handler_->GetActiveConnectionCountForTest();
// Send a security key request using the fake IPC client.
fake_ipc_client.SendSecurityKeyRequestViaIpc(request_payload);
WaitForOperationComplete();
// Verify the request was received.
ASSERT_EQ(connection_id, last_connection_id_received_);
ASSERT_EQ(request_payload, last_message_received_);
// Verify the internal state of the SecurityKeyAuthHandler is still correct.
ASSERT_TRUE(auth_handler_->IsValidConnectionId(connection_id));
ASSERT_EQ(expected_connection_count,
auth_handler_->GetActiveConnectionCountForTest());
}
void SecurityKeyAuthHandlerWinTest::SendResponseViaSecurityKeyAuthHandler(
FakeSecurityKeyIpcClient& fake_ipc_client,
int connection_id,
const std::string& response_payload) {
size_t expected_connection_count =
auth_handler_->GetActiveConnectionCountForTest();
// Send a security key response using the new IPC connection.
auth_handler_->SendClientResponse(connection_id, response_payload);
WaitForOperationComplete();
// Verify the security key response was received.
ASSERT_EQ(response_payload, fake_ipc_client.last_message_received());
// Verify the internal state of the SecurityKeyAuthHandler is still correct.
ASSERT_TRUE(auth_handler_->IsValidConnectionId(connection_id));
ASSERT_EQ(expected_connection_count,
auth_handler_->GetActiveConnectionCountForTest());
}
void SecurityKeyAuthHandlerWinTest::CloseSecurityKeySessionIpcConnection(
FakeSecurityKeyIpcClient& fake_ipc_client,
int connection_id) {
size_t expected_connection_count =
auth_handler_->GetActiveConnectionCountForTest() - 1;
fake_ipc_client.CloseIpcConnection();
WaitForOperationComplete();
// Make sure that all pending async work has been completed before checking
// the validity of |expected_connection_id| from |auth_handler_|.
task_environment_.RunUntilIdle();
// Verify the internal state has been updated.
ASSERT_FALSE(auth_handler_->IsValidConnectionId(connection_id));
ASSERT_EQ(expected_connection_count,
auth_handler_->GetActiveConnectionCountForTest());
}
TEST_F(SecurityKeyAuthHandlerWinTest, HandleSingleSecurityKeyRequest) {
ASSERT_FALSE(auth_handler_->IsValidConnectionId(kConnectionId1));
// Create a fake client and connect to the auth handler via mojo pipe.
FakeSecurityKeyIpcClient fake_ipc_client(
base::BindRepeating(&SecurityKeyAuthHandlerWinTest::OperationComplete,
base::Unretained(this)));
EstablishIpcConnection(fake_ipc_client, kConnectionId1);
// Send a security key request using the fake IPC client.
SendRequestToSecurityKeyAuthHandler(fake_ipc_client, kConnectionId1,
"0123456789");
// Send a security key response using the fake IPC client.
SendResponseViaSecurityKeyAuthHandler(fake_ipc_client, kConnectionId1,
"9876543210");
CloseSecurityKeySessionIpcConnection(fake_ipc_client, kConnectionId1);
}
TEST_F(SecurityKeyAuthHandlerWinTest, HandleConcurrentSecurityKeyRequests) {
// Create fake clients and connect each to the auth handler.
FakeSecurityKeyIpcClient fake_ipc_client_1(
base::BindRepeating(&SecurityKeyAuthHandlerWinTest::OperationComplete,
base::Unretained(this)));
FakeSecurityKeyIpcClient fake_ipc_client_2(
base::BindRepeating(&SecurityKeyAuthHandlerWinTest::OperationComplete,
base::Unretained(this)));
EstablishIpcConnection(fake_ipc_client_1, kConnectionId1);
EstablishIpcConnection(fake_ipc_client_2, kConnectionId2);
// Connect and send a security key request using the first IPC connection.
SendRequestToSecurityKeyAuthHandler(fake_ipc_client_1, kConnectionId1,
"aaaaaaaaaa");
// Send a security key request using the second IPC connection.
SendRequestToSecurityKeyAuthHandler(fake_ipc_client_2, kConnectionId2,
"bbbbbbbbbb");
// Send a security key response using the first IPC connection.
SendResponseViaSecurityKeyAuthHandler(fake_ipc_client_1, kConnectionId1,
"cccccccccc");
// Send a security key response using the second IPC connection.
SendResponseViaSecurityKeyAuthHandler(fake_ipc_client_2, kConnectionId2,
"dddddddddd");
// Close the IPC connections.
CloseSecurityKeySessionIpcConnection(fake_ipc_client_1, kConnectionId1);
CloseSecurityKeySessionIpcConnection(fake_ipc_client_2, kConnectionId2);
}
TEST_F(SecurityKeyAuthHandlerWinTest, HandleSequentialSecurityKeyRequests) {
// Create fake clients to connect to the auth handler.
FakeSecurityKeyIpcClient fake_ipc_client_1(
base::BindRepeating(&SecurityKeyAuthHandlerWinTest::OperationComplete,
base::Unretained(this)));
EstablishIpcConnection(fake_ipc_client_1, kConnectionId1);
// Send a security key request using the first IPC connection.
SendRequestToSecurityKeyAuthHandler(fake_ipc_client_1, kConnectionId1,
"aaaaaaaaaa");
// Send a security key response using the first IPC connection.
SendResponseViaSecurityKeyAuthHandler(fake_ipc_client_1, kConnectionId1,
"cccccccccc");
// Close the IPC connection.
CloseSecurityKeySessionIpcConnection(fake_ipc_client_1, kConnectionId1);
// Now connect with a second client.
FakeSecurityKeyIpcClient fake_ipc_client_2(
base::BindRepeating(&SecurityKeyAuthHandlerWinTest::OperationComplete,
base::Unretained(this)));
EstablishIpcConnection(fake_ipc_client_2, kConnectionId2);
// Send a security key request using the second IPC connection.
SendRequestToSecurityKeyAuthHandler(fake_ipc_client_2, kConnectionId2,
"bbbbbbbbbb");
// Send a security key response using the second IPC connection.
SendResponseViaSecurityKeyAuthHandler(fake_ipc_client_2, kConnectionId2,
"dddddddddd");
// Close the IPC connection.
CloseSecurityKeySessionIpcConnection(fake_ipc_client_2, kConnectionId2);
}
TEST_F(SecurityKeyAuthHandlerWinTest, HandleSecurityKeyErrorResponse) {
ASSERT_EQ(0u, auth_handler_->GetActiveConnectionCountForTest());
// Create a fake client and connect to the auth handler.
FakeSecurityKeyIpcClient fake_ipc_client(
base::BindRepeating(&SecurityKeyAuthHandlerWinTest::OperationComplete,
base::Unretained(this)));
EstablishIpcConnection(fake_ipc_client, kConnectionId1);
// Send a security key request using the fake IPC client.
SendRequestToSecurityKeyAuthHandler(fake_ipc_client, kConnectionId1,
"0123456789");
// Simulate a security key error from the client.
auth_handler_->SendErrorAndCloseConnection(kConnectionId1);
// Wait for the ipc server connection to be torn down.
// Once for security key response, and once for IPC disconnection.
WaitForOperationComplete(2);
// Verify the connection was cleaned up.
ASSERT_FALSE(fake_ipc_client.ipc_connected());
ASSERT_FALSE(auth_handler_->IsValidConnectionId(kConnectionId1));
ASSERT_EQ(0u, auth_handler_->GetActiveConnectionCountForTest());
// Attempt to connect again after the error.
EstablishIpcConnection(fake_ipc_client, kConnectionId2);
}
} // namespace remoting
|