coverage and test: Add tests
[src/app-framework-binder.git] / coverage / bin / Makefile
1
2 .PHONY: clean binaries
3
4 heredir = .
5 basedir = ../..
6
7 bindings = \
8         hi3.so \
9         hello.so \
10         salut.so \
11         salam.so \
12         shalom.so \
13         demat.so \
14         hellov2.so
15
16 bugs = $(foreach i,\
17         1 2 3 4 5 6 7 8 9 \
18         10 11 12 13 14 15 16 17 18 19 \
19         20 21, \
20         bugs/bug$i.so)
21
22 tests = \
23         test-apiset \
24         test-session \
25         test-wrap-json
26
27 targets = \
28         afb-daemon-cov \
29         afb-client \
30         $(tests) \
31         $(bindings) \
32         $(bugs)
33
34 binaries: $(targets)
35
36 clean:
37         @echo remove all binaries
38         @rm $(targets) *.gcno *.gcda *.o  2>/dev/null || true
39
40 #======================================================================================
41 # definitions
42 #======================================================================================
43
44 incdir = $(basedir)/include
45 srcdir = $(basedir)/src
46 tstdir = $(basedir)/src/tests
47 samdir = $(basedir)/bindings/samples
48
49 bindir = $(heredir)/bin
50
51 deps = openssl libmicrohttpd json-c libsystemd uuid
52
53 ccflags = \
54         -g \
55         -I$(incdir) \
56         $(shell pkg-config --cflags $(deps))
57
58 ldflags = -ldl -lrt -lpthread \
59         $(shell pkg-config --libs $(deps))
60
61 cflags = $(ccflags) $(ldflags)
62
63 defs =  -DAGL_DEVEL \
64         -DWITH_MONITORING_OPTION \
65         -DWITH_SUPERVISION \
66         -DAFB_VERSION=\"cov\" \
67         -DBINDING_INSTALL_DIR=\"$(shell pwd)/fake\"
68
69 afb_lib_src = $(shell ls $(srcdir)/*.c | egrep -v '/afs-|/main-' )
70 afb_lib_obj = $(patsubst $(srcdir)/%.c,%.o,$(afb_lib_src))
71 afb_lib = afb-lib.a
72 afb_lib_defs = $(defs)
73
74 afb_daemon_srcs = $(srcdir)/main-afb-daemon.c $(afb_lib_obj)
75 afb_daemon_defs = $(afb_lib_defs)
76
77 afb_client_srcs = $(srcdir)/main-afb-client-demo.c $(afb_lib_src)
78 afb_client_defs = $(defs)
79
80 tst_defs = $(defs)
81 tst_flags = $(cflags) \
82         -I$(srcdir) \
83         $(shell pkg-config --cflags --libs check)
84
85 tst_defs = '-DAFB_VERSION="cov"' '-DBINDING_INSTALL_DIR="fake"'
86 tst_flags = $(cflags) \
87         -I$(srcdir) \
88         $(shell pkg-config --cflags --libs check)
89
90 hello2_src = $(samdir)/hello2.c
91 hello3_src = $(samdir)/hello3.c
92 hi_src = $(samdir)/hi3.c
93 binding_flags = -shared -fPIC -Wl,--version-script=$(samdir)/export.map
94
95 #======================================================================================
96 # creates the targets
97 #======================================================================================
98
99 %.o: $(srcdir)/%.c
100         @echo creation of $@
101         @gcc -c -o $@ $< --coverage $(afb_lib_defs) $(ccflags)
102
103 afb-daemon-cov: $(afb_daemon_srcs)
104         @echo creation of $@
105         @gcc -o $@ $(afb_daemon_srcs) --coverage $(afb_daemon_defs) $(cflags)
106
107 afb-client: $(afb_client_srcs)
108         @echo creation of $@
109         @gcc -o $@ $(afb_client_srcs) $(afb_client_defs) $(cflags)
110
111 #======================================================================================
112 # create test
113 #======================================================================================
114
115 test-apiset: $(tstdir)/apiset/test-apiset.c $(afb_lib_obj)
116         @echo creation of $@
117         @gcc -o $@ $(tstdir)/apiset/test-apiset.c $(afb_lib_obj) --coverage $(tst_defs) $(tst_flags)
118
119 test-session: $(tstdir)/session/test-session.c $(afb_lib_obj)
120         @echo creation of $@
121         @gcc -o $@ $(tstdir)/session/test-session.c $(afb_lib_obj) --coverage $(tst_defs) $(tst_flags)
122
123 test-wrap-json: $(tstdir)/session/test-session.c $(afb_lib_obj)
124         @echo creation of $@
125         @gcc -o $@ $(tstdir)/wrap-json/test-wrap-json.c $(afb_lib_obj) --coverage $(tst_defs) $(tst_flags)
126
127 #======================================================================================
128 # create bindings
129 #======================================================================================
130
131 hi3.so: $(hi3_src)
132         @echo creation of $@
133         @gcc -o $@ $(hi3_src) $(binding_flags) $(cflags)
134
135 hello.so: $(hello3_src)
136         @echo creation of $@
137         @gcc -o $@ $(hello3_src) '-DAPINAME="hello"' '-DPREINIT_PROVIDE_CLASS="class1 class2"' $(binding_flags) $(cflags)
138
139 salut.so: $(hello3_src)
140         @echo creation of $@
141         @gcc -o $@ $(hello3_src) '-DAPINAME="salut"' '-DPREINIT_REQUIRE_CLASS="class2"' $(binding_flags) $(cflags)
142
143 salam.so: $(hello3_src)
144         @echo creation of $@
145         @gcc -o $@ $(hello3_src) '-DAPINAME="salam"' '-DINIT_REQUIRE_API="hello salut"' $(binding_flags) $(cflags)
146
147 shalom.so: $(hello3_src)
148         @echo creation of $@
149         @gcc -o $@ $(hello3_src) '-DAPINAME="shalom"' $(binding_flags) $(cflags)
150
151 demat.so: $(hello3_src)
152         @echo creation of $@
153         @gcc -o $@ $(hello3_src) '-DAPINAME="demat"' $(binding_flags) $(cflags)
154
155 hellov2.so: $(hello2_src)
156         @echo creation of $@
157         @gcc -o $@ $(hello2_src) '-DAPINAME="hello-v2"' $(binding_flags) $(cflags)
158
159 #======================================================================================
160 # create bugs
161 #======================================================================================
162
163 bugs:
164         @echo creation of directory bugs
165         @mkdir bugs
166
167 bugs/bug%.so: bug.c bugs
168         @echo creation of $@
169         @gcc -o $@ bug.c $(binding_flags) $(cflags) -D$(patsubst bugs/bug%.so,BUG%,$@)