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

Side by Side Diff: chrome/browser/chromeos/input_method/ibus_controller_impl_unittest.cc

Issue 9999018: chrome/browser/chromeos/input_method/ refactoring [part 6 of 6] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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.
4
5 #include "base/logging.h"
6 #include "chrome/browser/chromeos/input_method/ibus_controller_impl.h"
7 #include "chrome/browser/chromeos/input_method/input_method_property.h"
8 #include "testing/gtest/include/gtest/gtest.h"
9
10 namespace chromeos {
11 namespace input_method {
12
13 namespace {
14
15 bool FindAndUpdateProperty(const InputMethodProperty& new_prop,
16 InputMethodPropertyList* prop_list) {
17 return IBusControllerImpl::FindAndUpdatePropertyForTesting(new_prop,
18 prop_list);
19 }
20
21 } // namespace
22
23 TEST(IBusControllerImplTest, TestFindAndUpdateProperty) {
24 InputMethodPropertyList properties;
25 EXPECT_FALSE(FindAndUpdateProperty(InputMethodProperty(), &properties));
26
27 properties.push_back(
28 InputMethodProperty("key1", "label1", false, false, 0));
29 EXPECT_FALSE(FindAndUpdateProperty(InputMethodProperty(), &properties));
30 EXPECT_FALSE(FindAndUpdateProperty(
31 InputMethodProperty("keyX", "labelX", false, false, 0), &properties));
32 EXPECT_EQ(InputMethodProperty("key1", "label1", false, false, 0),
33 properties[0]);
34 EXPECT_TRUE(FindAndUpdateProperty(
35 InputMethodProperty("key1", "labelY", false, false, 0), &properties));
36 EXPECT_EQ(InputMethodProperty("key1", "labelY", false, false, 0),
37 properties[0]);
38
39 properties.push_back(
40 InputMethodProperty("key2", "label2", false, false, 0));
41 EXPECT_FALSE(FindAndUpdateProperty(InputMethodProperty(), &properties));
42 EXPECT_FALSE(FindAndUpdateProperty(
43 InputMethodProperty("keyX", "labelX", false, false, 0), &properties));
44 EXPECT_EQ(InputMethodProperty("key2", "label2", false, false, 0),
45 properties[1]);
46 EXPECT_TRUE(FindAndUpdateProperty(
47 InputMethodProperty("key2", "labelZ", false, false, 0), &properties));
48 EXPECT_EQ(InputMethodProperty("key2", "labelZ", false, false, 0),
49 properties[1]);
50 }
51
52 } // namespace input_method
53 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698