summaryrefslogtreecommitdiff
path: root/src/tests/ecore/ecore_test_args.c
blob: 44fc033b8c6ca633c2dda3b1e142c9d3b0ce9a6f (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
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
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <Ecore.h>
#include "ecore_suite.h"
#include "ecore_private.h"

static const char *args[] = {
  "a", "b", "c", "d", "e", "f", "g", "h"
};

static void
_cb_args1(void *data EINA_UNUSED, const Efl_Event *event)
{
   Efl_Loop_Arguments *arge = event->info;
   unsigned int i;

   fail_if(eina_array_count(arge->argv) != (sizeof (args) / sizeof (args[0])));
   for (i = 0; i < eina_array_count(arge->argv); i++)
     {
        fail_if(!!strcmp(eina_array_data_get(arge->argv, i), args[i]));
     }
   ecore_main_loop_quit();
}

EFL_START_TEST(ecore_test_args1)
{
   efl_event_callback_add(efl_main_loop_get(), EFL_LOOP_EVENT_ARGUMENTS,
                        _cb_args1, NULL);
   ecore_loop_arguments_send(8, args);
   ecore_main_loop_begin();
}
EFL_END_TEST

static void
_cb_args2(void *data EINA_UNUSED, const Efl_Event *event)
{
   Efl_Loop_Arguments *arge = event->info;

   fail_if(eina_array_count(arge->argv) != 1);
   fail_if(!!strcmp(eina_array_data_get(arge->argv, 0), "hello world"));
   ecore_main_loop_quit();
}

EFL_START_TEST(ecore_test_args2)
{
   const char *simple_args[] = {
     "hello world"
   };

   efl_event_callback_add(efl_main_loop_get(), EFL_LOOP_EVENT_ARGUMENTS,
                        _cb_args2, NULL);
   ecore_loop_arguments_send(1, simple_args);
   ecore_main_loop_begin();
}
EFL_END_TEST

static void
_cb_args3(void *data EINA_UNUSED, const Efl_Event *event)
{
   Efl_Loop_Arguments *arge = event->info;

   fail_if(eina_array_count(arge->argv) != 0);
   ecore_main_loop_quit();
}

EFL_START_TEST(ecore_test_args3)
{
   efl_event_callback_add(efl_main_loop_get(), EFL_LOOP_EVENT_ARGUMENTS,
                        _cb_args3, NULL);
   ecore_loop_arguments_send(0, NULL);
   ecore_main_loop_begin();
}
EFL_END_TEST

void ecore_test_ecore_args(TCase *tc)
{
   tcase_add_test(tc, ecore_test_args1);
   tcase_add_test(tc, ecore_test_args2);
   tcase_add_test(tc, ecore_test_args3);
}