| // 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 "chrome/browser/extensions/extension_apitest.h" |
| |
| #include <vector> |
| |
| #include "base/command_line.h" |
| #include "base/memory/ref_counted.h" |
| #include "base/strings/stringprintf.h" |
| #include "chrome/browser/chromeos/extensions/input_method_event_router.h" |
| #include "chrome/browser/chromeos/input_method/input_method_util.h" |
| #include "chrome/common/pref_names.h" |
| #include "chromeos/chromeos_switches.h" |
| #include "components/prefs/pref_service.h" |
| #include "content/public/browser/notification_observer.h" |
| #include "content/public/browser/notification_registrar.h" |
| #include "content/public/browser/notification_service.h" |
| #include "extensions/common/switches.h" |
| #include "extensions/browser/api/test/test_api.h" |
| #include "extensions/browser/notification_types.h" |
| #include "extensions/test/extension_test_message_listener.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| #include "ui/base/ime/chromeos/extension_ime_util.h" |
| #include "ui/base/ime/chromeos/input_method_manager.h" |
| #include "ui/base/ime/chromeos/input_method_whitelist.h" |
| |
| using namespace chromeos::input_method; |
| |
| namespace { |
| |
| const char kLoginScreenUILanguage[] = "fr"; |
| const char kInitialInputMethodOnLoginScreen[] = "xkb:us::eng"; |
| const char kBackgroundReady[] = "ready"; |
| |
| // Class that listens for the JS message. |
| class TestListener : public content::NotificationObserver { |
| public: |
| TestListener() { |
| registrar_.Add(this, |
| extensions::NOTIFICATION_EXTENSION_TEST_MESSAGE, |
| content::NotificationService::AllSources()); |
| } |
| |
| ~TestListener() override {} |
| |
| // Implements the content::NotificationObserver interface. |
| void Observe(int type, |
| const content::NotificationSource& source, |
| const content::NotificationDetails& details) override { |
| const std::string& content = *content::Details<std::string>(details).ptr(); |
| if (content == kBackgroundReady) { |
| // Initializes IMF for testing when receives ready message from |
| // background. |
| InputMethodManager* manager = InputMethodManager::Get(); |
| manager->GetInputMethodUtil()->InitXkbInputMethodsForTesting( |
| *InputMethodWhitelist().GetSupportedInputMethods()); |
| |
| std::vector<std::string> keyboard_layouts; |
| keyboard_layouts.push_back( |
| chromeos::extension_ime_util::GetInputMethodIDByEngineID( |
| kInitialInputMethodOnLoginScreen)); |
| manager->GetActiveIMEState()->EnableLoginLayouts(kLoginScreenUILanguage, |
| keyboard_layouts); |
| } |
| } |
| |
| private: |
| content::NotificationRegistrar registrar_; |
| }; |
| |
| class ExtensionInputMethodApiTest : public ExtensionApiTest { |
| void SetUpCommandLine(base::CommandLine* command_line) override { |
| ExtensionApiTest::SetUpCommandLine(command_line); |
| command_line->AppendSwitchASCII( |
| extensions::switches::kWhitelistedExtensionID, |
| "ilanclmaeigfpnmdlgelmhkpkegdioip"); |
| command_line->AppendSwitch(chromeos::switches::kEnableImeMenu); |
| } |
| }; |
| |
| } // namespace |
| |
| IN_PROC_BROWSER_TEST_F(ExtensionInputMethodApiTest, Basic) { |
| // Listener for extension's background ready. |
| TestListener listener; |
| |
| ASSERT_TRUE(RunExtensionTest("input_method/basic")) << message_; |
| } |
| |
| IN_PROC_BROWSER_TEST_F(ExtensionInputMethodApiTest, ImeMenuActivation) { |
| // Listener for IME menu initial state ready. |
| ExtensionTestMessageListener config_listener("config_ready", false); |
| // Listener for IME menu event ready. |
| ExtensionTestMessageListener event_listener("event_ready", false); |
| |
| browser()->profile()->GetPrefs()->SetBoolean(prefs::kLanguageImeMenuActivated, |
| true); |
| |
| // Test the initial state and add listener for IME menu activation change. |
| ASSERT_TRUE( |
| LoadExtension(test_data_dir_.AppendASCII("input_method/ime_menu"))); |
| ASSERT_TRUE(config_listener.WaitUntilSatisfied()) << message_; |
| |
| // Trigger chrome.inputMethodPrivate.onImeMenuActivationChanged() event. |
| browser()->profile()->GetPrefs()->SetBoolean(prefs::kLanguageImeMenuActivated, |
| false); |
| // Test that the extension gets the IME activation change event properly. |
| ASSERT_TRUE(event_listener.WaitUntilSatisfied()) << message_; |
| } |