File: test_dispatch.py

package info (click to toggle)
zorp 3.3.6-1.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 6,260 kB
  • ctags: 4,707
  • sloc: ansic: 30,937; sh: 10,171; python: 4,051; makefile: 487
file content (82 lines) | stat: -rw-r--r-- 5,201 bytes parent folder | download
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
from Zorp.Core import *
from Zorp.Plug import *

from Zorp.Zorp import quit
from traceback import *

config.options.kzorp_enabled = FALSE

def zorp():
	try:
	        Service('test', PlugProxy)
	        
	        # keyword argument is present that is processed by the C code
	        
	        Listener(SockAddrInet('0.0.0.0', 1999), 'test', transparent=TRUE)
	        Listener(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), 'test', transparent=TRUE)
	        Listener(DBIface('eth0', 1999), 'test', transparent=TRUE)
	        Receiver(SockAddrInet('0.0.0.0', 1999), 'test', transparent=TRUE)
	        Receiver(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), 'test', transparent=TRUE)
	        Receiver(DBIface('eth0', 1999), 'test', transparent=TRUE)
	        Dispatcher(DBSockAddr(SockAddrInet('0.0.0.0', 1999), protocol=ZD_PROTO_TCP), 'test', transparent=TRUE)
	        Dispatcher(DBIface('eth0', 1999, protocol=ZD_PROTO_TCP), 'test', transparent=TRUE)
	        Dispatcher(DBIfaceGroup(100, 1999, protocol=ZD_PROTO_TCP), 'test', transparent=TRUE)
	        #Dispatcher(DBIfaceGroup('ifgroup', 1999, protocol=ZD_PROTO_TCP), 'test', transparent=TRUE)

	        ZoneListener(SockAddrInet('0.0.0.0', 1999), {'all': 'test'}, transparent=TRUE)
	        ZoneListener(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), {'all': 'test'}, transparent=TRUE)
	        ZoneListener(DBIface('eth0', 1999), {'all': 'test'}, transparent=TRUE)
	        ZoneReceiver(SockAddrInet('0.0.0.0', 1999), {'all': 'test'}, transparent=TRUE)
	        ZoneReceiver(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), {'all': 'test'}, transparent=TRUE)
	        ZoneReceiver(DBIface('eth0', 1999), {'all': 'test'}, transparent=TRUE)
	        ZoneDispatcher(DBSockAddr(SockAddrInet('0.0.0.0', 1999), protocol=ZD_PROTO_TCP), {'all': 'test'}, transparent=TRUE)
	        ZoneDispatcher(DBIface('eth0', 1999, protocol=ZD_PROTO_TCP), {'all': 'test'}, transparent=TRUE)
	        ZoneDispatcher(DBIfaceGroup(100, 1999, protocol=ZD_PROTO_TCP), {'all': 'test'}, transparent=TRUE)
	        #ZoneDispatcher(DBIfaceGroup('ifgroup', 1999, protocol=ZD_PROTO_TCP), {'all': 'test'}, transparent=TRUE)

	        CSZoneListener(SockAddrInet('0.0.0.0', 1999), {('all', 'all'): 'test'}, transparent=TRUE)
	        CSZoneListener(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), {('all', 'all'): 'test'}, transparent=TRUE)
	        CSZoneListener(DBIface('eth0', 1999), {('all', 'all'): 'test'}, transparent=TRUE)
	        CSZoneReceiver(SockAddrInet('0.0.0.0', 1999), {('all', 'all'): 'test'}, transparent=TRUE)
	        CSZoneReceiver(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), {('all', 'all'): 'test'}, transparent=TRUE)
	        CSZoneReceiver(DBIface('eth0', 1999), {('all', 'all'): 'test'}, transparent=TRUE)
	        CSZoneDispatcher(DBSockAddr(SockAddrInet('0.0.0.0', 1999), protocol=ZD_PROTO_TCP), {('all', 'all'): 'test'}, transparent=TRUE)
	        CSZoneDispatcher(DBIface('eth0', 1999, protocol=ZD_PROTO_TCP), {('all', 'all'): 'test'}, transparent=TRUE)
	        CSZoneDispatcher(DBIfaceGroup(100, 1999, protocol=ZD_PROTO_TCP), {('all', 'all'): 'test'}, transparent=TRUE)
	        #CSZoneDispatcher(DBIfaceGroup('ifgroup', 1999, protocol=ZD_PROTO_TCP), {('all', 'all'): 'test'}, transparent=TRUE)
	        
	        # no keyword arguments

	        Listener(SockAddrInet('0.0.0.0', 1999), 'test')
	        Listener(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), 'test')
	        Listener(DBIface('eth0', 1999), 'test')
	        Receiver(SockAddrInet('0.0.0.0', 1999), 'test')
	        Receiver(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), 'test')
	        Receiver(DBIface('eth0', 1999), 'test')
	        Dispatcher(DBSockAddr(SockAddrInet('0.0.0.0', 1999), protocol=ZD_PROTO_TCP), 'test')
	        Dispatcher(DBIface('eth0', 1999, protocol=ZD_PROTO_TCP), 'test')

	        ZoneListener(SockAddrInet('0.0.0.0', 1999), {'all': 'test'})
	        ZoneListener(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), {'all': 'test'})
	        ZoneListener(DBIface('eth0', 1999), {'all': 'test'})
	        ZoneReceiver(SockAddrInet('0.0.0.0', 1999), {'all': 'test'})
	        ZoneReceiver(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), {'all': 'test'})
	        ZoneReceiver(DBIface('eth0', 1999), {'all': 'test'})
	        ZoneDispatcher(DBSockAddr(SockAddrInet('0.0.0.0', 1999), protocol=ZD_PROTO_TCP), {'all': 'test'})
	        ZoneDispatcher(DBIface('eth0', 1999, protocol=ZD_PROTO_TCP), {'all': 'test'})

	        CSZoneListener(SockAddrInet('0.0.0.0', 1999), {('all', 'all'): 'test'})
	        CSZoneListener(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), {('all', 'all'): 'test'})
	        CSZoneListener(DBIface('eth0', 1999), {('all', 'all'): 'test'})
	        CSZoneReceiver(SockAddrInet('0.0.0.0', 1999), {('all', 'all'): 'test'})
	        CSZoneReceiver(DBSockAddr(SockAddrInet('0.0.0.0', 1999)), {('all', 'all'): 'test'})
	        CSZoneReceiver(DBIface('eth0', 1999), {('all', 'all'): 'test'})
	        CSZoneDispatcher(DBSockAddr(SockAddrInet('0.0.0.0', 1999), protocol=ZD_PROTO_TCP), {('all', 'all'): 'test'})
	        CSZoneDispatcher(DBIface('eth0', 1999, protocol=ZD_PROTO_TCP), {('all', 'all'): 'test'})
	except Exception, e:
		print_exc()
		quit(1)
		return 1
		
	quit(0)
	return 1