Add a test for the backwards compatibility of generated files.
[apps/agl-service-can-low-level.git] / tests / Makefile
1 CFLAGS=-ansi -Wall -Werror -I .. -g -O0
2 DEPS=../pb_decode.h ../pb_encode.h ../pb.h person.pb.h \
3         callbacks2.pb.h callbacks.pb.h unittests.h unittestproto.pb.h \
4         alltypes.pb.h missing_fields.pb.h
5 TESTS=  decode_unittests encode_unittests \
6         test_decode1 test_decode2 test_decode3 \
7         test_encode1 test_encode2 test_encode3 \
8         test_decode_callbacks test_encode_callbacks \
9         test_missing_fields test_no_messages \
10         test_multiple_files test_cxxcompile test_options \
11         bc_encode bc_decode
12
13 # More strict checks for the core part of nanopb
14 CC_VERSION=$(shell $(CC) -v 2>&1)
15 CFLAGS_CORE=
16 ifneq (,$(findstring gcc,$(CC_VERSION)))
17         CFLAGS_CORE=-pedantic -Wextra -Wcast-qual -Wlogical-op -Wconversion
18         CFLAGS+=--coverage
19         LDFLAGS+=--coverage
20 endif
21 ifneq (,$(findstring clang,$(CC_VERSION)))
22         CFLAGS_CORE=-pedantic -Wextra -Wcast-qual -Wconversion
23 endif
24
25 all: breakpoints $(TESTS) run_unittests
26
27 clean:
28         rm -f $(TESTS) person.pb* alltypes.pb* *.o *.gcda *.gcno *.pb.h *.pb.c
29
30 %.pb.o: %.pb.c %.pb.h
31         $(CC) $(CFLAGS) $(CFLAGS_CORE) -c -o $@ $<
32
33 %.o: %.c
34 %.o: %.c $(DEPS)
35         $(CC) $(CFLAGS) -c -o $@ $<
36
37 pb_encode.o: ../pb_encode.c $(DEPS)
38         $(CC) $(CFLAGS) $(CFLAGS_CORE) -c -o $@ $<
39 pb_decode.o: ../pb_decode.c $(DEPS)
40         $(CC) $(CFLAGS) $(CFLAGS_CORE) -c -o $@ $<
41
42 pb_encode.cxx.o: ../pb_encode.c $(DEPS)
43         $(CXX) $(CFLAGS) $(CFLAGS_CORE) -c -o $@ $<
44 pb_decode.cxx.o: ../pb_decode.c $(DEPS)
45         $(CXX) $(CFLAGS) $(CFLAGS_CORE) -c -o $@ $<
46
47 test_cxxcompile: pb_encode.cxx.o pb_decode.cxx.o
48 test_decode1: test_decode1.o pb_decode.o person.pb.o
49 test_decode2: test_decode2.o pb_decode.o person.pb.o
50 test_decode3: test_decode3.o pb_decode.o alltypes.pb.o
51 test_encode1: test_encode1.o pb_encode.o person.pb.o
52 test_encode2: test_encode2.o pb_encode.o person.pb.o
53 test_encode3: test_encode3.o pb_encode.o alltypes.pb.o
54 test_multiple_files: test_multiple_files.o pb_encode.o callbacks2.pb.o callbacks.pb.o
55 test_decode_callbacks: test_decode_callbacks.o pb_decode.o callbacks.pb.o
56 test_encode_callbacks: test_encode_callbacks.o pb_encode.o callbacks.pb.o
57 test_missing_fields: test_missing_fields.o pb_encode.o pb_decode.o missing_fields.pb.o
58 decode_unittests: decode_unittests.o pb_decode.o unittestproto.pb.o
59 encode_unittests: encode_unittests.o pb_encode.o unittestproto.pb.o
60 test_no_messages: no_messages.pb.h no_messages.pb.c no_messages.pb.o
61 bc_encode: bc_alltypes.pb.o pb_encode.o bc_encode.o
62 bc_decode: bc_alltypes.pb.o pb_decode.o bc_decode.o
63
64 %.pb: %.proto
65         protoc -I. -I../generator -I/usr/include -o$@ $<
66
67 %.pb.c %.pb.h: %.pb ../generator/nanopb_generator.py
68         python ../generator/nanopb_generator.py $<
69
70 breakpoints: ../*.c *.c
71         grep -n 'return false;' $^ | cut -d: -f-2 | xargs -n 1 echo b > $@
72
73 coverage: run_unittests
74         gcov pb_encode.gcda
75         gcov pb_decode.gcda
76
77 run_unittests: $(TESTS)
78         rm -f *.gcda
79         
80         ./decode_unittests > /dev/null
81         ./encode_unittests > /dev/null
82         
83         [ "`./test_encode1 | ./test_decode1`" = \
84         "`./test_encode1 | protoc --decode=Person -I. -I../generator -I/usr/include person.proto`" ]
85
86         [ "`./test_encode2 | ./test_decode1`" = \
87         "`./test_encode2 | protoc --decode=Person -I. -I../generator -I/usr/include person.proto`" ]
88
89         [ "`./test_encode2 | ./test_decode2`" = \
90         "`./test_encode2 | protoc --decode=Person -I. -I../generator -I/usr/include person.proto`" ]
91         
92         [ "`./test_decode2 < person_with_extra_field.pb`" = \
93         "`./test_encode2 | ./test_decode2`" ]
94         
95         [ "`./test_encode_callbacks | ./test_decode_callbacks`" = \
96         "`./test_encode_callbacks | protoc --decode=TestMessage callbacks.proto`" ]
97
98         ./test_encode3 | ./test_decode3
99         ./test_encode3 1 | ./test_decode3 1
100         ./test_encode3 1 | protoc --decode=AllTypes -I. -I../generator -I/usr/include alltypes.proto >/dev/null
101         ./bc_encode | ./bc_decode
102         
103         ./test_missing_fields
104
105 test_options: options.pb.h options.expected options.pb.o
106         cat options.expected | while read -r p; do \
107             if ! grep -q "$$p" $<; then \
108                 echo Expected: "$$p"; \
109                 exit 1; \
110             fi \
111         done
112
113 run_fuzztest: test_decode2
114         bash -c 'I=1; while true; do cat /dev/urandom | ./test_decode2 > /dev/null; I=$$(($$I+1)); echo -en "\r$$I"; done'