Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Unified Diff: device/u2f/u2f_register_unittest.cc

Issue 2821263005: Add U2F request state machines (Closed)
Patch Set: Compilation changes Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: device/u2f/u2f_register_unittest.cc
diff --git a/device/u2f/u2f_register_unittest.cc b/device/u2f/u2f_register_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6728e9da779b05d040827bfd3520702721cc649d
--- /dev/null
+++ b/device/u2f/u2f_register_unittest.cc
@@ -0,0 +1,132 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <list>
+
+#include "base/run_loop.h"
+#include "base/test/test_io_thread.h"
+#include "device/base/mock_device_client.h"
+#include "device/hid/mock_hid_service.h"
+#include "device/test/test_device_client.h"
+#include "mock_u2f_device.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "u2f_register.h"
+
+namespace device {
+
+class U2fRegisterTest : public testing::Test {
+ public:
+ void SetUp() override {
+ message_loop_.reset(new base::MessageLoopForUI());
+ io_thread_.reset(new base::TestIOThread(base::TestIOThread::kAutoStart));
+ device_client_.reset(new MockDeviceClient());
+ MockHidService* hid_service = device_client_->hid_service();
+ hid_service->FirstEnumerationComplete();
+ }
+
+ protected:
+ std::unique_ptr<base::MessageLoopForUI> message_loop_;
+ std::unique_ptr<base::TestIOThread> io_thread_;
+ std::unique_ptr<device::MockDeviceClient> device_client_;
+};
+
+class TestRegisterCallback {
+ public:
+ TestRegisterCallback()
+ : closure_(),
+ callback_(base::Bind(&TestRegisterCallback::ReceivedCallback,
+ base::Unretained(this))),
+ run_loop_() {}
+ ~TestRegisterCallback() {}
+
+ void ReceivedCallback(uint8_t status_code, std::vector<uint8_t> response) {
+ response_ = std::make_pair(status_code, response);
+ closure_.Run();
+ }
+
+ std::pair<uint8_t, std::vector<uint8_t>>& WaitForCallback() {
+ closure_ = run_loop_.QuitClosure();
+ run_loop_.Run();
+ return response_;
+ }
+
+ const U2fRequest::ResponseCallback& callback() { return callback_; }
+
+ private:
+ std::pair<uint8_t, std::vector<uint8_t>> response_;
+ base::Closure closure_;
+ U2fRequest::ResponseCallback callback_;
+ base::RunLoop run_loop_;
+};
+
+TEST_F(U2fRegisterTest, TestRegisterSuccess) {
+ std::unique_ptr<MockU2fDevice> device(new MockU2fDevice());
+ EXPECT_CALL(*device.get(), DeviceTransactPtr(testing::_, testing::_))
+ .WillOnce(testing::Invoke(MockU2fDevice::NoErrorRegister));
+ EXPECT_CALL(*device.get(), TryWink(testing::_))
+ .WillOnce(testing::Invoke(MockU2fDevice::WinkDoNothing));
+ TestRegisterCallback cb;
+ U2fRegister request(std::vector<uint8_t>(32), std::vector<uint8_t>(32),
+ cb.callback());
+ request.U2fRequest::devices_.push_back(std::move(device));
Reilly Grant (use Gerrit) 2017/04/21 17:19:16 Instead of accessing a private member here I would
Casey Piper 2017/04/21 18:42:26 Switched everywhere.
+ request.Start();
+ std::pair<uint8_t, std::vector<uint8_t>>& response = cb.WaitForCallback();
+ EXPECT_EQ(static_cast<uint8_t>(U2fDevice::ReturnCode::SUCCESS),
+ response.first);
+ ASSERT_LT(static_cast<size_t>(0), response.second.size());
+ EXPECT_EQ(static_cast<uint8_t>(MockU2fDevice::kRegister), response.second[0]);
+}
+
+TEST_F(U2fRegisterTest, TestDelayedSuccess) {
+ std::unique_ptr<MockU2fDevice> device(new MockU2fDevice());
+
+ // Go through the state machine twice before success
+ EXPECT_CALL(*device.get(), DeviceTransactPtr(testing::_, testing::_))
+ .WillOnce(testing::Invoke(MockU2fDevice::NotSatisfied))
+ .WillOnce(testing::Invoke(MockU2fDevice::NoErrorRegister));
+ EXPECT_CALL(*device.get(), TryWink(testing::_))
+ .Times(2)
+ .WillRepeatedly(testing::Invoke(MockU2fDevice::WinkDoNothing));
+ TestRegisterCallback cb;
+
+ U2fRegister request(std::vector<uint8_t>(32), std::vector<uint8_t>(32),
+ cb.callback());
+ request.U2fRequest::devices_.push_back(std::move(device));
+ request.Start();
+ std::pair<uint8_t, std::vector<uint8_t>>& response = cb.WaitForCallback();
+ EXPECT_EQ(static_cast<uint8_t>(U2fDevice::ReturnCode::SUCCESS),
+ response.first);
+ ASSERT_LT(static_cast<size_t>(0), response.second.size());
+ EXPECT_EQ(static_cast<uint8_t>(MockU2fDevice::kRegister), response.second[0]);
+}
+
+TEST_F(U2fRegisterTest, TestMultipleDevices) {
+ // Second device will have a successful touch
+ std::unique_ptr<MockU2fDevice> device0(new MockU2fDevice());
+ std::unique_ptr<MockU2fDevice> device1(new MockU2fDevice());
+
+ EXPECT_CALL(*device0.get(), DeviceTransactPtr(testing::_, testing::_))
+ .WillOnce(testing::Invoke(MockU2fDevice::NotSatisfied));
+ // One wink per device
+ EXPECT_CALL(*device0.get(), TryWink(testing::_))
+ .WillOnce(testing::Invoke(MockU2fDevice::WinkDoNothing));
+ EXPECT_CALL(*device1.get(), DeviceTransactPtr(testing::_, testing::_))
+ .WillOnce(testing::Invoke(MockU2fDevice::NoErrorRegister));
+ EXPECT_CALL(*device1.get(), TryWink(testing::_))
+ .WillOnce(testing::Invoke(MockU2fDevice::WinkDoNothing));
+
+ TestRegisterCallback cb;
+ U2fRegister request(std::vector<uint8_t>(32), std::vector<uint8_t>(32),
+ cb.callback());
+ request.U2fRequest::devices_.push_back(std::move(device0));
+ request.U2fRequest::devices_.push_back(std::move(device1));
+ request.Start();
+ std::pair<uint8_t, std::vector<uint8_t>>& response = cb.WaitForCallback();
+ EXPECT_EQ(static_cast<uint8_t>(U2fDevice::ReturnCode::SUCCESS),
+ response.first);
+ ASSERT_LT(static_cast<size_t>(0), response.second.size());
+ EXPECT_EQ(static_cast<uint8_t>(MockU2fDevice::kRegister), response.second[0]);
+}
+
+} // namespace device

Powered by Google App Engine
This is Rietveld 408576698