~ruther/qmk_firmware

ref: 2893038fda6cd19ef84d92afa4ae8c4615698e38 qmk_firmware/tests/unicode/unicode_basic/test_unicode_basic.cpp -rw-r--r-- 542 bytes
2893038f — Jay Greco nullbitsco/snap: once again reduce size of bongo_reactive (#23284) 1 year, 6 months ago
                                                                                
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
// Copyright 2023 QMK
// SPDX-License-Identifier: GPL-2.0-or-later

#include "keyboard_report_util.hpp"
#include "keycode.h"
#include "test_common.hpp"
#include "test_keymap_key.hpp"

using testing::_;

class UnicodeBasic : public TestFixture {};

TEST_F(UnicodeBasic, sends_unicode_sequence) {
    TestDriver driver;

    set_unicode_input_mode(UNICODE_MODE_LINUX);

    auto key_uc = KeymapKey(0, 0, 0, UC(0x03A8)); // Ψ

    set_keymap({key_uc});

    EXPECT_UNICODE(driver, 0x03A8);
    tap_key(key_uc);

    VERIFY_AND_CLEAR(driver);
}