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
|
#if LV_BUILD_TEST
#include "../lvgl.h"
#include "../../lvgl_private.h"
#include "unity/unity.h"
void setUp(void)
{
/* Function run before every test */
}
void tearDown(void)
{
lv_obj_clean(lv_screen_active());
}
static void create_image(const void * src)
{
lv_obj_t * img = lv_image_create(lv_screen_active());
lv_image_set_src(img, src);
lv_obj_center(img);
}
static void bin_decoder(const void * src, const char * screenshot)
{
create_image(src);
TEST_ASSERT_EQUAL_SCREENSHOT(screenshot);
lv_obj_clean(lv_screen_active());
size_t mem_before = lv_test_get_free_mem();
for(uint32_t i = 0; i < 20; i++) {
lv_obj_clean(lv_screen_active());
create_image(src);
lv_obj_invalidate(lv_screen_active());
lv_refr_now(NULL);
}
TEST_ASSERT_EQUAL_SCREENSHOT(screenshot);
lv_obj_clean(lv_screen_active());
TEST_ASSERT_MEM_LEAK_LESS_THAN(mem_before, 0);
}
static void create_image_tile(const void * src)
{
lv_obj_t * img = lv_image_create(lv_screen_active());
lv_image_set_src(img, src);
lv_obj_center(img);
lv_obj_set_size(img, 275, 175);
lv_image_set_inner_align(img, LV_IMAGE_ALIGN_TILE);
}
void bin_decoder_tile(const void * src, const char * screenshot)
{
create_image_tile(src);
TEST_ASSERT_EQUAL_SCREENSHOT(screenshot);
lv_obj_clean(lv_screen_active());
size_t mem_before = lv_test_get_free_mem();
for(uint32_t i = 0; i < 20; i++) {
lv_obj_clean(lv_screen_active());
create_image_tile(src);
lv_obj_invalidate(lv_screen_active());
lv_refr_now(NULL);
}
TEST_ASSERT_EQUAL_SCREENSHOT(screenshot);
lv_obj_clean(lv_screen_active());
TEST_ASSERT_MEM_LEAK_LESS_THAN(mem_before, 0);
}
void test_bin_decoder_i4(void)
{
LV_IMAGE_DECLARE(test_image_cogwheel_i4);
bin_decoder(&test_image_cogwheel_i4, "libs/bin_decoder_1.png");
}
void test_bin_decoder_i4_tile(void)
{
LV_IMAGE_DECLARE(test_image_cogwheel_i4);
bin_decoder_tile(&test_image_cogwheel_i4, "libs/bin_decoder_2.png");
}
void test_bin_decoder_argb8888(void)
{
LV_IMAGE_DECLARE(test_image_cogwheel_argb8888);
bin_decoder(&test_image_cogwheel_argb8888, "libs/bin_decoder_3.png");
}
void test_bin_decoder_argb8888_tile(void)
{
LV_IMAGE_DECLARE(test_image_cogwheel_argb8888);
bin_decoder_tile(&test_image_cogwheel_argb8888, "libs/bin_decoder_4.png");
}
#endif
|