]> git.proxmox.com Git - mirror_ovs.git/blame - tests/test-l7.py
lib: Add support for tftp ct helper.
[mirror_ovs.git] / tests / test-l7.py
CommitLineData
40c7b2fc 1# Copyright (c) 2015, 2016 Nicira, Inc.
07659514
JS
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at:
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15import argparse
16import socket
17
18from BaseHTTPServer import HTTPServer
19from SimpleHTTPServer import SimpleHTTPRequestHandler
20from SocketServer import TCPServer
21
22
23class TCPServerV6(HTTPServer):
24 address_family = socket.AF_INET6
25
26
27def get_ftpd():
28 try:
29 from pyftpdlib.authorizers import DummyAuthorizer
30 from pyftpdlib.handlers import FTPHandler
31 from pyftpdlib.servers import FTPServer
32
2a33a3c2
JR
33 import logging
34 import pyftpdlib.log
35 pyftpdlib.log.LEVEL = logging.DEBUG
36
07659514
JS
37 class OVSFTPHandler(FTPHandler):
38 authorizer = DummyAuthorizer()
39 authorizer.add_anonymous("/tmp")
508509b2
JR
40 # Hack around a bug in pyftpdlib, which rejects EPRT
41 # connection due to mismatching textual representation of
42 # the IPv6 address.
43 permit_foreign_addresses = True
07659514
JS
44 server = [FTPServer, OVSFTPHandler, 21]
45 except ImportError:
46 server = None
47 pass
48 return server
49
50
40c7b2fc
JS
51def get_tftpd():
52 try:
53 from tftpy import TftpServer, TftpShared
54
55 class OVSTFTPServer(TftpServer):
56 def __init__(self, listen, handler=None):
57 (ip, port) = listen
58 self.ip = ip
59 self.port = port
60 TftpServer.__init__(self, tftproot='./')
61
62 def serve_forever(self):
63 self.listen(self.ip, self.port)
64 server = [OVSTFTPServer, None, TftpShared.DEF_TFTP_PORT]
65 except ImportError:
66 server = None
67 pass
68 return server
69
70
07659514
JS
71def main():
72 SERVERS = {
a0631d92 73 'http': [TCPServer, SimpleHTTPRequestHandler, 80],
07659514 74 'http6': [TCPServerV6, SimpleHTTPRequestHandler, 80],
40c7b2fc
JS
75 'ftp': get_ftpd(),
76 'tftp': get_tftpd(),
07659514
JS
77 }
78
40c7b2fc 79 protocols = [srv for srv in SERVERS if SERVERS[srv] is not None]
07659514
JS
80 parser = argparse.ArgumentParser(
81 description='Run basic application servers.')
82 parser.add_argument('proto', default='http', nargs='?',
83 help='protocol to serve (%s)' % protocols)
84 args = parser.parse_args()
85
40c7b2fc 86 if args.proto not in protocols:
07659514
JS
87 parser.print_help()
88 exit(1)
89
90 constructor = SERVERS[args.proto][0]
91 handler = SERVERS[args.proto][1]
92 port = SERVERS[args.proto][2]
93 srv = constructor(('', port), handler)
94 srv.serve_forever()
95
96
97if __name__ == '__main__':
98 main()