diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-01-13 21:33:35 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-01-14 19:53:05 +0100 |
commit | 1f54cb1af997f993ebd130f08813028f7e1f3f51 (patch) | |
tree | f0b3865f38e14c1cf621e650615aac8e98086488 | |
parent | 41057618f890b9053dce9cd671d11db7af7d3612 (diff) | |
download | samba-1f54cb1af997f993ebd130f08813028f7e1f3f51.tar.gz samba-1f54cb1af997f993ebd130f08813028f7e1f3f51.tar.bz2 samba-1f54cb1af997f993ebd130f08813028f7e1f3f51.zip |
python: Add simple tests for the DCE/RPC echo interface.
(This used to be commit 8523740796f3cd739bdc338b5e2855a01bafa540)
-rwxr-xr-x | source4/selftest/samba4_tests.sh | 1 | ||||
-rw-r--r-- | source4/torture/rpc/echo.py | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/source4/selftest/samba4_tests.sh b/source4/selftest/samba4_tests.sh index 11daa4bd59..14b51c6054 100755 --- a/source4/selftest/samba4_tests.sh +++ b/source4/selftest/samba4_tests.sh @@ -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 index 0000000000..d11a3ea66a --- /dev/null +++ b/source4/torture/rpc/echo.py @@ -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)) |