Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 3.7 Support & Task Queue Refactoring (again) #86

Merged
merged 47 commits into from
Dec 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
56d05f7
Upgrade test cert to be compatibile with Python 3.7
lgrahl Aug 27, 2018
ae79897
Add and use timeout close code (see https://github.com/saltyrtc/salty…
lgrahl Aug 29, 2018
96102d6
Handle InternalError separately
lgrahl Aug 29, 2018
2bcfd3d
Fix tests
lgrahl Aug 29, 2018
3644abb
Upgrade dependencies for Python 3.7 support & refactor task queue (ag…
lgrahl Aug 29, 2018
d340081
Disable isort in Travis CI for now (see #85)
lgrahl Aug 29, 2018
c8ea6a8
Use 'localhost' instead of '127.0.0.1' to prevent errors when testing…
lgrahl Aug 30, 2018
cff16be
Skip CLI tests when running Python 3.4 in Travis
lgrahl Aug 30, 2018
af02a07
Add libsodium dependency as a PPA to Travis file
lgrahl Aug 30, 2018
14badbf
Allow .bin to be run directly with python -m saltyrtc.server.bin
lgrahl Sep 3, 2018
96128a4
Fix to not remove dead clients
lgrahl Sep 3, 2018
ca870f6
Allows tasks to return early in case the connection is already closed
lgrahl Sep 3, 2018
be791b4
Fix always raise `InternalError` if the task queue has already been c…
lgrahl Sep 3, 2018
e1974af
Test cleanup
lgrahl Sep 3, 2018
9b5fb0a
Add a test that ensures a relay message will still be sent if the sen…
lgrahl Sep 3, 2018
dac20ce
Use pytest-mock for tests that are mocking
lgrahl Sep 3, 2018
b2e2bbc
Add task-related tests
lgrahl Sep 3, 2018
1106f23
Fix task queue cancellation
lgrahl Sep 3, 2018
f4fde57
Fix handling of the task loops (once again)
lgrahl Sep 3, 2018
f4dd6c2
Fix unused import
lgrahl Sep 3, 2018
010ed3f
Fix also catch websockets.ConnectionClosed from the pong future
lgrahl Sep 4, 2018
12fdad4
Access and filter log records in tests
lgrahl Sep 4, 2018
324fbdf
Add server tests
lgrahl Sep 4, 2018
243506e
Fix logging
lgrahl Sep 5, 2018
ecfd7f8
Also check for specific log entries when running server tests
lgrahl Sep 5, 2018
ee10d5e
Bump websockets version requirement
lgrahl Sep 5, 2018
ed818fe
Clean up server tests
lgrahl Sep 5, 2018
cc1ad7c
Enhance server tests
lgrahl Sep 5, 2018
5d9f538
Add a server test that ensures a misbehaving task is being handled co…
lgrahl Sep 6, 2018
23d26b7
Fix replace infinite with something that can be converted to an integ…
lgrahl Sep 6, 2018
41a928c
Perhaps fix code coverage
lgrahl Sep 6, 2018
45c1c8c
Add test: No tasks may be added to a cancelled task queue
lgrahl Oct 24, 2018
ededc4f
Silently cancel tasks being added to a cancelled task queue
lgrahl Oct 24, 2018
ce17f2b
Immediately remove a client from the task queue
lgrahl Oct 24, 2018
3ef6e6c
Fix tests that failed due to slightly altered log messages
lgrahl Oct 25, 2018
7df474e
Close the task queue when closing the connection
lgrahl Oct 25, 2018
b80553d
Disable the new keep-alive feature of websockets 7.0
lgrahl Oct 29, 2018
0d2600d
Reduce logging level for tests
lgrahl Oct 30, 2018
fe87ee3
Fix cancellation of pending tasks
lgrahl Oct 30, 2018
ed6c4f8
Update relay-send-and-close test to queue more than one message
lgrahl Oct 30, 2018
d10d93c
More relay message tests
lgrahl Oct 30, 2018
3302b10
Refactor dropping a client, partial fix for #81
lgrahl Oct 31, 2018
d30d936
Optimisation make get_responder_ids an iterable (was a list)
lgrahl Oct 25, 2018
0f6eb6a
Explicitly raise instead of returning None when returning clients
lgrahl Oct 25, 2018
dd40f8b
Refactor dropping a client, resolves #81
lgrahl Nov 6, 2018
778d0fe
Mark dropped clients as dropped which prevents a 'disconnected' message
lgrahl Dec 18, 2018
2225967
Make server closing more robust
lgrahl Dec 18, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[run]
branch = True
source = saltyrtc
source = saltyrtc.server

[report]
exclude_lines =
Expand Down
14 changes: 0 additions & 14 deletions .travis-install-libsodium.sh

This file was deleted.

84 changes: 53 additions & 31 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,73 +1,95 @@
# Use container system
sudo: false

# Cache pip & libsodium
# Install APT dependencies
addons:
apt:
sources:
- sourceline: "ppa:chris-lea/libsodium"
packages:
- libsodium-dev

# Cache pip
cache:
directories:
- $HOME/libsodium
- $HOME/.cache/pip

# Clean up pip log
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
- rm -f $HOME/.cache/pip/log/debug.log

# Build matrix
language: python
matrix:
include:
- python: "3.4"
env:
- EVENT_LOOP=asyncio
- TIMEOUT=2.0
- EVENT_LOOP=asyncio
- TIMEOUT=2.0
- IGNORE=tests/test_cli.py
- python: "3.5"
env:
- EVENT_LOOP=asyncio
- TIMEOUT=2.0
- EVENT_LOOP=asyncio
- TIMEOUT=2.0
- python: "3.5"
env:
- EVENT_LOOP=uvloop
- TIMEOUT=2.0
- EVENT_LOOP=uvloop
- TIMEOUT=2.0
before_script: "pip install .[uvloop]"
- python: "3.6"
env:
- EVENT_LOOP=asyncio
- TIMEOUT=2.0
- EVENT_LOOP=asyncio
- TIMEOUT=2.0
- python: "3.6"
env:
- EVENT_LOOP=uvloop
- TIMEOUT=2.0
- EVENT_LOOP=uvloop
- TIMEOUT=2.0
before_script: "pip install .[uvloop]"
# TODO: Enable once 3.7 support has been added
# - python: "3.7"
# env:
# - EVENT_LOOP=asyncio
# - TIMEOUT=2.0
# - python: "3.7"
# env:
# - EVENT_LOOP=uvloop
# - TIMEOUT=2.0
# before_script: "pip install .[uvloop]"
- python: "pypy3" # 2017-08-05: It's pypy3-5.8.0-beta
env:
- EVENT_LOOP=asyncio
- TIMEOUT=16.0
- EVENT_LOOP=asyncio
- TIMEOUT=16.0
# TODO: Re-enable once pypy3 is able to compile uvloop
# - python: "pypy3" # 2017-08-05: It's pypy3-5.8.0-beta
# env:
# - EVENT_LOOP=uvloop
# - TIMEOUT=16.0
# - EVENT_LOOP=uvloop
# - TIMEOUT=16.0
# before_script: "pip install .[uvloop]"

# Install dependencies
before_install:
- ./.travis-install-libsodium.sh
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${HOME}/libsodium/lib
install:
- pip install -U setuptools pip
- "pip install .[dev]"
- pip install codecov
- pip install -U setuptools pip
- "pip install .[dev]"
- pip install codecov

# Run flake8, isort, check docs & tests
# TODO: Re-enable isort once #85 has been resolved
script:
- >
if [[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]]; then
flake8 . || travis_terminate 1;
isort -rc -c . || (isort -rc -df . && return 1) || travis_terminate 1;
fi
- python setup.py checkdocs
- py.test --cov-config .coveragerc --cov=saltyrtc.server --loop=$EVENT_LOOP --timeout=$TIMEOUT
- >
if [[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]]; then
flake8 . || travis_terminate 1;
#isort -rc -c . || (isort -rc -df . && return 1) || travis_terminate 1;
fi
- python setup.py checkdocs
- >
py.test \
--ignore=$IGNORE \
--cov-config=.coveragerc \
--cov=saltyrtc.server \
--loop=$EVENT_LOOP \
--timeout=$TIMEOUT

# After success
after_success:
- codecov
- codecov

4 changes: 4 additions & 0 deletions saltyrtc/server/bin.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,3 +272,7 @@ def main():
finally:
if obj['logging_handler'] is not None:
obj['logging_handler'].pop_application()


if __name__ == '__main__':
main()
33 changes: 33 additions & 0 deletions saltyrtc/server/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
'OverflowSentinel',
'SubProtocol',
'CloseCode',
'ClientState',
'AddressType',
'MessageType',
'available_slot_range',
Expand Down Expand Up @@ -82,12 +83,44 @@ class CloseCode(enum.IntEnum):
initiator_could_not_decrypt = 3005
no_shared_tasks = 3006
invalid_key = 3007
timeout = 3008

@property
def is_valid_drop_reason(self):
return self.value in _drop_reasons


@enum.unique
class ClientState(enum.IntEnum):
"""
The state of a :class:`PathClient`.

.. important:: States MUST follow the exact order as enumerated
below. A client cannot go back a state or skip
a state in between. For example, a *dropped* client
MUST have been formerly *authenticated*.
"""
# The client is connected but is not allowed to communicate
# with another client.
restricted = 1

# The client has been authenticated and may communicate with
# other clients (of different type).
authenticated = 2

# The client has been dropped by another client.
dropped = 3

@property
def next(self):
"""
Return the subsequent state.

Raises :exc:`ValueError` in case there is no subsequent state.
"""
return ClientState(self + 1)


@enum.unique
class AddressType(enum.IntEnum):
server = 0x00
Expand Down
7 changes: 4 additions & 3 deletions saltyrtc/server/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
NONCE_FORMATTER,
NONCE_LENGTH,
AddressType,
ClientState,
CloseCode,
MessageType,
OverflowSentinel,
Expand Down Expand Up @@ -192,8 +193,8 @@ def pack(self, client):

# Encrypt payload if required
if self.encrypted:
if not client.authenticated:
raise MessageFlowError('Cannot encrypt payload, no box available')
if client.state != ClientState.authenticated:
raise MessageFlowError('Cannot encrypt payload, not authenticated')
payload = self._encrypt_payload(client, nonce, payload)

# Append payload and return as bytes
Expand Down Expand Up @@ -224,7 +225,7 @@ def unpack(cls, client, data):
expect_type = None
if destination_type == AddressType.server:
data = data[NONCE_LENGTH:]
if not client.authenticated and client.type is None:
if client.state == ClientState.restricted and client.type is None:
payload = None

# Try client-auth (encrypted)
Expand Down
Loading