From e22c7f1fe35047ba3b0434c683ee8e9d6898b35d Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 29 Nov 2007 01:36:31 +0100 Subject: r26189: Add really trivial testsuite for the auth module. (This used to be commit f0fcad0a75998bc45e3073927c0021fa67136d22) --- source4/auth/auth.i | 3 ++- source4/auth/config.mk | 2 +- source4/auth/tests/bindings.py | 34 ++++++++++++++++++++++++++++++++++ source4/samba4-skip | 1 + source4/selftest/samba4_tests.sh | 1 + 5 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 source4/auth/tests/bindings.py (limited to 'source4') diff --git a/source4/auth/auth.i b/source4/auth/auth.i index 9adfd89891..05c9aa3944 100644 --- a/source4/auth/auth.i +++ b/source4/auth/auth.i @@ -25,7 +25,8 @@ #include #include "includes.h" -#include "auth.h" +#include "auth/session.h" +#include "auth/system_session_proto.h" %} %include "carrays.i" diff --git a/source4/auth/config.mk b/source4/auth/config.mk index 58bc7ce9ba..0b927b8e58 100644 --- a/source4/auth/config.mk +++ b/source4/auth/config.mk @@ -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 index 0000000000..4a4b12bf69 --- /dev/null +++ b/source4/auth/tests/bindings.py @@ -0,0 +1,34 @@ +#!/usr/bin/python + +# Unix SMB/CIFS implementation. +# Copyright (C) Jelmer Vernooij 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 . +# + +"""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() diff --git a/source4/samba4-skip b/source4/samba4-skip index 76f07dea1a..853d54d0a2 100644 --- a/source4/samba4-skip +++ b/source4/samba4-skip @@ -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 diff --git a/source4/selftest/samba4_tests.sh b/source4/selftest/samba4_tests.sh index d57c6f34bd..67d2e69a12 100755 --- a/source4/selftest/samba4_tests.sh +++ b/source4/selftest/samba4_tests.sh @@ -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 -- cgit