• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/scripting/python/samba/tests/dcerpc/
1#!/usr/bin/python
2
3# Unix SMB/CIFS implementation.
4# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program.  If not, see <http://www.gnu.org/licenses/>.
18#
19
20from samba.dcerpc import echo
21from samba.ndr import ndr_pack, ndr_unpack
22import unittest
23from samba.tests import RpcInterfaceTestCase
24
25
26class RpcEchoTests(RpcInterfaceTestCase):
27
28    def setUp(self):
29        self.conn = echo.rpcecho("ncalrpc:", self.get_loadparm())
30
31    def test_two_contexts(self):
32        self.conn2 = echo.rpcecho("ncalrpc:", self.get_loadparm(), basis_connection=self.conn)
33        self.assertEquals(3, self.conn2.AddOne(2))
34
35    def test_abstract_syntax(self):
36        self.assertEquals(("60a15ec5-4de8-11d7-a637-005056a20182", 1),
37                          self.conn.abstract_syntax)
38
39    def test_addone(self):
40        self.assertEquals(2, self.conn.AddOne(1))
41
42    def test_echodata(self):
43        self.assertEquals([1,2,3], self.conn.EchoData([1, 2, 3]))
44
45    def test_call(self):
46        self.assertEquals(u"foobar", self.conn.TestCall(u"foobar"))
47
48    def test_surrounding(self):
49        surrounding_struct = echo.Surrounding()
50        surrounding_struct.x = 4
51        surrounding_struct.surrounding = [1,2,3,4]
52        y = self.conn.TestSurrounding(surrounding_struct)
53        self.assertEquals(8 * [0], y.surrounding)
54
55    def test_manual_request(self):
56        self.assertEquals("\x01\x00\x00\x00", self.conn.request(0, chr(0) * 4))
57
58    def test_server_name(self):
59        self.assertEquals(None, self.conn.server_name)
60
61
62class NdrEchoTests(unittest.TestCase):
63
64    def test_info1_push(self):
65        x = echo.info1()
66        x.v = 42
67        self.assertEquals("\x2a", ndr_pack(x))
68
69    def test_info1_pull(self):
70        x = ndr_unpack(echo.info1, "\x42")
71        self.assertEquals(x.v, 66)
72