File: test.py

package info (click to toggle)
zeroc-ice 3.7.10-3.1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 75,696 kB
  • sloc: cpp: 356,894; java: 226,081; cs: 98,312; javascript: 35,027; python: 28,716; objc: 27,050; php: 7,526; ruby: 7,190; yacc: 2,949; ansic: 2,469; xml: 1,589; lex: 1,241; makefile: 472; sh: 52
file content (301 lines) | stat: -rw-r--r-- 15,935 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
# -*- coding: utf-8 -*-
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#

import os


class Glacier2StaticFilteringTestCase(ClientServerTestCase):

    def __init__(self, testcase, hostname):
        self.hostname = hostname
        description, self.tcArgs, self.attacks, self.xtraConfig = testcase

        clientProps = { "Ice.Config" : "{testdir}/client.cfg", "Ice.Warn.Connections" : 0 }
        serverProps = { "Ice.Config" : "{testdir}/server.cfg", "Ice.Warn.Connections" : 0  }
        routerProps = { "Ice.Config" : "{testdir}/router.cfg", "Glacier2.RoutingTable.MaxSize" : 10 }

        # Override the server/router default host property, we don't want to use the loopback
        serverProps["Ice.Default.Host"] = ""
        routerProps["Ice.Default.Host"] = ""

        ClientServerTestCase.__init__(self,
                                      description,
                                      desc=description,
                                      servers=[Glacier2Router(props=routerProps), Server(props=serverProps)],
                                      client=Client(props=clientProps))

    def setupClientSide(self, current):
        current.write("testing {0}... ".format(self))

    def setupServerSide(self, current):
        acceptFilter, rejectFilter, maxEndpoints, categoryFilter, idFilter, adapterFilter = self.tcArgs

        #
        # The test client performs multiple tests during one 'run'. We could
        # use command line arguments to pass the test cases in, but a
        # configuration file is easier.
        #
        with open(os.path.join(self.getTestSuite().getPath(), 'client.cfg'), 'w') as clientConfig:
            accepts=0
            rejects=0
            for expect, proxy in self.attacks:
                if expect:
                    clientConfig.write('Accept.Proxy.' + str(accepts) + '=')
                    accepts +=1
                else:
                    clientConfig.write('Reject.Proxy.' + str(rejects) + '=')
                    rejects +=1
                clientConfig.write(proxy + '\n')

        with open(os.path.join(self.getTestSuite().getPath(), 'server.cfg'), 'w') as serverConfig:
            if current.config.protocol != "ssl":
                serverConfig.write("BackendAdapter.Endpoints=tcp -p 12010\n")

        with open(os.path.join(self.getTestSuite().getPath(), "router.cfg"), "w") as routerConfig:
            routerConfig.write("Ice.Default.Locator=locator:tcp -h %s -p 12010\n" % self.hostname)
            routerConfig.write("Glacier2.Client.Trace.Reject=0\n")
            routerConfig.write("#\n")

            for l in self.xtraConfig:
                routerConfig.write(l)
                routerConfig.write("\n")

            #
            # We configure the AddProxy constraints as a configuration file.
            # Regular expression syntax can easily confuse the command line.
            #
            if not len(acceptFilter) == 0:
                routerConfig.write("Glacier2.Filter.Address.Accept=%s\n" % acceptFilter)
            if not len(rejectFilter) == 0:
                routerConfig.write("Glacier2.Filter.Address.Reject=%s\n" % rejectFilter)
            if not len(maxEndpoints) == 0:
                routerConfig.write("Glacier2.Filter.ProxySizeMax=%s\n" % maxEndpoints)
            if not len(categoryFilter) == 0:
                routerConfig.write("Glacier2.Filter.Category.Accept=%s\n" % categoryFilter)
            if not len(idFilter) == 0:
                routerConfig.write("Glacier2.Filter.Identity.Accept=%s\n" % idFilter)
            if not len(adapterFilter) == 0:
                routerConfig.write("Glacier2.Filter.AdapterId.Accept=%s\n" % adapterFilter)

    def teardownServerSide(self, current, success):
        for c in ["client.cfg", "router.cfg", "server.cfg"]:
            os.remove(os.path.join(self.getTestSuite().getPath(), c))


