From 70cd9c3a7b06bfdcb038978f59e1b86623c5da57 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Wed, 28 Jul 2004 15:54:14 +0000 Subject: [PATCH] modularized tests; it is now possible to add more suites easily. --- tests/Makefile.am | 10 +++--- tests/login_tests.c | 38 ++--------------------- tests/tests.c | 75 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 82 insertions(+), 41 deletions(-) create mode 100644 tests/tests.c diff --git a/tests/Makefile.am b/tests/Makefile.am index 62d9c289..a8b790a7 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,7 +1,7 @@ if WITH_TESTS -TESTS = login_tests -noinst_PROGRAMS = login_tests +TESTS = tests +noinst_PROGRAMS = tests INCLUDES = \ -DPACKAGE=\"@PACKAGE@\" \ @@ -11,12 +11,12 @@ INCLUDES = \ $(LASSO_CFLAGS) \ $(CHECK_CFLAGS) -login_tests_SOURCES = login_tests.c -login_tests_LDADD = \ +tests_SOURCES = tests.c login_tests.c +tests_LDADD = \ $(top_builddir)/lasso/liblasso.la \ $(LASSO_LIBS) \ $(CHECK_LIBS) endif -EXTRA_DIST = login_tests.c +EXTRA_DIST = tests.c login_tests.c diff --git a/tests/login_tests.c b/tests/login_tests.c index 8be25960..edc51e0c 100644 --- a/tests/login_tests.c +++ b/tests/login_tests.c @@ -29,7 +29,7 @@ #include -char* +static char* generateIdentityProviderContextDump() { LassoServer *serverContext; @@ -48,7 +48,7 @@ generateIdentityProviderContextDump() return lasso_server_dump(serverContext); } -char* +static char* generateServiceProviderContextDump() { LassoServer *serverContext; @@ -257,37 +257,3 @@ login_suite() return s; } -int -main(int argc, char *argv[]) -{ - int rc; - Suite *s; - SRunner *sr; - int i; - int dont_fork = 0; - - for (i=1; i + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include +#include + +#include +#include + +extern Suite* login_suite(); +typedef Suite* (*SuiteFunction) (); + +SuiteFunction suites[] = { + login_suite, + NULL +}; + +int +main(int argc, char *argv[]) +{ + int rc; + SRunner *sr; + int i; + int dont_fork = 0; + + for (i=1; i