mirror of
https://github.com/slint-ui/slint.git
synced 2025-07-07 21:25:33 +00:00

Some checks failed
autofix.ci / format_fix (push) Has been cancelled
autofix.ci / lint_typecheck (push) Has been cancelled
CI / files-changed (push) Has been cancelled
CI / ffi_32bit_build (push) Has been cancelled
CI / build_and_test (--exclude ffmpeg --exclude gstreamer-player, macos-14, stable) (push) Has been cancelled
CI / build_and_test (--exclude ffmpeg --exclude gstreamer-player, windows-2022, 1.85) (push) Has been cancelled
CI / build_and_test (--exclude ffmpeg --exclude gstreamer-player, windows-2022, beta) (push) Has been cancelled
CI / build_and_test (--exclude ffmpeg --exclude gstreamer-player, windows-2022, stable) (push) Has been cancelled
CI / build_and_test (ubuntu-22.04, 1.85) (push) Has been cancelled
CI / build_and_test (ubuntu-22.04, nightly) (push) Has been cancelled
CI / node_test (macos-14) (push) Has been cancelled
CI / node_test (ubuntu-22.04) (push) Has been cancelled
CI / node_test (windows-2022) (push) Has been cancelled
CI / python_test (macos-14) (push) Has been cancelled
CI / python_test (ubuntu-22.04) (push) Has been cancelled
CI / python_test (windows-2022) (push) Has been cancelled
CI / cpp_test_driver (macos-13) (push) Has been cancelled
CI / cpp_test_driver (ubuntu-22.04) (push) Has been cancelled
CI / cpp_test_driver (windows-2022) (push) Has been cancelled
CI / docs (push) Has been cancelled
CI / cpp_cmake (macos-14, 1.85) (push) Has been cancelled
CI / cpp_cmake (ubuntu-22.04, stable) (push) Has been cancelled
CI / cpp_cmake (windows-2022, nightly) (push) Has been cancelled
CI / cpp_package_test (push) Has been cancelled
CI / wasm (push) Has been cancelled
CI / wasm_demo (push) Has been cancelled
CI / vsce_build_test (push) Has been cancelled
CI / mcu (pico-st7789, thumbv6m-none-eabi) (push) Has been cancelled
CI / mcu (pico2-st7789, thumbv8m.main-none-eabihf) (push) Has been cancelled
CI / mcu (stm32h735g, thumbv7em-none-eabihf) (push) Has been cancelled
CI / mcu-embassy (push) Has been cancelled
CI / tree-sitter (push) Has been cancelled
CI / updater_test (0.3.0) (push) Has been cancelled
CI / fmt_test (push) Has been cancelled
CI / esp-idf-quick (push) Has been cancelled
CI / android (push) Has been cancelled
CI / miri (push) Has been cancelled
CI / test-figma-inspector (push) Has been cancelled
CMake 4.0 remove some deprecated code < 3.5 Catch2 old version still depend against cmake 3.0 + deprecated method. Necessary to increase version otherwise when we try to compile example with cmake 4.0 it will failed to configure it
187 lines
4.4 KiB
C++
187 lines
4.4 KiB
C++
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
// cSpell: ignore singleshot
|
|
|
|
#define CATCH_CONFIG_MAIN
|
|
#include "catch2/catch_all.hpp"
|
|
|
|
#include <slint.h>
|
|
#include <thread>
|
|
|
|
TEST_CASE("C++ Singleshot Timers")
|
|
{
|
|
using namespace slint;
|
|
int called = 0;
|
|
Timer testTimer(std::chrono::milliseconds(16), [&]() {
|
|
slint::quit_event_loop();
|
|
called += 10;
|
|
});
|
|
REQUIRE(called == 0);
|
|
slint::run_event_loop();
|
|
REQUIRE(called == 10);
|
|
}
|
|
|
|
TEST_CASE("C++ Repeated Timer")
|
|
{
|
|
int timer_triggered = 0;
|
|
slint::Timer timer;
|
|
|
|
timer.start(slint::TimerMode::Repeated, std::chrono::milliseconds(30),
|
|
[&]() { timer_triggered++; });
|
|
|
|
REQUIRE(timer_triggered == 0);
|
|
|
|
bool timer_was_running = false;
|
|
|
|
slint::Timer::single_shot(std::chrono::milliseconds(500), [&]() {
|
|
timer_was_running = timer.running();
|
|
slint::quit_event_loop();
|
|
});
|
|
|
|
slint::run_event_loop();
|
|
|
|
REQUIRE(timer_triggered > 1);
|
|
REQUIRE(timer_was_running);
|
|
}
|
|
|
|
TEST_CASE("C++ Restart Singleshot Timer")
|
|
{
|
|
int timer_triggered = 0;
|
|
slint::Timer timer;
|
|
|
|
timer.start(slint::TimerMode::SingleShot, std::chrono::milliseconds(30),
|
|
[&]() { timer_triggered++; });
|
|
|
|
REQUIRE(timer_triggered == 0);
|
|
REQUIRE(timer.running());
|
|
|
|
bool timer_was_running = true;
|
|
|
|
slint::Timer::single_shot(std::chrono::milliseconds(500), [&]() {
|
|
timer_was_running = timer.running();
|
|
slint::quit_event_loop();
|
|
});
|
|
|
|
slint::run_event_loop();
|
|
|
|
REQUIRE(!timer.running());
|
|
REQUIRE(timer_triggered == 1);
|
|
REQUIRE(!timer_was_running); // At that point the timer is already considered stopped!
|
|
|
|
timer_triggered = 0;
|
|
timer_was_running = true;
|
|
|
|
timer.restart();
|
|
REQUIRE(timer.running());
|
|
slint::Timer::single_shot(std::chrono::milliseconds(500), [&]() {
|
|
timer_was_running = timer.running();
|
|
slint::quit_event_loop();
|
|
});
|
|
|
|
slint::run_event_loop();
|
|
|
|
REQUIRE(timer_triggered == 1);
|
|
REQUIRE(!timer_was_running);
|
|
REQUIRE(!timer.running());
|
|
}
|
|
|
|
TEST_CASE("C++ Restart Repeated Timer")
|
|
{
|
|
int timer_triggered = 0;
|
|
slint::Timer timer;
|
|
|
|
timer.start(slint::TimerMode::Repeated, std::chrono::milliseconds(30),
|
|
[&]() { timer_triggered++; });
|
|
|
|
REQUIRE(timer_triggered == 0);
|
|
|
|
bool timer_was_running = false;
|
|
|
|
slint::Timer::single_shot(std::chrono::milliseconds(500), [&]() {
|
|
timer_was_running = timer.running();
|
|
slint::quit_event_loop();
|
|
});
|
|
|
|
slint::run_event_loop();
|
|
|
|
REQUIRE(timer_triggered > 1);
|
|
REQUIRE(timer_was_running);
|
|
|
|
timer_was_running = false;
|
|
timer_triggered = 0;
|
|
timer.stop();
|
|
slint::Timer::single_shot(std::chrono::milliseconds(500), [&]() {
|
|
timer_was_running = timer.running();
|
|
slint::quit_event_loop();
|
|
});
|
|
|
|
slint::run_event_loop();
|
|
|
|
REQUIRE(timer_triggered == 0);
|
|
REQUIRE(!timer_was_running);
|
|
|
|
timer_was_running = false;
|
|
timer_triggered = 0;
|
|
|
|
timer.restart();
|
|
|
|
slint::Timer::single_shot(std::chrono::milliseconds(500), [&]() {
|
|
timer_was_running = timer.running();
|
|
slint::quit_event_loop();
|
|
});
|
|
|
|
slint::run_event_loop();
|
|
|
|
REQUIRE(timer_triggered > 1);
|
|
REQUIRE(timer_was_running);
|
|
}
|
|
|
|
TEST_CASE("Quit from event")
|
|
{
|
|
int called = 0;
|
|
slint::invoke_from_event_loop([&] {
|
|
slint::quit_event_loop();
|
|
called += 10;
|
|
});
|
|
REQUIRE(called == 0);
|
|
slint::run_event_loop();
|
|
REQUIRE(called == 10);
|
|
}
|
|
|
|
TEST_CASE("Event from thread")
|
|
{
|
|
std::atomic<int> called = 0;
|
|
auto t = std::thread([&] {
|
|
called += 10;
|
|
slint::invoke_from_event_loop([&] {
|
|
called += 100;
|
|
slint::quit_event_loop();
|
|
});
|
|
});
|
|
|
|
slint::run_event_loop();
|
|
REQUIRE(called == 110);
|
|
t.join();
|
|
}
|
|
|
|
TEST_CASE("Blocking Event from thread")
|
|
{
|
|
std::atomic<int> called = 0;
|
|
auto t = std::thread([&] {
|
|
// test returning a, unique_ptr because it is movable-only
|
|
std::unique_ptr foo =
|
|
slint::blocking_invoke_from_event_loop([&] { return std::make_unique<int>(42); });
|
|
called = *foo;
|
|
int xxx = 123;
|
|
slint::blocking_invoke_from_event_loop([&] {
|
|
slint::quit_event_loop();
|
|
xxx = 888999;
|
|
});
|
|
REQUIRE(xxx == 888999);
|
|
});
|
|
|
|
slint::run_event_loop();
|
|
REQUIRE(called == 42);
|
|
t.join();
|
|
}
|