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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
/*
Copyright: © 2023 SIL International.
Description: Tests for external event processing for the kmx processor
Create Date: 28 Jul 2023
Authors: Ross Cruickshank (RC)
*/
#include <kmx/kmx_processevent.h>
#include "path.hpp"
#include "state.hpp"
#include "../kmnkbd/action_items.hpp"
#include <test_assert.h>
#include <test_color.h>
#include "../emscripten_filesystem.h"
#include "../load_kmx_file.hpp"
#include <map>
#include <iostream>
/**
* This test will test the infrastructure around the external event processing
* The functions tested are:
* - km_core_event with the event KM_CORE_EVENT_KEYBOARD_ACTIVATED
*/
using namespace km::core::kmx;
km_core_option_item test_env_opts[] =
{
KM_CORE_OPTIONS_END
};
int error_args() {
std::cerr << "kmx: Not enough arguments." << std::endl;
return 1;
}
void test_external_event(const km::core::path &source_file){
km_core_keyboard * test_kb = nullptr;
km_core_state * test_state = nullptr;
km::core::path full_path = source_file;
auto blob = km::tests::load_kmx_file(full_path.native().c_str());
try_status(km_core_keyboard_load_from_blob(full_path.stem().c_str(), blob.data(), blob.size(), &test_kb));
// Setup state, environment
try_status(km_core_state_create(test_kb, test_env_opts, &test_state));
// Set up external events to test the processing.
uint32_t event = KM_CORE_EVENT_KEYBOARD_ACTIVATED;
// For this particular test we want to have the capslock state as on.
// then after the km_core_event the caps lock should be off as the load
// keyboard is a caps always off keyboard
try_status(km_core_event(test_state, event, nullptr));
// The action to turn capslock off must be in the actions list.
test_assert(action_items(test_state, {{KM_CORE_IT_CAPSLOCK, {0,}, {0}}, {KM_CORE_IT_END}}));
km_core_state_dispose(test_state);
km_core_keyboard_dispose(test_kb);
}
int main(int argc, char *argv []) {
int first_arg = 1;
if (argc < 2) {
return error_args();
}
auto arg_color = std::string(argv[1]) == "--color";
if(arg_color) {
first_arg++;
if(argc < 3) {
return error_args();
}
}
console_color::enabled = console_color::isaterminal() || arg_color;
km::core::kmx::g_debug_ToConsole = TRUE;
#ifdef __EMSCRIPTEN__
test_external_event(get_wasm_file_path(argv[first_arg]));
#else
test_external_event(argv[first_arg]);
#endif
return 0;
}
|