Fix test scripts [ci skip]
[freeradius.git] / src / tests / Makefile
1 # -*- text -*-
2 ##
3 ## Makefile -- Build and run tests for the server.
4 ##
5 ##      http://www.freeradius.org/
6 ##      $Id$
7 ##
8 #
9 include ../../Make.inc
10
11 BUILD_PATH := $(top_builddir)/build
12 BIN_PATH := $(BUILD_PATH)/bin/local
13 LIB_PATH := $(BUILD_PATH)/lib/local/.libs/
14 DYLD_LIBRARY_PATH := $(DYLD_LIBRARY_PATH):$(LIB_PATH)
15
16 export DYLD_LIBRARY_PATH
17
18 RADDB_PATH := $(top_builddir)/raddb
19
20 TESTS   = user_password chap mschapv1 digest-01/digest* test.example.com \
21         wimax
22
23 PORT     = 12340
24 ACCTPORT = $(shell expr $(PORT) + 1)
25
26 #       example.com stripped.example.com
27
28 EAPOL_TEST = eapol_test
29
30 EAP_TLS_TESTS = eap-ttls-pap.conf eap-mschapv2.conf \
31               eap-ttls-mschapv2.conf peap-mschapv2.conf
32
33 SECRET  = testing123
34
35 .PHONY: all eap dictionary clean
36
37 #
38 #       Build the directory for testing the server
39 #
40 all: tests
41
42 clean:
43         @rm -f $(RADDB_PATH)/test.conf test.conf dictionary
44
45 dictionary:
46         @echo "# test dictionary not install.  Delete at any time." > dictionary
47         @echo '$$INCLUDE ' $(top_builddir)/share/dictionary >> dictionary
48         @echo '$$INCLUDE ' $(top_builddir)/src/tests/dictionary.test >> dictionary
49
50 test.conf: dictionary
51         @echo "# test configuration file.  Do not install.  Delete at any time." > test.conf
52         @echo "libdir =" $(LIB_PATH) >> test.conf
53         @echo "testdir =" $(top_builddir)/src/tests/ >> test.conf
54         @echo 'dictionary = $${testdir}' >> test.conf
55         @echo 'logdir = $${testdir}' >> test.conf
56         @echo 'radacctdir = $${testdir}' >> test.conf
57         @echo 'pidfile = $${testdir}/radiusd.pid' >> test.conf
58         @echo '$$INCLUDE radiusd.conf' >> test.conf
59         @echo '$$INCLUDE $${testdir}/config/' >> test.conf
60
61 radiusd.pid: $(RADDB_PATH)/test.conf test.conf raddb
62         @$(BIN_PATH)/radiusd -txxl `pwd`/radius.log -md $(RADDB_PATH)/ -n test -i 127.0.0.1 -p $(PORT)
63
64 # We can't make this depend on radiusd.pid, because then make will create
65 # radiusd.pid when we make radiusd.kill, which we don't want.
66 .PHONY: radiusd.kill
67 radiusd.kill:
68         @if [ -f radiusd.pid ]; then \
69                 (kill -TERM `cat radiusd.pid` >/dev/null 2>&1) || exit 0; \
70         fi
71         @rm -f radiusd.pid
72
73 # As test.conf includes radiusd.conf and as radiusd.conf includes everything in
74 # mods-enabled and sites-enable we need to ensure those directories have been
75 # created and are up to date.
76 .PHONY: raddb
77 raddb:
78         @$(MAKE) -C $(RADDB_PATH) mods-enabled sites-enabled
79
80 #  Link from the main database directory to here
81 $(RADDB_PATH)/test.conf: test.conf
82         @[ -f $(RADDB_PATH)/test.conf ] || ln -s ../src/tests/test.conf $(RADDB_PATH)/
83
84 # kill the server (if it's running)
85 # start the server
86 # run the tests (ignoring any failures)
87 # kill the server
88 # remove the changes to raddb/
89 tests: $(RADDB_PATH)/test.conf radiusd.kill
90         @chmod a+x runtests.sh
91         @rm -f radius.log
92         @$(MAKE) radiusd.pid
93         @BIN_PATH="$(BIN_PATH)" ./runtests.sh $(TESTS)
94         @$(MAKE) radiusd.kill
95         @rm -f $(RADDB_PATH)/test.conf
96
97 tests.eap: $(RADDB_PATH)/test.conf radiusd.kill
98         @chmod a+x runtests.sh
99         @rm -f radius.log
100         @$(MAKE) radiusd.pid
101         @$(MAKE) eap
102         @$(MAKE) radiusd.kill
103         @rm -f $(RADDB_PATH)/test.conf
104
105 eap: $(EAP_TLS_TESTS)
106         for x in $(EAP_TLS_TESTS); do \
107                 $(EAPOL_TEST) -c $$x -p $(PORT) -s $(SECRET); \
108         done
109
110 md5:
111         $(EAPOL_TEST) -c eap-md5.conf -s $(SECRET) 
112
113 tls:
114         $(EAPOL_TEST) -c eap-ttls-tls.conf -s $(SECRET)
115
116 ttls:
117         $(EAPOL_TEST) -c eap-ttls-pap.conf -s $(SECRET)
118
119 peap:
120         $(EAPOL_TEST) -c peap-mschapv2.conf -s $(SECRET)
121
122 leap:
123         $(EAPOL_TEST) -c leap.conf -s $(SECRET)
124
125 ATTRS   := rfc.txt errors.txt extended.txt lucent.txt wimax.txt
126
127 attrs:  $(ATTRS) ../main/radattr
128         ../main/radattr -d ../../share rfc.txt
129
130 ${LIBRADIUS}: $(wildcard ../include/*.h) $(wildcard ../lib/*.c)
131         $(MAKE) -C ../lib all
132
133 ../main/radattr: ${LIBRADIUS} ../main/radattr.c
134         $(MAKE) -C ../main radattr