From 1f54cb1af997f993ebd130f08813028f7e1f3f51 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 13 Jan 2008 21:33:35 +0100 Subject: python: Add simple tests for the DCE/RPC echo interface. (This used to be commit 8523740796f3cd739bdc338b5e2855a01bafa540) --- source4/torture/rpc/echo.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 source4/torture/rpc/echo.py (limited to 'source4/torture') 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 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 . +# + +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)) -- cgit