blob: 3456abca21709abf2ba0868511ec68bbd493de10 (
plain)
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
|
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <unistd.h>
#include <SDL2/SDL.h>
#include <pthread.h>
#include "loader.h"
#include "bitmap.h"
static void test_jpeg_rotation(void **state)
{
(void)state;
struct imv_loader *ldr = imv_loader_create();
assert_false(SDL_Init(SDL_INIT_VIDEO));
unsigned int NEW_IMAGE = SDL_RegisterEvents(1);
unsigned int BAD_IMAGE = SDL_RegisterEvents(1);
imv_loader_set_event_types(ldr, NEW_IMAGE, BAD_IMAGE);
imv_loader_load(ldr, "test/orientation.jpg", NULL, 0);
struct imv_bitmap *bmp = NULL;
SDL_Event event;
while(SDL_WaitEvent(&event)) {
assert_false(event.type == BAD_IMAGE);
if(event.type == NEW_IMAGE) {
bmp = event.user.data1;
break;
}
}
assert_false(bmp == NULL);
unsigned int width = bmp->width;
assert_true(width == 1);
imv_bitmap_free(bmp);
imv_loader_free(ldr);
}
int main(void)
{
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_jpeg_rotation),
};
return cmocka_run_group_tests(tests, NULL, NULL);
}
/* vim:set ts=2 sts=2 sw=2 et: */
|