Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / ui / events / keycodes / dom4 / keycode_converter_unittest.cc
blob0b96583617b7c09d7867583991813043ccb5a081
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/events/keycodes/dom4/keycode_converter.h"
7 #include <map>
9 #include "base/basictypes.h"
10 #include "testing/gtest/include/gtest/gtest.h"
12 using ui::KeycodeConverter;
14 namespace {
16 #if defined(OS_WIN)
17 const size_t kExpectedMappedKeyCount = 138;
18 #elif defined(OS_LINUX)
19 const size_t kExpectedMappedKeyCount = 145;
20 #elif defined(OS_MACOSX)
21 const size_t kExpectedMappedKeyCount = 118;
22 #else
23 const size_t kExpectedMappedKeyCount = 0;
24 #endif
26 const uint32_t kUsbNonExistentKeycode = 0xffffff;
27 const uint32_t kUsbUsBackslash = 0x070031;
28 const uint32_t kUsbNonUsHash = 0x070032;
30 TEST(UsbKeycodeMap, Basic) {
31 // Verify that the first element in the table is the "invalid" code.
32 const ui::KeycodeMapEntry* keycode_map =
33 ui::KeycodeConverter::GetKeycodeMapForTest();
34 EXPECT_EQ(ui::KeycodeConverter::InvalidUsbKeycode(),
35 keycode_map[0].usb_keycode);
36 EXPECT_EQ(ui::KeycodeConverter::InvalidNativeKeycode(),
37 keycode_map[0].native_keycode);
38 EXPECT_STREQ(ui::KeycodeConverter::InvalidKeyboardEventCode(),
39 "Unidentified");
40 EXPECT_EQ(ui::KeycodeConverter::InvalidNativeKeycode(),
41 ui::KeycodeConverter::CodeToNativeKeycode("Unidentified"));
43 // Verify that there are no duplicate entries in the mapping.
44 std::map<uint32_t, uint16_t> usb_to_native;
45 std::map<uint16_t, uint32_t> native_to_usb;
46 size_t numEntries = ui::KeycodeConverter::NumKeycodeMapEntriesForTest();
47 for (size_t i = 0; i < numEntries; ++i) {
48 const ui::KeycodeMapEntry* entry = &keycode_map[i];
49 // Don't test keys with no native keycode mapping on this platform.
50 if (entry->native_keycode == ui::KeycodeConverter::InvalidNativeKeycode())
51 continue;
53 // Verify UsbKeycodeToNativeKeycode works for this key.
54 EXPECT_EQ(
55 entry->native_keycode,
56 ui::KeycodeConverter::UsbKeycodeToNativeKeycode(entry->usb_keycode));
58 // Verify CodeToNativeKeycode and NativeKeycodeToCode work correctly.
59 if (entry->code) {
60 EXPECT_EQ(entry->native_keycode,
61 ui::KeycodeConverter::CodeToNativeKeycode(entry->code));
62 EXPECT_STREQ(
63 entry->code,
64 ui::KeycodeConverter::NativeKeycodeToCode(entry->native_keycode));
66 else {
67 EXPECT_EQ(ui::KeycodeConverter::InvalidNativeKeycode(),
68 ui::KeycodeConverter::CodeToNativeKeycode(entry->code));
71 // Verify that the USB or native codes aren't duplicated.
72 EXPECT_EQ(0U, usb_to_native.count(entry->usb_keycode))
73 << " duplicate of USB code 0x" << std::hex << std::setfill('0')
74 << std::setw(6) << entry->usb_keycode
75 << " to native 0x"
76 << std::setw(4) << entry->native_keycode
77 << " (previous was 0x"
78 << std::setw(4) << usb_to_native[entry->usb_keycode]
79 << ")";
80 usb_to_native[entry->usb_keycode] = entry->native_keycode;
81 EXPECT_EQ(0U, native_to_usb.count(entry->native_keycode))
82 << " duplicate of native code 0x" << std::hex << std::setfill('0')
83 << std::setw(4) << entry->native_keycode
84 << " to USB 0x"
85 << std::setw(6) << entry->usb_keycode
86 << " (previous was 0x"
87 << std::setw(6) << native_to_usb[entry->native_keycode]
88 << ")";
89 native_to_usb[entry->native_keycode] = entry->usb_keycode;
91 ASSERT_EQ(usb_to_native.size(), native_to_usb.size());
93 // Verify that the number of mapped keys is what we expect, i.e. we haven't
94 // lost any, and if we've added some then the expectation has been updated.
95 EXPECT_EQ(kExpectedMappedKeyCount, usb_to_native.size());
98 TEST(UsbKeycodeMap, NonExistent) {
99 // Verify that UsbKeycodeToNativeKeycode works for a non-existent USB keycode.
100 EXPECT_EQ(
101 ui::KeycodeConverter::InvalidNativeKeycode(),
102 ui::KeycodeConverter::UsbKeycodeToNativeKeycode(kUsbNonExistentKeycode));
105 TEST(UsbKeycodeMap, UsBackslashIsNonUsHash) {
106 // Verify that UsbKeycodeToNativeKeycode treats the non-US "hash" key
107 // as equivalent to the US "backslash" key.
108 EXPECT_EQ(ui::KeycodeConverter::UsbKeycodeToNativeKeycode(kUsbUsBackslash),
109 ui::KeycodeConverter::UsbKeycodeToNativeKeycode(kUsbNonUsHash));
112 } // namespace