summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEmmanuel Raviart <eraviart@entrouvert.com>2004-07-24 16:41:19 +0000
committerEmmanuel Raviart <eraviart@entrouvert.com>2004-07-24 16:41:19 +0000
commiteda0f459be1c72ef210b4318eaae6efa06003035 (patch)
treeffd342f1e95aeb2824394c568b9b9625e6701f41 /tests
parent093ef9faa6ab4db5cb7cc4c09dc76b439e5f9c06 (diff)
downloadlasso-eda0f459be1c72ef210b4318eaae6efa06003035.tar.gz
lasso-eda0f459be1c72ef210b4318eaae6efa06003035.tar.xz
lasso-eda0f459be1c72ef210b4318eaae6efa06003035.zip
This is not a C unit test, but it can miracolously become one.
Diffstat (limited to 'tests')
-rw-r--r--tests/login_tests.c68
1 files changed, 68 insertions, 0 deletions
diff --git a/tests/login_tests.c b/tests/login_tests.c
new file mode 100644
index 00000000..54063db8
--- /dev/null
+++ b/tests/login_tests.c
@@ -0,0 +1,68 @@
+/*
+ * Lasso library C unit tests
+ *
+ * Copyright (C) 2004 Entr'ouvert
+ * http://lasso.entrouvert.org
+ *
+ * Author: Emmanuel Raviart <eraviart@entrouvert.com>
+ *
+ * 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
+ */
+
+
+/*
+gcc -g -O2 -I./.. `pkg-config gobject-2.0 --cflags` `pkg-config libxml-2.0 --cflags` -L../lasso/.libs -llasso `pkg-config gobject-2.0 --libs` `pkg-config libxml-2.0 --libs` -DXMLSEC_CRYPTO=\"openssl\" -DXMLSEC_LIBXML_260=1 -D__XMLSEC_FUNCTION__=__FUNCTION__ -DXMLSEC_NO_XKMS=1 -DXMLSEC_NO_CRYPTO_DYNAMIC_LOADING=1 -DXMLSEC_CRYPTO_OPENSSL=1 -I/usr/include/xmlsec1 -I/usr/include/libxml2 -L/usr/lib -L/usr/local/lib -lxmlsec1-openssl -lxmlsec1 -lxslt -lxml2 -lz -lpthread -lm -lssl -lcrypto -ldl login_tests.c -o login_tests
+*/
+
+
+#include <lasso/lasso.h>
+
+
+char *generateIdentityProviderContextDump() {
+ LassoServer *serverContext = lasso_server_new(
+ "../examples/data/idp-metadata.xml",
+ "../examples/data/idp-public-key.pem",
+ "../examples/data/idp-private-key.pem",
+ "../examples/data/idp-crt.pem",
+ lassoSignatureMethodRsaSha1);
+ lasso_server_add_provider(
+ serverContext,
+ "../examples/data/sp-metadata.xml",
+ "../examples/data/sp-public-key.pem",
+ "../examples/data/ca-crt.pem");
+ char *serverContextDump = lasso_server_dump(serverContext);
+ return serverContextDump;
+}
+
+void test01_generateServersContextDumps() {
+ char *identityProviderContextDump = generateIdentityProviderContextDump();
+ printf("SUCCESS = %s\n", identityProviderContextDump);
+/* char *serviceProviderContextDump = generateServiceProviderContextDump(); */
+/* assertNotNull(serviceProviderContextDump); */
+}
+
+
+void test02_serviceProviderLogin() {
+}
+
+
+int main() {
+ lasso_init();
+
+ test01_generateServersContextDumps();
+ test02_serviceProviderLogin();
+
+ lasso_shutdown();
+}