class Glacier2StaticFilteringTestSuite(Glacier2TestSuite):

    def setup(self, current):

        Glacier2TestSuite.setup(self, current)

        import socket

        hostname = socket.gethostname().lower()
        fqdn = socket.getfqdn().lower()

        limitedTests = False

        #
        # Try and figure out what tests are reasonable with this host's
        # configuration.
        #
        if fqdn.endswith("localdomain") or fqdn.endswith("local") or fqdn.endswith("domain"):
            #
            # No real configured domain name, this means that anything that
            # requires a domain name isn't likely going to work. Furthermore, it
            # might be the case that the hostname contains this suffix, so we
            # should just toss it and pretend that there is no 'hostname'
            # configured for this box.
            #
            hostname = "127.0.0.1"
            fqdn = ""
            domainname = ""
            limitedTests = True
        elif hostname.startswith("localhost"):
            #
            # No configured host name (and possibly no domain name), minimal
            # tests.
            #
            hostname = "127.0.0.1"
            fqdn = ""
            domainname = ""
            limitedTests = True
        elif fqdn.find(".") == -1:
            #
            # No real configured domain.
            #
            hostname = "127.0.0.1"
            fqdn = ""
            domainname = ""
            limitedTests = True
        else:
            dot = fqdn.find(".")
            domainname = fqdn[dot+1:]
            #
            # Some Python installs are going to return a FQDN for gethostname().
            # This invalidates the tests that need to differentiate between the
            # hostname and the FQDN. If these tests fail because of a DNS error,
            # it may be that an alias is not present for the host partition of
            # the FQDN.
            #
            if fqdn == hostname:
                hostname = hostname[:dot]
            if domainname == "":
                limitedTests = True
        try:
            testaddr1 = socket.gethostbyname(fqdn)
            testaddr2 = socket.gethostbyname(hostname)

            # On SUSE distributions, 127.0.0.2 is sometimes used in /etc/hosts
            # for the hostname (apparently if no network interface was found
            # when the OS was installed). However, connecting to this IP address
            # doesn't work (even if it can be pinged).
            if testaddr1 == "127.0.0.2" or testaddr2 == "127.0.0.2":
                limitedTests = True
                hostname = "127.0.0.1"
                fqdn = ""
                domainname = ""
        except:
            limitedTests = True
            hostname = "127.0.0.1"
            fqdn = ""
            domainname = ""

        testcases = [
                ('testing category filter',
                        ('', '', '', 'foo "a cat with spaces"', '', ''),
                        [(True, 'foo/helloA:tcp -h 127.0.0.1 -p 12010'),
                        (True, '"a cat with spaces/helloB":tcp -h 127.0.0.1 -p 12010'),
                        (False, 'nocat/helloC:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cat/helloD:tcp -h 127.0.0.1 -p 12010')], []),
                ('testing adapter id filter',
                        ('', '*', '', '', '', 'foo "an adapter with spaces"'),
                        [(False, 'foo/helloA:tcp -h 127.0.0.1 -p 12010'),
                        (False, '"a cat with spaces/helloB":tcp -h 127.0.0.1 -p 12010'),
                        (False, 'nocat/helloC:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cat/helloD:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'helloE @ bar'),
                        (True, 'helloF1 @ "an adapter with spaces"'),
                        (True, 'helloF @ foo')], []),
                ('test identity filters',
                        ('', '', '', '', 'myident cata/fooa "a funny id/that might mess it up"', ''),
                        [(False, '"a cat with spaces/helloB":tcp -h 127.0.0.1 -p 12010'),
                        (False, 'nocat/helloC:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cat/helloD:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'baz/myident:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cata/foo:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cat/fooa:tcp -h 127.0.0.1 -p 12010'),
                        (True, 'myident:tcp -h 127.0.0.1 -p 12010'),
                        (True, 'cata/fooa:tcp -h 127.0.0.1 -p 12010'),
                        (True, '"a funny id/that might mess it up":tcp -h 127.0.0.1 -p 12010')], []),
                ('test mixing filters',
                        ('', '', '', 'mycat "a sec cat"', 'myident cata/fooa "a funny id/that might mess it up" "a\\"nother"',
                            'myadapter'),
                        [(False, '"a cat with spaces/helloB":tcp -h 127.0.0.1 -p 12010'),
                        (False, 'nocat/helloC:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cat/helloD:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'baz/myident:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cata/foo:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cat/fooa:tcp -h 127.0.0.1 -p 12010'),
                        (True, 'mycat/fooa:tcp -h 127.0.0.1 -p 12010'),
                        (True, '"a sec cat/fooa":tcp -h 127.0.0.1 -p 12010'),
                        (True, 'mycat/foo @ jimbo'),
                        (False, 'hiscatA @ jimbo'),
                        (True, 'hiscat @ myadapter'),
                        (True, 'a\"nother @ jimbo'),
                        (True, 'myident:tcp -h 127.0.0.1 -p 12010'),
                        (True, 'cata/fooa:tcp -h 127.0.0.1 -p 12010'),
                        (True, '"a funny id/that might mess it up":tcp -h 127.0.0.1 -p 12010')], []),
                ('test mixing filters (indirect only)',
                        ('', '*', '', 'mycat "a sec cat"', 'myident cata/fooa "a funny id/that might mess it up"', 'myadapter'),
                        [(False, '"a cat with spaces/helloB":tcp -h 127.0.0.1 -p 12010'),
                        (False, 'nocat/helloC:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cat/helloD:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'baz/myident:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cata/foo:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cat/fooa:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'mycat/fooa:tcp -h 127.0.0.1 -p 12010'),
                        (False, '"a sec cat/fooa":tcp -h 127.0.0.1 -p 12010'),
                        (True, 'mycat/foo @ jimbo'),
                        (False, 'hiscatA @ jimbo'),
                        (True, 'hiscat @ myadapter'),
                        (False, 'myident:tcp -h 127.0.0.1 -p 12010'),
                        (False, 'cata/fooa:tcp -h 127.0.0.1 -p 12010'),
                        (True, '"a funny id/that might mess it up" @ myadapter'),
                        (False, '"a funny id/that might mess it up":tcp -h 127.0.0.1 -p 12010')], []),
                ]

        if not limitedTests:
            testcases.extend([
                    ('testing reject all',
                        ('', '*', '', '', '', ''),
                        [(False, 'helloA:tcp -h %s -p 12010' % fqdn),
                        (False, 'helloB:tcp -h %s -p 12010' % hostname),
                        (False, 'helloC:tcp -h 127.0.0.1 -p 12010'),
                        (True, 'bar @ foo')], []),
                    ('testing loopback only rule',
                        ('127.0.0.1 localhost', '', '', '', '', ''),
                        [(False, 'hello:tcp -h %s -p 12010' % fqdn),
                        (False, 'hello:tcp -h %s -p 12010' % hostname),
                        (False, '127.0.0.1:tcp -h %s -p 12010' % hostname),
                        (False, 'localhost:tcp -h %s -p 12010' % hostname),
                        (False, 'localhost/127.0.0.1:tcp -h %s -p 12010' % hostname),
                        (True, 'localhost:tcp -h 127.0.0.1 -p 12010'),
                        (True, 'localhost/127.0.0.1:tcp -h localhost -p 12010'),
                        (True, 'hello:tcp -h 127.0.0.1 -p 12010'),
                        (True, 'hello/somecat:tcp -h localhost -p 12010')], []),
                    ('testing port filter rule',
                        ('127.0.0.1:12010 localhost:12010', '', '', '', '', ''),
                        [(False, 'hello1:tcp -h 127.0.0.1 -p 12011'),
                         (False, 'hello2:tcp -h localhost -p 12011'),
                         (False, 'hello5:tcp -h %s -p 12010' % hostname),
                         (True, 'hello3:tcp -h 127.0.0.1 -p 12010'),
                         (True, 'hello4:tcp -h localhost -p 12010')], []),
                    ('testing reject port filter rule',
                        ('', '127.0.0.1:[0-12009,12011-65535] localhost:[0-12009,12011-65535]', '', '', '', ''),
                        [(False, 'hello1:tcp -h 127.0.0.1 -p 12011'),
                         (False, 'hello2:tcp -h localhost -p 12011'),
                         (True, 'hello5:tcp -h %s -p 12010' % hostname),
                         (True, 'hello3:tcp -h 127.0.0.1 -p 12010'),
                         (True, 'hello4:tcp -h localhost -p 12010')], []),
                    ('testing port filter rule with wildcard address rule',
                        ('*:12010', '', '', '', '', ''),
                        [(False, 'hello1:tcp -h 127.0.0.1 -p 12011'),
                         (False, 'hello2:tcp -h localhost -p 12011'),
                         (True, 'hello5:tcp -h %s -p 12010' % hostname),
                         (True, 'hello3:tcp -h 127.0.0.1 -p 12010'),
                         (True, 'hello4:tcp -h localhost -p 12010')], []),
                    ('testing domain filter rule (accept)',
                        ("*" + domainname, '', '', '', '', ''),
                        [(True, 'hello:tcp -h %s -p 12010' % fqdn),
                        (False, 'hello:tcp -h %s -p 12010' % hostname)], []),
                    ('testing domain filter rule (reject)',
                        ('', "*" + domainname, '', '', '', ''),
                        [(False, 'hello:tcp -h %s -p 12010' % fqdn),
                        (True, 'hello:tcp -h %s -p 12010' % hostname),
                        (True, 'bar:tcp -h 127.0.0.1 -p 12010')], []),
                    ('testing domain filter rule (mixed)',
                        ("127.0.0.1", fqdn, '', '', '', ''),
                        [(False, 'hello:tcp -h %s -p 12010:tcp -h 127.0.0.1 -p 12010' % fqdn),
                        (True, 'bar:tcp -h 127.0.0.1 -p 12010')], []),
                    ('testing maximum proxy length rule',
                        ('', '', '53', '', '', ''),
                        [(True, 'hello:tcp -h 127.0.0.1 -p 12010 -t infinite'),
                        (False, '012345678901234567890123456789012345678901234567890123456789:tcp -h 127.0.0.1 -p 12010')], []),
                    ])

        if len(testcases) == 0:
            current.writeln("WARNING: You are running this test with SSL disabled and the network ")
            current.writeln("         configuration for this host does not permit the other tests ")
            current.writeln("         to run correctly.")
        elif len(testcases) < 6:
            current.writeln("WARNING: The network configuration for this host does not permit all ")
            current.writeln("         tests to run correctly, some tests have been disabled.")

        self.testcases = {}
        for testcase in testcases:
            self.addTestCase(Glacier2StaticFilteringTestCase(testcase, hostname))

Glacier2StaticFilteringTestSuite(__name__, testcases=[], runOnMainThread=True, options={ "ipv6" : [False] }, multihost=False)