Skip to content

Add basic test for anthy #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ option(ENABLE_TEST "Build Test" On)
option(ENABLE_COVERAGE "Build the project with gcov support (Need ENABLE_TEST=On)" Off)

find_package(Fcitx5Core 5.1.2 REQUIRED)
find_package(Fcitx5Module REQUIRED COMPONENTS Clipboard)
find_package(Fcitx5Module REQUIRED COMPONENTS Clipboard TestFrontend)
find_package(Gettext REQUIRED)
find_package(PkgConfig REQUIRED)

Expand Down
2 changes: 1 addition & 1 deletion src/engine.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class AnthyEngine : public fcitx::InputMethodEngineV3 {
void setConfig(const fcitx::RawConfig &config) override {
config_.load(config, true);
saveConfig();
reloadConfig();
populateConfig();
}

void saveConfig() { fcitx::safeSaveAsIni(config_, "conf/anthy.conf"); }
Expand Down
7 changes: 7 additions & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
add_executable(teststylefile teststylefile.cpp)
target_link_libraries(teststylefile stylefile Fcitx5::Core)
add_test(teststylefile teststylefile)

add_subdirectory(addon)
add_subdirectory(inputmethod)
add_executable(testanthy testanthy.cpp)
target_link_libraries(testanthy Fcitx5::Core Fcitx5::Module::TestFrontend)
add_dependencies(testanthy anthy copy-addon copy-im)
add_test(testanthy testanthy)
2 changes: 2 additions & 0 deletions test/addon/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
add_custom_target(copy-addon DEPENDS anthy-addon.conf.in-fmt)
add_custom_command(TARGET copy-addon COMMAND ${CMAKE_COMMAND} -E copy ${PROJECT_BINARY_DIR}/src/anthy-addon.conf ${CMAKE_CURRENT_BINARY_DIR}/anthy.conf)
2 changes: 2 additions & 0 deletions test/inputmethod/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
add_custom_target(copy-im DEPENDS anthy.conf.in-fmt)
add_custom_command(TARGET copy-im COMMAND ${CMAKE_COMMAND} -E copy ${PROJECT_BINARY_DIR}/src/anthy.conf ${CMAKE_CURRENT_BINARY_DIR}/anthy.conf)
67 changes: 67 additions & 0 deletions test/testanthy.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/*
* SPDX-FileCopyrightText: 2021-2021 CSSlayer <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
*/
#include "testdir.h"
#include "testfrontend_public.h"
#include <fcitx-utils/eventdispatcher.h>
#include <fcitx-utils/log.h>
#include <fcitx-utils/standardpath.h>
#include <fcitx-utils/testing.h>
#include <fcitx/addonmanager.h>
#include <fcitx/inputmethodmanager.h>
#include <fcitx/instance.h>
#include <iostream>

using namespace fcitx;

void scheduleEvent(EventDispatcher *dispatcher, Instance *instance) {
dispatcher->schedule([dispatcher, instance]() {
auto *anthy = instance->addonManager().addon("anthy", true);
FCITX_ASSERT(anthy);

auto defaultGroup = instance->inputMethodManager().currentGroup();
defaultGroup.inputMethodList().clear();
defaultGroup.inputMethodList().push_back(InputMethodGroupItem("anthy"));
defaultGroup.setDefaultInputMethod("");
instance->inputMethodManager().setGroup(defaultGroup);
auto *testfrontend = instance->addonManager().addon("testfrontend");
auto uuid =
testfrontend->call<ITestFrontend::createInputContext>("testapp");
auto ic = instance->inputContextManager().findByUUID(uuid);

RawConfig config;
config.setValueByPath("General/TypingMethod", "Nicola");
anthy->setConfig(config);

testfrontend->call<ITestFrontend::keyEvent>(uuid, Key("Muhenkan"),
false);
testfrontend->call<ITestFrontend::keyEvent>(uuid, Key("a"), false);
testfrontend->call<ITestFrontend::keyEvent>(uuid, Key("a"), true);
testfrontend->call<ITestFrontend::keyEvent>(uuid, Key("Muhenkan"),
true);

instance->exit();
});
}

int main() {
setupTestingEnvironment(TESTING_BINARY_DIR, {TESTING_BINARY_DIR "/src"},
{TESTING_BINARY_DIR "/test"});
// fcitx::Log::setLogRule("default=5,table=5,libime-table=5");
char arg0[] = "testanthy";
char arg1[] = "--disable=all";
char arg2[] = "--enable=testim,testfrontend,anthy,testui";
char *argv[] = {arg0, arg1, arg2};
fcitx::Log::setLogRule("default=5,anthy=5");
Instance instance(FCITX_ARRAY_SIZE(argv), argv);
instance.addonManager().registerDefaultLoader(nullptr);
EventDispatcher dispatcher;
dispatcher.attach(&instance.eventLoop());
scheduleEvent(&dispatcher, &instance);
instance.exec();

return 0;
}
Loading