summaryrefslogtreecommitdiff
path: root/source4/torture/rpc
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-01-13 21:33:35 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-01-14 19:53:05 +0100
commit1f54cb1af997f993ebd130f08813028f7e1f3f51 (patch)
treef0b3865f38e14c1cf621e650615aac8e98086488 /source4/torture/rpc
parent41057618f890b9053dce9cd671d11db7af7d3612 (diff)
downloadsamba-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)
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r--source4/torture/rpc/echo.py28
1 files changed, 28 insertions, 0 deletions
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))