r26189: Add really trivial testsuite for the auth module.
authorJelmer Vernooij <jelmer@samba.org>
Thu, 29 Nov 2007 00:36:31 +0000 (01:36 +0100)
committerStefan Metzmacher <metze@samba.org>
Fri, 21 Dec 2007 04:46:41 +0000 (05:46 +0100)
(This used to be commit f0fcad0a75998bc45e3073927c0021fa67136d22)

.bzrignore
source4/auth/auth.i
source4/auth/config.mk
source4/auth/tests/bindings.py [new file with mode: 0644]
source4/samba4-skip
source4/selftest/samba4_tests.sh

index 71fff6bb38b86afb29268a4600dcec5318281f3e..9161e8554bdb6ff3b66ef94565dd4827b57d067e 100644 (file)
@@ -218,3 +218,5 @@ source/scripting/python/misc.py
 source/scripting/python/misc_wrap.c
 source/auth/auth.py
 source/lib/registry/tests/proto.h
+source/auth/auth_wrap.c
+source/auth/credentials/credentials_wrap.c
index 9adfd8989106e3e360eebc358e61c27c3e219c28..05c9aa3944d1c87f3db08a0e49fcc75f5744d4fb 100644 (file)
@@ -25,7 +25,8 @@
 #include <stdbool.h>
 
 #include "includes.h"
-#include "auth.h"
+#include "auth/session.h"
+#include "auth/system_session_proto.h"
 %}
 
 %include "carrays.i"
index 58bc7ce9ba4788c3cc9e3323934b6df380b5792d..0b927b8e586221c55f5a33092539512c217d288a 100644 (file)
@@ -84,6 +84,6 @@ PUBLIC_DEPENDENCIES = LIBSECURITY SAMDB CREDENTIALS
 #######################
 
 [PYTHON::swig_auth]
-PUBLIC_DEPENDENCIES = auth LIBPYTHON
+PUBLIC_DEPENDENCIES = auth_system_session LIBPYTHON
 PRIVATE_DEPENDENCIES = SAMDB 
 SWIG_FILE = auth.i
diff --git a/source4/auth/tests/bindings.py b/source4/auth/tests/bindings.py
new file mode 100644 (file)
index 0000000..4a4b12b
--- /dev/null
@@ -0,0 +1,34 @@
+#!/usr/bin/python
+
+# Unix SMB/CIFS implementation.
+# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
+#   
+# 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 3 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, see <http://www.gnu.org/licenses/>.
+#
+
+"""Tests for the Auth Python bindings. 
+
+Note that this just tests the bindings work. It does not intend to test 
+the functionality, that's already done in other tests.
+"""
+
+import unittest
+import auth
+
+class AuthTests(unittest.TestCase):
+    def test_system_session(self):
+        auth.system_session()
+
+    def test_system_session_anon(self):
+        auth.system_session_anon()
index 76f07dea1a120f75f89249dc1c77f4779ca49fdf..853d54d0a24afcf411b9d6c1f1b9afc3c69aad65 100644 (file)
@@ -52,3 +52,4 @@ NSS-TEST                                              # Fails
 samba4.ldb.python                              # Fails to link properly
 samba4.credentials.python              # Fails to link properly
 samba4.registry.python                 # Fails to link properly
+samba4.auth.python                             # Fails to link properly
index d57c6f34bd1226a9aa9817ef375b60bd98b2d375..67d2e69a1286025fa5d6fac159e4249195e5bf3b 100755 (executable)
@@ -298,4 +298,5 @@ then
        plantest "credentials.python" none PYTHONPATH=bin/python trial auth/credentials/tests/bindings.py
        plantest "registry.python" none PYTHONPATH=bin/python trial lib/registry/tests/bindings.py
        plantest "tdb.python" none PYTHONPATH=bin/python trial lib/tdb/python/tests/simple.py
+       plantest "auth.python" none PYTHONPATH=bin/python trial auth/tests/bindings.py
 fi