test: Add isds-interpret_matches
[libisds.git] / test / offline / Makefile.am
blob53a5a3e24e05e128d899f71379434dbb3a531f87
1 AUTOMAKE_OPTIONS = color-tests parallel-tests
2 export VERBOSE=1
4 libdirpath = src
5 LIBDIR = $(top_srcdir)/$(libdirpath)
6 localedir = $(datadir)/locale
7 AM_CPPFLAGS = -I$(LIBDIR) -I$(top_builddir)/$(libdirpath) \
8                           -DSRCDIR=\"$(top_srcdir)\"
10 # Large files needed by GPGME
11 AM_CPPFLAGS += @XML_CPPFLAGS@ @LIBCURL_CPPFLAGS@ \
12                                           -DLOCALEDIR=\"$(localedir)\"
13 AM_CFLAGS = @LIBGCRYPT_CFLAGS@ @GPGME_CFLAGS@
14 LDADD = @XML_LIBS@ @LIBCURL@ @LIBGCRYPT_LIBS@ @GPGME_LIBS@ @EXPAT_LIBS@ \
15                 @LTLIBINTL@
17 # To fake home dir for gnupg2
18 export HOME=@top_builddir@
20 TESTS = prepare_environment \
21                 b64decode b64encode \
22                 compute_hash context guess_raw_type init_crypto isds_init load_raw \
23                 normalize_mime_type utf82locale \
24                 isds_list_free isds_pki_credentials_free isds_hash_free \
25                 isds_PersonName_free isds_BirthInfo_free isds_Address_free \
26                 isds_DbOwnerInfo_free isds_DbUserInfo_free isds_event_free \
27                 isds_envelope_free isds_document_free isds_message_free \
28                 isds_message_copy_free isds_message_status_change_free isds_approval_free \
29                 isds_commercial_permission_free isds_credentials_delivery_free \
30                 isds_credit_event_free isds_fulltext_result_free \
31                 isds_PersonName_duplicate isds_Address_duplicate \
32                 isds_DbOwnerInfo_duplicate isds_DbUserInfo_duplicate \
33                 isds-filemetatype isds-hash_algorithm \
34                 isds-timestring2timeval \
35                 isds-uint2isds_message_status isds-eventstring2event \
36                 isds-interpret_matches
37 if BUILD_CURL
38 TESTS += isds-dbtype isds-sendertype isds-usertype isds-paymenttype\
39                  isds-crediteventtype isds-datestring2tm isds-tm2datestring \
40                  isds-timeval2timestring \
41                  soap-decode_header_value soap-string2isds_otp_resolution
42 endif
45 noinst_PROGRAMS = $(TESTS)
47 common = ../test.c ../test.h ../test-tools.h \
48         $(LIBDIR)/cdecode.c \
49         $(LIBDIR)/cencode.c \
50         $(LIBDIR)/isds.c \
51         $(LIBDIR)/physxml.c \
52         $(LIBDIR)/utils.c \
53         $(LIBDIR)/validator.c \
54         $(LIBDIR)/cdecode.h \
55         $(LIBDIR)/cencode.h \
56         $(LIBDIR)/crypto.h \
57         $(LIBDIR)/gettext.h \
58         $(LIBDIR)/isds.h \
59         $(LIBDIR)/isds_priv.h \
60         $(LIBDIR)/physxml.h \
61         $(LIBDIR)/utils.h \
62         $(LIBDIR)/validator.h
63 if USE_OPENSSL_BACKEND
64 common += \
65         $(LIBDIR)/crypto_openssl.c
66 else
67 common += \
68         $(LIBDIR)/crypto_gpg.c
69 endif
70 if BUILD_CURL
71 common += $(LIBDIR)/soap.c $(LIBDIR)/soap.h
72 endif
73 if WIN32
74 common += $(LIBDIR)/win32.c $(LIBDIR)/win32.h
75 else
76 common += $(LIBDIR)/unix.c $(LIBDIR)/unix.h
77 endif
79 # Omit isds.c
80 isds_common = ../test.c ../test.h ../test-tools.h \
81         $(LIBDIR)/cdecode.c \
82         $(LIBDIR)/cencode.c \
83         $(LIBDIR)/physxml.c \
84         $(LIBDIR)/utils.c \
85         $(LIBDIR)/validator.c \
86         $(LIBDIR)/cdecode.h \
87         $(LIBDIR)/cencode.h \
88         $(LIBDIR)/crypto.h \
89         $(LIBDIR)/isds.h \
90         $(LIBDIR)/isds_priv.h \
91         $(LIBDIR)/physxml.h \
92         $(LIBDIR)/utils.h \
93         $(LIBDIR)/validator.h
94 if USE_OPENSSL_BACKEND
95 isds_common += \
96         $(LIBDIR)/crypto_openssl.c
97 else
98 isds_common += \
99         $(LIBDIR)/crypto_gpg.c
100 endif
101 if BUILD_CURL
102 isds_common += $(LIBDIR)/soap.c $(LIBDIR)/soap.h
103 endif
104 if WIN32
105 isds_common += $(LIBDIR)/win32.c $(LIBDIR)/win32.h
106 else
107 isds_common += $(LIBDIR)/unix.c $(LIBDIR)/unix.h
108 endif
110 # Omit soap.c
111 soap_common = ../test.c ../test.h ../test-tools.h \
112         $(LIBDIR)/cdecode.c \
113         $(LIBDIR)/cencode.c \
114         $(LIBDIR)/isds.c \
115         $(LIBDIR)/physxml.c \
116         $(LIBDIR)/utils.c \
117         $(LIBDIR)/validator.c \
118         $(LIBDIR)/cdecode.h \
119         $(LIBDIR)/cencode.h \
120         $(LIBDIR)/crypto.h \
121         $(LIBDIR)/isds.h \
122         $(LIBDIR)/isds_priv.h \
123         $(LIBDIR)/physxml.h \
124         $(LIBDIR)/utils.h \
125         $(LIBDIR)/validator.h
126 if USE_OPENSSL_BACKEND
127 soap_common += \
128         $(LIBDIR)/crypto_openssl.c
129 else
130 soap_common += \
131         $(LIBDIR)/crypto_gpg.c
132 endif
133 if BUILD_CURL
134 soap_common += $(LIBDIR)/soap.h
135 endif
136 if WIN32
137 soap_common += $(LIBDIR)/win32.c $(LIBDIR)/win32.h
138 else
139 soap_common += $(LIBDIR)/unix.c $(LIBDIR)/unix.h
140 endif
142 # Access _hidden symbols
143 b64decode_SOURCES               = b64decode.c $(common)
144 b64encode_SOURCES               = b64encode.c $(common)
145 compute_hash_SOURCES    = compute_hash.c $(common)
146 context_SOURCES                 = context.c $(common)
147 guess_raw_type_SOURCES  = guess_raw_type.c $(common)
148 init_crypto_SOURCES     = init_crypto.c $(common)
149 isds_init_SOURCES               = isds_init.c $(common)
150 load_raw_SOURCES                = load_raw.c $(common)
151 normalize_mime_type_SOURCES             = normalize_mime_type.c $(common)
152 utf82locale_SOURCES             = utf82locale.c $(common)
153 isds_list_free_SOURCES  = isds_list_free.c $(common)
154 isds_pki_credentials_free_SOURCES       = isds_pki_credentials_free.c $(common)
155 isds_hash_free_SOURCES  = isds_hash_free.c $(common)
156 isds_PersonName_free_SOURCES    = isds_PersonName_free.c $(common)
157 isds_BirthInfo_free_SOURCES     = isds_BirthInfo_free.c $(common)
158 isds_Address_free_SOURCES       = isds_Address_free.c $(common)
159 isds_DbOwnerInfo_free_SOURCES   = isds_DbOwnerInfo_free.c $(common)
160 isds_DbUserInfo_free_SOURCES    = isds_DbUserInfo_free.c $(common)
161 isds_event_free_SOURCES         = isds_event_free.c $(common)
162 isds_envelope_free_SOURCES      = isds_envelope_free.c $(common)
163 isds_document_free_SOURCES      = isds_document_free.c $(common)
164 isds_message_free_SOURCES       = isds_message_free.c $(common)
165 isds_message_copy_free_SOURCES  = isds_message_copy_free.c $(common)
166 isds_message_status_change_free_SOURCES = isds_message_status_change_free.c \
167                                                                                   $(common)
168 isds_approval_free_SOURCES      = isds_approval_free.c $(common)
169 isds_commercial_permission_free_SOURCES = isds_commercial_permission_free.c \
170                                                                                   $(common)
171 isds_credentials_delivery_free_SOURCES  = isds_credentials_delivery_free.c \
172                                                                                   $(common)
173 isds_credit_event_free_SOURCES  = isds_credit_event_free.c $(common)
174 isds_fulltext_result_free_SOURCES       = isds_fulltext_result_free.c $(common)
175 isds_PersonName_duplicate_SOURCES       = isds_PersonName_duplicate.c $(common)
176 isds_Address_duplicate_SOURCES  = isds_Address_duplicate.c $(common)
177 isds_DbOwnerInfo_duplicate_SOURCES      = isds_DbOwnerInfo_duplicate.c $(common)
178 isds_DbUserInfo_duplicate_SOURCES       = isds_DbUserInfo_duplicate.c $(common)
180 # Access static symbols from isds.c
181 isds_dbtype_SOURCES             = isds-dbtype.c $(isds_common)
182 isds_filemetatype_SOURCES       = isds-filemetatype.c $(isds_common)
183 isds_hash_algorithm_SOURCES = isds-hash_algorithm.c $(isds_common)
184 isds_sendertype_SOURCES         = isds-sendertype.c $(isds_common)
185 isds_usertype_SOURCES           = isds-usertype.c $(isds_common)
186 isds_paymenttype_SOURCES        = isds-paymenttype.c $(isds_common)
187 isds_crediteventtype_SOURCES    = isds-crediteventtype.c $(isds_common)
188 isds_datestring2tm_SOURCES      = isds-datestring2tm.c $(isds_common)
189 isds_tm2datestring_SOURCES      = isds-tm2datestring.c $(isds_common)
190 isds_timestring2timeval_SOURCES = isds-timestring2timeval.c $(isds_common)
191 isds_timeval2timestring_SOURCES = isds-timeval2timestring.c $(isds_common)
192 isds_uint2isds_message_status_SOURCES   = isds-uint2isds_message_status.c \
193                                                                                   $(isds_common)
194 isds_eventstring2event_SOURCES  = isds-eventstring2event.c $(isds_common)
195 isds_interpret_matches_SOURCES  = isds-interpret_matches.c $(isds_common)
197 # Access static symbols from soap.c
198 soap_decode_header_value_SOURCES        = soap-decode_header_value.c $(soap_common)
199 soap_string2isds_otp_resolution_SOURCES = soap-string2isds_otp_resolution.c \
200                                                                                   $(soap_common)
202 # Tests that need .gnupg
203 guess_raw_type.log load_raw.log: prepare_environment.log
205 prepare_environment_SOURCES = prepare_environment.c \
206                                                           ../test.c ../test.h ../test-tools.h