Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
107
Merge Requests
107
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
45c79aaa
Commit
45c79aaa
authored
Feb 06, 2020
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proftpd/test: support python3
parent
c5b35b2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
15 deletions
+18
-15
software/proftpd/test/setup.py
software/proftpd/test/setup.py
+1
-0
software/proftpd/test/test.py
software/proftpd/test/test.py
+17
-15
No files found.
software/proftpd/test/setup.py
View file @
45c79aaa
...
@@ -48,6 +48,7 @@ setup(
...
@@ -48,6 +48,7 @@ setup(
'pysftp'
,
'pysftp'
,
'supervisor'
,
'supervisor'
,
'psutil'
,
'psutil'
,
'six'
,
],
],
zip_safe
=
True
,
zip_safe
=
True
,
test_suite
=
'test'
,
test_suite
=
'test'
,
...
...
software/proftpd/test/test.py
View file @
45c79aaa
...
@@ -25,11 +25,12 @@
...
@@ -25,11 +25,12 @@
#
#
##############################################################################
##############################################################################
from
__future__
import
unicode_literals
import
os
import
os
import
shutil
import
shutil
import
urlparse
import
six.moves.urllib.parse
as
urlparse
import
tempfile
import
tempfile
import
StringIO
import
io
import
subprocess
import
subprocess
import
pysftp
import
pysftp
...
@@ -40,6 +41,7 @@ from paramiko.ssh_exception import AuthenticationException
...
@@ -40,6 +41,7 @@ from paramiko.ssh_exception import AuthenticationException
from
slapos.testing.testcase
import
makeModuleSetUpAndTestCaseClass
from
slapos.testing.testcase
import
makeModuleSetUpAndTestCaseClass
from
slapos.testing.utils
import
findFreeTCPPort
from
slapos.testing.utils
import
findFreeTCPPort
setUpModule
,
SlapOSInstanceTestCase
=
makeModuleSetUpAndTestCaseClass
(
setUpModule
,
SlapOSInstanceTestCase
=
makeModuleSetUpAndTestCaseClass
(
os
.
path
.
abspath
(
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'..'
,
'software.cfg'
)))
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'..'
,
'software.cfg'
)))
...
@@ -117,14 +119,14 @@ class TestSFTPOperations(ProFTPdTestCase):
...
@@ -117,14 +119,14 @@ class TestSFTPOperations(ProFTPdTestCase):
def
test_uploaded_file_not_visible_until_fully_uploaded
(
self
):
def
test_uploaded_file_not_visible_until_fully_uploaded
(
self
):
test_self
=
self
test_self
=
self
class
PartialFile
(
StringIO
.
StringIO
):
class
PartialFile
(
io
.
StringIO
):
def
read
(
self
,
*
args
):
def
read
(
self
,
*
args
):
# file is not visible yet
# file is not visible yet
test_self
.
assertNotIn
(
'destination'
,
os
.
listdir
(
test_self
.
upload_dir
))
test_self
.
assertNotIn
(
'destination'
,
os
.
listdir
(
test_self
.
upload_dir
))
# it's just a hidden file
# it's just a hidden file
test_self
.
assertEqual
(
test_self
.
assertEqual
(
[
'.in.destination.'
],
os
.
listdir
(
test_self
.
upload_dir
))
[
'.in.destination.'
],
os
.
listdir
(
test_self
.
upload_dir
))
return
StringIO
.
StringIO
.
read
(
self
,
*
args
)
return
io
.
StringIO
.
read
(
self
,
*
args
)
with
self
.
_getConnection
()
as
sftp
:
with
self
.
_getConnection
()
as
sftp
:
sftp
.
sftp_client
.
putfo
(
PartialFile
(
"content"
),
"destination"
)
sftp
.
sftp_client
.
putfo
(
PartialFile
(
"content"
),
"destination"
)
...
@@ -136,7 +138,7 @@ class TestSFTPOperations(ProFTPdTestCase):
...
@@ -136,7 +138,7 @@ class TestSFTPOperations(ProFTPdTestCase):
test_self
=
self
test_self
=
self
with
self
.
_getConnection
()
as
sftp
:
with
self
.
_getConnection
()
as
sftp
:
class
ErrorFile
(
StringIO
.
StringIO
):
class
ErrorFile
(
io
.
StringIO
):
def
read
(
self
,
*
args
):
def
read
(
self
,
*
args
):
# at this point, file is already created on server
# at this point, file is already created on server
test_self
.
assertEqual
(
test_self
.
assertEqual
(
...
@@ -152,18 +154,18 @@ class TestSFTPOperations(ProFTPdTestCase):
...
@@ -152,18 +154,18 @@ class TestSFTPOperations(ProFTPdTestCase):
def
test_user_cannot_escape_home
(
self
):
def
test_user_cannot_escape_home
(
self
):
with
self
.
_getConnection
()
as
sftp
:
with
self
.
_getConnection
()
as
sftp
:
with
self
.
assertRaisesRegex
p
(
IOError
,
'Permission denied'
):
with
self
.
assertRaisesRegex
(
IOError
,
'Permission denied'
):
sftp
.
listdir
(
'..'
)
sftp
.
listdir
(
'..'
)
with
self
.
assertRaisesRegex
p
(
IOError
,
'Permission denied'
):
with
self
.
assertRaisesRegex
(
IOError
,
'Permission denied'
):
sftp
.
listdir
(
'/'
)
sftp
.
listdir
(
'/'
)
with
self
.
assertRaisesRegex
p
(
IOError
,
'Permission denied'
):
with
self
.
assertRaisesRegex
(
IOError
,
'Permission denied'
):
sftp
.
listdir
(
'/tmp/'
)
sftp
.
listdir
(
'/tmp/'
)
class
TestUserManagement
(
ProFTPdTestCase
):
class
TestUserManagement
(
ProFTPdTestCase
):
def
test_user_can_be_added_from_script
(
self
):
def
test_user_can_be_added_from_script
(
self
):
with
self
.
assertRaisesRegex
p
(
AuthenticationException
,
with
self
.
assertRaisesRegex
(
'Authentication failed'
):
AuthenticationException
,
'Authentication failed'
):
self
.
_getConnection
(
username
=
'bob'
,
password
=
'secret'
)
self
.
_getConnection
(
username
=
'bob'
,
password
=
'secret'
)
subprocess
.
check_call
(
subprocess
.
check_call
(
...
@@ -176,13 +178,13 @@ class TestUserManagement(ProFTPdTestCase):
...
@@ -176,13 +178,13 @@ class TestUserManagement(ProFTPdTestCase):
class
TestBan
(
ProFTPdTestCase
):
class
TestBan
(
ProFTPdTestCase
):
def
test_client_are_banned_after_5_wrong_passwords
(
self
):
def
test_client_are_banned_after_5_wrong_passwords
(
self
):
# Simulate failed 5 login attempts
# Simulate failed 5 login attempts
for
i
in
range
(
5
):
for
_
in
range
(
5
):
with
self
.
assertRaisesRegex
p
(
AuthenticationException
,
with
self
.
assertRaisesRegex
(
'Authentication failed'
):
AuthenticationException
,
'Authentication failed'
):
self
.
_getConnection
(
password
=
'wrong'
)
self
.
_getConnection
(
password
=
'wrong'
)
# after that, even with a valid password we cannot connect
# after that, even with a valid password we cannot connect
with
self
.
assertRaisesRegex
p
(
SSHException
,
'Connection reset by peer'
):
with
self
.
assertRaisesRegex
(
SSHException
,
'Connection reset by peer'
):
self
.
_getConnection
()
self
.
_getConnection
()
# ban event is logged
# ban event is logged
...
@@ -190,7 +192,7 @@ class TestBan(ProFTPdTestCase):
...
@@ -190,7 +192,7 @@ class TestBan(ProFTPdTestCase):
'var'
,
'var'
,
'log'
,
'log'
,
'proftpd-ban.log'
))
as
ban_log_file
:
'proftpd-ban.log'
))
as
ban_log_file
:
self
.
assertRegex
pMatches
(
self
.
assertRegex
(
ban_log_file
.
readlines
()[
-
1
],
ban_log_file
.
readlines
()[
-
1
],
'login from host .* denied due to host ban'
)
'login from host .* denied due to host ban'
)
...
...
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