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
|
// Copyright (c) 2012 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 "base/logging.h"
#include "chrome/browser/chromeos/input_method/ibus_controller_impl.h"
#include "chrome/browser/chromeos/input_method/input_method_property.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace chromeos {
namespace input_method {
namespace {
bool FindAndUpdateProperty(const InputMethodProperty& new_prop,
InputMethodPropertyList* prop_list) {
return IBusControllerImpl::FindAndUpdatePropertyForTesting(new_prop,
prop_list);
}
} // namespace
TEST(IBusControllerImplTest, TestFindAndUpdateProperty) {
InputMethodPropertyList properties;
EXPECT_FALSE(FindAndUpdateProperty(InputMethodProperty(), &properties));
properties.push_back(
InputMethodProperty("key1", "label1", false, false, 0));
EXPECT_FALSE(FindAndUpdateProperty(InputMethodProperty(), &properties));
EXPECT_FALSE(FindAndUpdateProperty(
InputMethodProperty("keyX", "labelX", false, false, 0), &properties));
EXPECT_EQ(InputMethodProperty("key1", "label1", false, false, 0),
properties[0]);
EXPECT_TRUE(FindAndUpdateProperty(
InputMethodProperty("key1", "labelY", false, false, 0), &properties));
EXPECT_EQ(InputMethodProperty("key1", "labelY", false, false, 0),
properties[0]);
properties.push_back(
InputMethodProperty("key2", "label2", false, false, 0));
EXPECT_FALSE(FindAndUpdateProperty(InputMethodProperty(), &properties));
EXPECT_FALSE(FindAndUpdateProperty(
InputMethodProperty("keyX", "labelX", false, false, 0), &properties));
EXPECT_EQ(InputMethodProperty("key2", "label2", false, false, 0),
properties[1]);
EXPECT_TRUE(FindAndUpdateProperty(
InputMethodProperty("key2", "labelZ", false, false, 0), &properties));
EXPECT_EQ(InputMethodProperty("key2", "labelZ", false, false, 0),
properties[1]);
}
} // namespace input_method
} // namespace chromeos
|