Files
tdesktop/Telegram/ThirdParty/rlottie/test/test_lottieanimation_capi.cpp
allhaileris afb81b8278
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
init
2026-02-16 15:50:16 +03:00

35 lines
889 B
C++

#include <gtest/gtest.h>
#include "rlottie_capi.h"
class AnimationCApiTest : public ::testing::Test {
public:
void SetUp()
{
animationInvalid = lottie_animation_from_file("wrong_file.json");
std::string filePath = DEMO_DIR;
filePath +="mask.json";
animation = lottie_animation_from_file(filePath.c_str());
}
void TearDown()
{
if (animation) lottie_animation_destroy(animation);
}
public:
Lottie_Animation *animationInvalid;
Lottie_Animation *animation;
};
TEST_F(AnimationCApiTest, loadFromFile_N) {
ASSERT_FALSE(animationInvalid);
}
TEST_F(AnimationCApiTest, loadFromFile) {
ASSERT_TRUE(animation);
ASSERT_EQ(lottie_animation_get_totalframe(animation), 30);
size_t width, height;
lottie_animation_get_size(animation, &width, &height);
ASSERT_EQ(width, 500);
ASSERT_EQ(height, 500);
}