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 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
// Copyright 2013 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.
#ifndef USE_BRLAPI
#error This test requires brlapi.
#endif
#include <deque>
#include "base/bind.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
#include "chrome/browser/chromeos/login/lock/screen_locker.h"
#include "chrome/browser/chromeos/login/lock/screen_locker_tester.h"
#include "chrome/browser/chromeos/profiles/profile_helper.h"
#include "chrome/browser/extensions/api/braille_display_private/braille_controller_brlapi.h"
#include "chrome/browser/extensions/api/braille_display_private/braille_display_private_api.h"
#include "chrome/browser/extensions/api/braille_display_private/brlapi_connection.h"
#include "chrome/browser/extensions/api/braille_display_private/stub_braille_controller.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/test/base/testing_profile.h"
#include "chromeos/chromeos_switches.h"
#include "components/user_manager/user_manager.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_service.h"
#include "content/public/test/test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
using chromeos::ProfileHelper;
using chromeos::ScreenLocker;
using user_manager::UserManager;
using chromeos::test::ScreenLockerTester;
using content::BrowserThread;
namespace extensions {
namespace api {
namespace braille_display_private {
namespace {
const char kTestUserName[] = "owner@invalid.domain";
// Used to make ReadKeys return an error.
brlapi_keyCode_t kErrorKeyCode = BRLAPI_KEY_MAX;
} // namespace
// Data maintained by the mock BrlapiConnection. This data lives throughout
// a test, while the api implementation takes ownership of the connection
// itself.
struct MockBrlapiConnectionData {
bool connected;
size_t display_size;
brlapi_error_t error;
std::vector<std::string> written_content;
// List of brlapi key codes. A negative number makes the connection mock
// return an error from ReadKey.
std::deque<brlapi_keyCode_t> pending_keys;
// Causes a new display to appear to appear on disconnect, that is the
// display size doubles and the controller gets notified of a brltty
// restart.
bool reappear_on_disconnect;
};
class MockBrlapiConnection : public BrlapiConnection {
public:
explicit MockBrlapiConnection(MockBrlapiConnectionData* data)
: data_(data) {}
virtual ConnectResult Connect(const OnDataReadyCallback& on_data_ready)
override {
data_->connected = true;
on_data_ready_ = on_data_ready;
if (!data_->pending_keys.empty()) {
BrowserThread::PostTask(BrowserThread::IO, FROM_HERE,
base::Bind(&MockBrlapiConnection::NotifyDataReady,
base::Unretained(this)));
}
return CONNECT_SUCCESS;
}
virtual void Disconnect() override {
data_->connected = false;
if (data_->reappear_on_disconnect) {
data_->display_size *= 2;
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
base::Bind(&BrailleControllerImpl::PokeSocketDirForTesting,
base::Unretained(BrailleControllerImpl::GetInstance())));
}
}
virtual bool Connected() override {
return data_->connected;
}
virtual brlapi_error_t* BrlapiError() override {
return &data_->error;
}
virtual std::string BrlapiStrError() override {
return data_->error.brlerrno != BRLAPI_ERROR_SUCCESS ? "Error" : "Success";
}
virtual bool GetDisplaySize(size_t* size) override {
*size = data_->display_size;
return true;
}
virtual bool WriteDots(const unsigned char* cells) override {
std::string written(reinterpret_cast<const char*>(cells),
data_->display_size);
data_->written_content.push_back(written);
return true;
}
virtual int ReadKey(brlapi_keyCode_t* key_code) override {
if (!data_->pending_keys.empty()) {
brlapi_keyCode_t queued_key_code = data_->pending_keys.front();
data_->pending_keys.pop_front();
if (queued_key_code == kErrorKeyCode) {
data_->error.brlerrno = BRLAPI_ERROR_EOF;
return -1; // Signal error.
}
*key_code = queued_key_code;
return 1;
} else {
return 0;
}
}
private:
void NotifyDataReady() {
on_data_ready_.Run();
if (!data_->pending_keys.empty()) {
BrowserThread::PostTask(BrowserThread::IO, FROM_HERE,
base::Bind(&MockBrlapiConnection::NotifyDataReady,
base::Unretained(this)));
}
}
MockBrlapiConnectionData* data_;
OnDataReadyCallback on_data_ready_;
};
class BrailleDisplayPrivateApiTest : public ExtensionApiTest {
public:
virtual void SetUpInProcessBrowserTestFixture() override {
ExtensionApiTest::SetUpInProcessBrowserTestFixture();
connection_data_.connected = false;
connection_data_.display_size = 0;
connection_data_.error.brlerrno = BRLAPI_ERROR_SUCCESS;
connection_data_.reappear_on_disconnect = false;
BrailleControllerImpl::GetInstance()->SetCreateBrlapiConnectionForTesting(
base::Bind(
&BrailleDisplayPrivateApiTest::CreateBrlapiConnection,
base::Unretained(this)));
DisableAccessibilityManagerBraille();
}
protected:
MockBrlapiConnectionData connection_data_;
// By default, don't let the accessibility manager interfere and
// steal events. Some tests override this to keep the normal behaviour
// of the accessibility manager.
virtual void DisableAccessibilityManagerBraille() {
chromeos::AccessibilityManager::SetBrailleControllerForTest(
&stub_braille_controller_);
}
private:
scoped_ptr<BrlapiConnection> CreateBrlapiConnection() {
return scoped_ptr<BrlapiConnection>(
new MockBrlapiConnection(&connection_data_));
}
StubBrailleController stub_braille_controller_;
};
IN_PROC_BROWSER_TEST_F(BrailleDisplayPrivateApiTest, WriteDots) {
connection_data_.display_size = 11;
ASSERT_TRUE(RunComponentExtensionTest("braille_display_private/write_dots"))
<< message_;
ASSERT_EQ(3U, connection_data_.written_content.size());
const std::string expected_content(connection_data_.display_size, '\0');
for (size_t i = 0; i < connection_data_.written_content.size(); ++i) {
ASSERT_EQ(std::string(
connection_data_.display_size,
static_cast<char>(i)),
connection_data_.written_content[i])
<< "String " << i << " doesn't match";
}
}
IN_PROC_BROWSER_TEST_F(BrailleDisplayPrivateApiTest, KeyEvents) {
connection_data_.display_size = 11;
// Braille navigation commands.
connection_data_.pending_keys.push_back(BRLAPI_KEY_TYPE_CMD |
BRLAPI_KEY_CMD_LNUP);
connection_data_.pending_keys.push_back(BRLAPI_KEY_TYPE_CMD |
BRLAPI_KEY_CMD_LNDN);
connection_data_.pending_keys.push_back(BRLAPI_KEY_TYPE_CMD |
BRLAPI_KEY_CMD_FWINLT);
connection_data_.pending_keys.push_back(BRLAPI_KEY_TYPE_CMD |
BRLAPI_KEY_CMD_FWINRT);
connection_data_.pending_keys.push_back(BRLAPI_KEY_TYPE_CMD |
BRLAPI_KEY_CMD_TOP);
connection_data_.pending_keys.push_back(BRLAPI_KEY_TYPE_CMD |
BRLAPI_KEY_CMD_BOT);
connection_data_.pending_keys.push_back(BRLAPI_KEY_TYPE_CMD |
BRLAPI_KEY_CMD_ROUTE | 5);
// Braille display standard keyboard emulation.
// An ascii character.
connection_data_.pending_keys.push_back(BRLAPI_KEY_TYPE_SYM | 'A');
// A non-ascii 'latin1' character. Small letter a with ring above.
connection_data_.pending_keys.push_back(BRLAPI_KEY_TYPE_SYM | 0xE5);
// A non-latin1 Unicode character. LATIN SMALL LETTER A WITH MACRON.
connection_data_.pending_keys.push_back(
BRLAPI_KEY_TYPE_SYM | BRLAPI_KEY_SYM_UNICODE | 0x100);
// A Unicode character outside the BMP. CAT FACE WITH TEARS OF JOY.
// With anticipation for the first emoji-enabled braille display.
connection_data_.pending_keys.push_back(
BRLAPI_KEY_TYPE_SYM | BRLAPI_KEY_SYM_UNICODE | 0x1F639);
// Invalid Unicode character.
connection_data_.pending_keys.push_back(
BRLAPI_KEY_TYPE_SYM | BRLAPI_KEY_SYM_UNICODE | 0x110000);
// Non-alphanumeric function keys.
// Backspace.
connection_data_.pending_keys.push_back(
BRLAPI_KEY_TYPE_SYM | BRLAPI_KEY_SYM_BACKSPACE);
// Shift+Tab.
connection_data_.pending_keys.push_back(
BRLAPI_KEY_TYPE_SYM | BRLAPI_KEY_FLG_SHIFT | BRLAPI_KEY_SYM_TAB);
// Alt+F3. (0-based).
connection_data_.pending_keys.push_back(
BRLAPI_KEY_TYPE_SYM | BRLAPI_KEY_FLG_META |
(BRLAPI_KEY_SYM_FUNCTION + 2));
// ctrl+dot1+dot2.
connection_data_.pending_keys.push_back(
BRLAPI_KEY_TYPE_CMD | BRLAPI_KEY_FLG_CONTROL | BRLAPI_KEY_CMD_PASSDOTS |
BRLAPI_DOT1 | BRLAPI_DOT2);
// Braille dot keys, all combinations including space (0).
for (int i = 0; i < 256; ++i) {
connection_data_.pending_keys.push_back(BRLAPI_KEY_TYPE_CMD |
BRLAPI_KEY_CMD_PASSDOTS | i);
}
ASSERT_TRUE(RunComponentExtensionTest("braille_display_private/key_events"));
}
IN_PROC_BROWSER_TEST_F(BrailleDisplayPrivateApiTest, DisplayStateChanges) {
connection_data_.display_size = 11;
connection_data_.pending_keys.push_back(kErrorKeyCode);
connection_data_.reappear_on_disconnect = true;
ASSERT_TRUE(RunComponentExtensionTest(
"braille_display_private/display_state_changes"));
}
class BrailleDisplayPrivateAPIUserTest : public BrailleDisplayPrivateApiTest {
public:
virtual void SetUpCommandLine(base::CommandLine* command_line) override {
command_line->AppendSwitch(chromeos::switches::kLoginManager);
command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile,
TestingProfile::kTestUserProfileDir);
}
class MockEventDelegate : public BrailleDisplayPrivateAPI::EventDelegate {
public:
MockEventDelegate() : event_count_(0) {}
int GetEventCount() { return event_count_; }
virtual void BroadcastEvent(scoped_ptr<Event> event) override {
++event_count_;
}
virtual bool HasListener() override { return true; }
private:
int event_count_;
};
MockEventDelegate* SetMockEventDelegate(BrailleDisplayPrivateAPI* api) {
MockEventDelegate* delegate = new MockEventDelegate();
api->SetEventDelegateForTest(
scoped_ptr<BrailleDisplayPrivateAPI::EventDelegate>(delegate).Pass());
return delegate;
}
void LockScreen(ScreenLockerTester* tester) {
ScreenLocker::Show();
tester->EmulateWindowManagerReady();
content::WindowedNotificationObserver lock_state_observer(
chrome::NOTIFICATION_SCREEN_LOCK_STATE_CHANGED,
content::NotificationService::AllSources());
if (!tester->IsLocked())
lock_state_observer.Wait();
ASSERT_TRUE(tester->IsLocked());
}
void DismissLockScreen(ScreenLockerTester* tester) {
ScreenLocker::Hide();
content::WindowedNotificationObserver lock_state_observer(
chrome::NOTIFICATION_SCREEN_LOCK_STATE_CHANGED,
content::NotificationService::AllSources());
if (tester->IsLocked())
lock_state_observer.Wait();
ASSERT_FALSE(tester->IsLocked());
}
protected:
virtual void DisableAccessibilityManagerBraille() override {
// Let the accessibility manager behave as usual for these tests.
}
};
IN_PROC_BROWSER_TEST_F(BrailleDisplayPrivateAPIUserTest,
KeyEventOnLockScreen) {
scoped_ptr<ScreenLockerTester> tester(ScreenLocker::GetTester());
// Log in.
user_manager::UserManager::Get()->UserLoggedIn(
kTestUserName, kTestUserName, true);
user_manager::UserManager::Get()->SessionStarted();
Profile* profile = ProfileManager::GetActiveUserProfile();
ASSERT_FALSE(
ProfileHelper::GetSigninProfile()->IsSameProfile(profile))
<< ProfileHelper::GetSigninProfile()->GetDebugName() << " vs. "
<< profile->GetDebugName();
// Create API and event delegate for sign in profile.
BrailleDisplayPrivateAPI signin_api(ProfileHelper::GetSigninProfile());
MockEventDelegate* signin_delegate = SetMockEventDelegate(&signin_api);
EXPECT_EQ(0, signin_delegate->GetEventCount());
// Create api and delegate for the logged in user.
BrailleDisplayPrivateAPI user_api(profile);
MockEventDelegate* user_delegate = SetMockEventDelegate(&user_api);
// Send key event to both profiles.
KeyEvent key_event;
key_event.command = KEY_COMMAND_LINE_UP;
signin_api.OnBrailleKeyEvent(key_event);
user_api.OnBrailleKeyEvent(key_event);
EXPECT_EQ(0, signin_delegate->GetEventCount());
EXPECT_EQ(1, user_delegate->GetEventCount());
// Lock screen, and make sure that the key event goes to the
// signin profile.
LockScreen(tester.get());
signin_api.OnBrailleKeyEvent(key_event);
user_api.OnBrailleKeyEvent(key_event);
EXPECT_EQ(1, signin_delegate->GetEventCount());
EXPECT_EQ(1, user_delegate->GetEventCount());
// Unlock screen, making sur ekey events go to the user profile again.
DismissLockScreen(tester.get());
signin_api.OnBrailleKeyEvent(key_event);
user_api.OnBrailleKeyEvent(key_event);
EXPECT_EQ(1, signin_delegate->GetEventCount());
EXPECT_EQ(2, user_delegate->GetEventCount());
}
} // namespace braille_display_private
} // namespace api
} // namespace extensions
|