Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
DHParser
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
badw-it
DHParser
Commits
e7bf6e42
Commit
e7bf6e42
authored
Mar 06, 2019
by
di68kap
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- test case for server modul
parent
f16a062d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
9 deletions
+63
-9
DHParser/server.py
DHParser/server.py
+5
-9
test/test_server.py
test/test_server.py
+58
-0
No files found.
DHParser/server.py
View file @
e7bf6e42
...
...
@@ -34,7 +34,6 @@ of module `server`, i.e. the compilation-modules, to decide.
"""
import
asyncio
from
typing
import
Callable
,
Any
...
...
@@ -66,13 +65,10 @@ class CompilerServer:
await
writer
.
drain
()
writer
.
close
()
async
def
_compiler_server
(
self
,
address
:
str
,
port
:
int
):
server
=
await
syncio
.
start_server
(
self
.
handle_compilation_request
,
address
,
port
)
async
def
serve
(
self
,
address
:
str
=
'127.0.0.1'
,
port
:
int
=
8888
):
server
=
await
a
syncio
.
start_server
(
self
.
handle_compilation_request
,
address
,
port
)
async
with
server
:
await
server
.
serve_forever
def
serve
(
self
,
address
:
str
=
'127.0.0.1'
,
port
:
int
=
8888
):
# TODO: Replace this by a python 3.5. compatible construct...
asyncio
.
run
(
self
.
_compiler_server
())
await
server
.
serve_forever
()
def
run_server
(
self
,
address
:
str
=
'127.0.0.1'
,
port
:
int
=
8888
):
asyncio
.
run
(
self
.
serve
(
address
,
port
))
test/test_server.py
0 → 100644
View file @
e7bf6e42
#!/usr/bin/python3
"""test_server.py - tests of the server module of DHParser
Author: Eckhart Arnold <arnold@badw.de>
Copyright 2019 Bavarian Academy of Sciences and Humanities
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import
asyncio
import
os
from
multiprocessing
import
Process
import
sys
from
typing
import
Tuple
from
DHParser.server
import
CompilerServer
sys
.
path
.
extend
([
'../'
,
'./'
])
scriptdir
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
def
compiler_dummy
(
src
:
str
,
log_dir
:
str
)
->
Tuple
[
str
,
str
]:
return
(
src
,
log_dir
)
class
TestServer
:
def
test_server
(
self
):
cs
=
CompilerServer
(
compiler_dummy
)
p
=
Process
(
target
=
cs
.
run_server
)
p
.
start
()
async
def
compile
(
src
,
log_dir
):
reader
,
writer
=
await
asyncio
.
open_connection
(
'127.0.0.1'
,
8888
)
writer
.
write
(
src
.
encode
())
data
=
await
reader
.
read
(
100
)
print
(
f
'Received:
{
data
.
decode
()
!
r
}
'
)
writer
.
close
()
asyncio
.
run
(
compile
(
'Test'
,
''
))
p
.
terminate
()
if
__name__
==
"__main__"
:
from
DHParser.testing
import
runner
runner
(
""
,
globals
())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment