This commit is contained in:
parent
148718b3bc
commit
409b56f6a3
2 changed files with 32 additions and 3 deletions
22
hyprtester/src/tests/main/animations.cpp
Normal file
22
hyprtester/src/tests/main/animations.cpp
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#include "../../Log.hpp"
|
||||
#include "tests.hpp"
|
||||
#include "../../shared.hpp"
|
||||
#include "../../hyprctlCompat.hpp"
|
||||
#include <hyprutils/os/Process.hpp>
|
||||
#include <hyprutils/memory/WeakPtr.hpp>
|
||||
|
||||
static int ret = 0;
|
||||
|
||||
using namespace Hyprutils::OS;
|
||||
using namespace Hyprutils::Memory;
|
||||
|
||||
static bool test() {
|
||||
NLog::log("{}Testing animations", Colors::GREEN);
|
||||
|
||||
auto str = getFromSocket("/animations");
|
||||
NLog::log("{}Testing bezier curve output from `hyprctl animations`", Colors::YELLOW);
|
||||
{EXPECT_CONTAINS(str, std::format("beziers:\n\n\tname: quick\n\t\tX0: 0.15\n\t\tY0: 0.00\n\t\tX1: 0.10\n\t\tY1: 1.00"))};
|
||||
return !ret;
|
||||
}
|
||||
|
||||
REGISTER_TEST_FN(test)
|
||||
Loading…
Add table
Add a link
Reference in a new issue