daphne/tests/test_cli.py

238 lines
6.3 KiB
Python
Raw Normal View History

2017-11-26 00:39:46 +03:00
# coding: utf8
import logging
from unittest import TestCase
from daphne.cli import CommandLineInterface
from daphne.endpoints import build_endpoint_description_strings as build
class TestEndpointDescriptions(TestCase):
"""
Tests that the endpoint parsing/generation works as intended.
"""
def testBasics(self):
2017-11-26 00:40:15 +03:00
self.assertEqual(build(), [], msg="Empty list returned when no kwargs given")
2017-11-26 00:39:46 +03:00
def testTcpPortBindings(self):
self.assertEqual(
2017-11-26 00:40:15 +03:00
build(port=1234, host="example.com"),
["tcp:port=1234:interface=example.com"]
2017-11-26 00:39:46 +03:00
)
self.assertEqual(
2017-11-26 00:40:15 +03:00
build(port=8000, host="127.0.0.1"),
["tcp:port=8000:interface=127.0.0.1"]
2017-11-26 00:39:46 +03:00
)
self.assertEqual(
2017-11-26 00:40:15 +03:00
build(port=8000, host="[200a::1]"),
2017-11-26 00:39:46 +03:00
[r'tcp:port=8000:interface=200a\:\:1']
)
self.assertEqual(
2017-11-26 00:40:15 +03:00
build(port=8000, host="200a::1"),
2017-11-26 00:39:46 +03:00
[r'tcp:port=8000:interface=200a\:\:1']
)
# incomplete port/host kwargs raise errors
self.assertRaises(
ValueError,
build, port=123
)
self.assertRaises(
ValueError,
2017-11-26 00:40:15 +03:00
build, host="example.com"
2017-11-26 00:39:46 +03:00
)
def testUnixSocketBinding(self):
self.assertEqual(
2017-11-26 00:40:15 +03:00
build(unix_socket="/tmp/daphne.sock"),
["unix:/tmp/daphne.sock"]
2017-11-26 00:39:46 +03:00
)
def testFileDescriptorBinding(self):
self.assertEqual(
build(file_descriptor=5),
2017-11-26 00:40:15 +03:00
["fd:fileno=5"]
2017-11-26 00:39:46 +03:00
)
def testMultipleEnpoints(self):
self.assertEqual(
sorted(
build(
file_descriptor=123,
2017-11-26 00:40:15 +03:00
unix_socket="/tmp/daphne.sock",
2017-11-26 00:39:46 +03:00
port=8080,
2017-11-26 00:40:15 +03:00
host="10.0.0.1"
2017-11-26 00:39:46 +03:00
)
),
sorted([
2017-11-26 00:40:15 +03:00
"tcp:port=8080:interface=10.0.0.1",
"unix:/tmp/daphne.sock",
"fd:fileno=123"
2017-11-26 00:39:46 +03:00
])
)
class TestCLIInterface(TestCase):
"""
Tests the overall CLI class.
"""
class TestedCLI(CommandLineInterface):
"""
CommandLineInterface subclass that we used for testing (has a fake
server subclass).
"""
class TestedServer:
"""
Mock server object for testing.
"""
def __init__(self, **kwargs):
self.init_kwargs = kwargs
def run(self):
pass
server_class = TestedServer
def setUp(self):
logging.disable(logging.CRITICAL)
def tearDown(self):
logging.disable(logging.NOTSET)
def assertCLI(self, args, server_kwargs):
"""
Asserts that the CLI class passes the right args to the server class.
Passes in a fake application automatically.
"""
cli = self.TestedCLI()
2017-11-26 00:40:15 +03:00
cli.run(args + ["daphne:__version__"]) # We just pass something importable as app
2017-11-26 00:39:46 +03:00
# Check the server got all arguments as intended
for key, value in server_kwargs.items():
# Get the value and sort it if it's a list (for endpoint checking)
actual_value = cli.server.init_kwargs.get(key)
if isinstance(actual_value, list):
actual_value.sort()
# Check values
self.assertEqual(
value,
actual_value,
2017-11-26 00:40:15 +03:00
"Wrong value for server kwarg %s: %r != %r" % (
2017-11-26 00:39:46 +03:00
key,
value,
actual_value,
),
)
def testCLIBasics(self):
"""
Tests basic endpoint generation.
"""
self.assertCLI(
[],
{
2017-11-26 00:40:15 +03:00
"endpoints": ["tcp:port=8000:interface=127.0.0.1"],
2017-11-26 00:39:46 +03:00
},
)
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-p", "123"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": ["tcp:port=123:interface=127.0.0.1"],
2017-11-26 00:39:46 +03:00
},
)
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-b", "10.0.0.1"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": ["tcp:port=8000:interface=10.0.0.1"],
2017-11-26 00:39:46 +03:00
},
)
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-b", "200a::1"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": [r'tcp:port=8000:interface=200a\:\:1'],
2017-11-26 00:39:46 +03:00
},
)
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-b", "[200a::1]"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": [r'tcp:port=8000:interface=200a\:\:1'],
2017-11-26 00:39:46 +03:00
},
)
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-p", "8080", "-b", "example.com"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": ["tcp:port=8080:interface=example.com"],
2017-11-26 00:39:46 +03:00
},
)
def testUnixSockets(self):
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-p", "8080", "-u", "/tmp/daphne.sock"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": [
"tcp:port=8080:interface=127.0.0.1",
"unix:/tmp/daphne.sock",
2017-11-26 00:39:46 +03:00
],
},
)
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-b", "example.com", "-u", "/tmp/daphne.sock"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": [
"tcp:port=8000:interface=example.com",
"unix:/tmp/daphne.sock",
2017-11-26 00:39:46 +03:00
],
},
)
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-u", "/tmp/daphne.sock", "--fd", "5"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": [
"fd:fileno=5",
"unix:/tmp/daphne.sock"
2017-11-26 00:39:46 +03:00
],
},
)
def testMixedCLIEndpointCreation(self):
"""
Tests mixing the shortcut options with the endpoint string options.
"""
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-p", "8080", "-e", "unix:/tmp/daphne.sock"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": [
"tcp:port=8080:interface=127.0.0.1",
"unix:/tmp/daphne.sock"
2017-11-26 00:39:46 +03:00
],
},
)
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-p", "8080", "-e", "tcp:port=8080:interface=127.0.0.1"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": [
"tcp:port=8080:interface=127.0.0.1",
"tcp:port=8080:interface=127.0.0.1",
2017-11-26 00:39:46 +03:00
],
},
)
def testCustomEndpoints(self):
"""
Tests entirely custom endpoints
"""
self.assertCLI(
2017-11-26 00:40:15 +03:00
["-e", "imap:"],
2017-11-26 00:39:46 +03:00
{
2017-11-26 00:40:15 +03:00
"endpoints": [
"imap:",
2017-11-26 00:39:46 +03:00
],
},
)