python: Add simple tests for the DCE/RPC echo interface.
authorJelmer Vernooij <jelmer@samba.org>
Sun, 13 Jan 2008 20:33:35 +0000 (21:33 +0100)
committerJelmer Vernooij <jelmer@samba.org>
Mon, 14 Jan 2008 18:53:05 +0000 (19:53 +0100)
(This used to be commit 8523740796f3cd739bdc338b5e2855a01bafa540)

source4/selftest/samba4_tests.sh
source4/torture/rpc/echo.py [new file with mode: 0644]

index 11daa4bd59fb7116504adcfaf06cbcf4843428d6..14b51c60543f581e32a6048a1e1d543506546ee7 100755 (executable)
@@ -322,6 +322,7 @@ then
        plantest "samba3.python" none $SUBUNITRUN samba.tests.samba3
        plantest "events.python" none PYTHONPATH="$PYTHONPATH:lib/events" $SUBUNITRUN tests
        plantest "samba3sam.python" none PYTHONPATH="$PYTHONPATH:dsdb/samdb/ldb_modules/tests" $SUBUNITRUN samba3sam
+       plantest "rpcecho.python" dc PYTHONPATH="$PYTHONPATH:torture/rpc" $SUBUNITRUN echo
        plantest "ldap.python" dc $PYTHON $samba4srcdir/lib/ldb/tests/python/ldap.py $CONFIGURATION \$SERVER -U\$USERNAME%\$PASSWORD -W \$DOMAIN
        plantest "blackbox.samba3dump" none $PYTHON scripting/bin/samba3dump $samba4srcdir/../testdata/samba3
        rm -rf $PREFIX/upgrade
diff --git a/source4/torture/rpc/echo.py b/source4/torture/rpc/echo.py
new file mode 100644 (file)
index 0000000..d11a3ea
--- /dev/null
@@ -0,0 +1,28 @@
+#!/usr/bin/python
+
+# Unix SMB/CIFS implementation.
+# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
+#   
+# 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/>.
+#
+
+from echo import rpcecho
+import unittest
+
+class RpcEchoTests(unittest.TestCase):
+    def setUp(self):
+        self.conn = rpcecho("ncalrpc:")
+
+    def test_addone(self):
+        self.assertEquals(2, conn.AddOne(1))