Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
django-sshkey
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
128b7796
authored
Aug 27, 2013
by
Scott Duckworth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
create unit tests
parent
3630f393
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
302 additions
and
12 deletions
+302
-12
sshkey/tests.py
+302
-12
No files found.
sshkey/tests.py
View file @
128b7796
"""
This file demonstrates writing tests using the unittest module. These will pass
when you run "manage.py test".
from
django.test
import
TestCase
from
django.test.client
import
Client
from
django.contrib.auth.models
import
User
from
django.core.exceptions
import
ValidationError
from
django.core.urlresolvers
import
reverse
from
sshkey.models
import
UserKey
from
sshkey
import
settings
import
os
import
shutil
import
subprocess
import
tempfile
Replace this with more appropriate tests for your application.
"""
def
ssh_keygen
(
type
=
None
,
passphrase
=
''
,
comment
=
None
,
file
=
None
):
cmd
=
[
'ssh-keygen'
,
'-q'
]
if
type
is
not
None
:
cmd
+=
[
'-t'
,
type
]
if
passphrase
is
not
None
:
cmd
+=
[
'-N'
,
passphrase
]
if
comment
is
not
None
:
cmd
+=
[
'-C'
,
comment
]
if
file
is
not
None
:
cmd
+=
[
'-f'
,
file
]
subprocess
.
check_call
(
cmd
)
from
django.test
import
TestCase
def
ssh_fingerprint
(
pubkey_path
):
cmd
=
[
'ssh-keygen'
,
'-lf'
,
pubkey_path
]
p
=
subprocess
.
Popen
(
cmd
,
stdout
=
subprocess
.
PIPE
)
stdout
,
stderr
=
p
.
communicate
()
fingerprint
=
stdout
.
split
(
None
,
2
)[
1
]
return
fingerprint
class
BaseTestCase
(
TestCase
):
@classmethod
def
setUpClass
(
cls
):
cls
.
key_dir
=
tempfile
.
mkdtemp
(
prefix
=
'sshkey-test.'
)
@classmethod
def
tearDownClass
(
cls
):
if
cls
.
key_dir
:
shutil
.
rmtree
(
cls
.
key_dir
)
cls
.
key_dir
=
None
class
UserKeyCreationTestCase
(
BaseTestCase
):
@classmethod
def
setUpClass
(
cls
):
super
(
UserKeyCreationTestCase
,
cls
)
.
setUpClass
()
cls
.
user1
=
User
.
objects
.
create
(
username
=
'user1'
)
cls
.
user2
=
User
.
objects
.
create
(
username
=
'user2'
)
# key1 has a comment
cls
.
key1_path
=
os
.
path
.
join
(
cls
.
key_dir
,
'key1'
)
ssh_keygen
(
comment
=
'comment'
,
file
=
cls
.
key1_path
)
# key2 does not have a comment
cls
.
key2_path
=
os
.
path
.
join
(
cls
.
key_dir
,
'key2'
)
ssh_keygen
(
comment
=
''
,
file
=
cls
.
key2_path
)
@classmethod
def
tearDownClass
(
cls
):
User
.
objects
.
all
()
.
delete
()
super
(
UserKeyCreationTestCase
,
cls
)
.
tearDownClass
()
def
tearDown
(
self
):
UserKey
.
objects
.
all
()
.
delete
()
def
test_with_name_with_comment
(
self
):
key
=
UserKey
(
user
=
self
.
user1
,
name
=
'name'
,
key
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
(),
)
key
.
full_clean
()
key
.
save
()
self
.
assertEqual
(
key
.
name
,
'name'
)
def
test_with_name_without_comment
(
self
):
key
=
UserKey
(
user
=
self
.
user1
,
name
=
'name'
,
key
=
open
(
self
.
key2_path
+
'.pub'
)
.
read
(),
)
key
.
full_clean
()
key
.
save
()
self
.
assertEqual
(
key
.
name
,
'name'
)
def
test_without_name_with_comment
(
self
):
key
=
UserKey
(
user
=
self
.
user1
,
key
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
(),
)
key
.
full_clean
()
key
.
save
()
self
.
assertEqual
(
key
.
name
,
'comment'
)
def
test_without_name_without_comment_fails
(
self
):
key
=
UserKey
(
user
=
self
.
user1
,
key
=
open
(
self
.
key2_path
+
'.pub'
)
.
read
(),
)
self
.
assertRaises
(
ValidationError
,
key
.
full_clean
)
def
test_private_key_fails
(
self
):
key
=
UserKey
(
user
=
self
.
user1
,
name
=
'name'
,
key
=
open
(
self
.
key1_path
)
.
read
(),
)
self
.
assertRaises
(
ValidationError
,
key
.
full_clean
)
def
test_fingerprint
(
self
):
fingerprint
=
ssh_fingerprint
(
self
.
key1_path
+
'.pub'
)
key
=
UserKey
(
user
=
self
.
user1
,
name
=
'name'
,
key
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
(),
)
key
.
full_clean
()
key
.
save
()
self
.
assertEqual
(
key
.
fingerprint
,
fingerprint
)
def
test_same_name_same_user
(
self
):
key1
=
UserKey
(
user
=
self
.
user1
,
name
=
'name'
,
key
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
(),
)
key1
.
full_clean
()
key1
.
save
()
key2
=
UserKey
(
user
=
self
.
user1
,
name
=
'name'
,
key
=
open
(
self
.
key2_path
+
'.pub'
)
.
read
(),
)
self
.
assertRaises
(
ValidationError
,
key2
.
full_clean
)
def
test_same_name_different_user
(
self
):
key1
=
UserKey
(
user
=
self
.
user1
,
name
=
'name'
,
key
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
(),
)
key1
.
full_clean
()
key1
.
save
()
key2
=
UserKey
(
user
=
self
.
user2
,
name
=
'name'
,
key
=
open
(
self
.
key2_path
+
'.pub'
)
.
read
(),
)
key2
.
full_clean
()
key2
.
save
()
def
test_same_key_same_user
(
self
):
key1
=
UserKey
(
user
=
self
.
user1
,
name
=
'name1'
,
key
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
(),
)
key1
.
full_clean
()
key1
.
save
()
key2
=
UserKey
(
user
=
self
.
user1
,
name
=
'name2'
,
key
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
(),
)
self
.
assertRaises
(
ValidationError
,
key2
.
full_clean
)
def
test_same_key_different_user
(
self
):
key1
=
UserKey
(
user
=
self
.
user1
,
name
=
'name1'
,
key
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
(),
)
key1
.
full_clean
()
key1
.
save
()
key2
=
UserKey
(
user
=
self
.
user2
,
name
=
'name2'
,
key
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
(),
)
self
.
assertRaises
(
ValidationError
,
key2
.
full_clean
)
class
UserKeyLookupTestCase
(
BaseTestCase
):
@classmethod
def
setUpClass
(
cls
):
super
(
UserKeyLookupTestCase
,
cls
)
.
setUpClass
()
cls
.
original_options
=
settings
.
SSHKEY_AUTHORIZED_KEYS_OPTIONS
settings
.
SSHKEY_AUTHORIZED_KEYS_OPTIONS
=
'command="{username}"'
cls
.
user1
=
User
.
objects
.
create
(
username
=
'user1'
)
cls
.
user2
=
User
.
objects
.
create
(
username
=
'user2'
)
cls
.
key1_path
=
os
.
path
.
join
(
cls
.
key_dir
,
'key1'
)
ssh_keygen
(
file
=
cls
.
key1_path
)
key1
=
UserKey
(
user
=
cls
.
user1
,
name
=
'key1'
,
key
=
open
(
cls
.
key1_path
+
'.pub'
)
.
read
(),
)
key1
.
full_clean
()
key1
.
save
()
cls
.
key2_path
=
os
.
path
.
join
(
cls
.
key_dir
,
'key2'
)
ssh_keygen
(
file
=
cls
.
key2_path
)
key2
=
UserKey
(
user
=
cls
.
user1
,
name
=
'key2'
,
key
=
open
(
cls
.
key2_path
+
'.pub'
)
.
read
(),
)
key2
.
full_clean
()
key2
.
save
()
cls
.
key3_path
=
os
.
path
.
join
(
cls
.
key_dir
,
'key3'
)
ssh_keygen
(
file
=
cls
.
key3_path
)
key3
=
UserKey
(
user
=
cls
.
user2
,
name
=
'key3'
,
key
=
open
(
cls
.
key3_path
+
'.pub'
)
.
read
(),
)
key3
.
full_clean
()
key3
.
save
()
cls
.
key4_path
=
os
.
path
.
join
(
cls
.
key_dir
,
'key4'
)
ssh_keygen
(
file
=
cls
.
key4_path
)
@classmethod
def
tearDownClass
(
cls
):
settings
.
SSHKEY_AUTHORIZED_KEYS_OPTIONS
=
cls
.
original_options
User
.
objects
.
all
()
.
delete
()
super
(
UserKeyLookupTestCase
,
cls
)
.
tearDownClass
()
def
test_lookup_all
(
self
):
client
=
Client
()
url
=
reverse
(
'sshkey.views.lookup'
)
response
=
client
.
get
(
url
)
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertIn
(
'Content-Type'
,
response
)
self
.
assertEqual
(
response
[
'Content-Type'
],
'text/plain'
)
actual_content
=
response
.
content
.
strip
()
.
split
(
'
\n
'
)
correct_content
=
[
'command="user1" '
+
open
(
self
.
key1_path
+
'.pub'
)
.
read
()
.
strip
(),
'command="user1" '
+
open
(
self
.
key2_path
+
'.pub'
)
.
read
()
.
strip
(),
'command="user2" '
+
open
(
self
.
key3_path
+
'.pub'
)
.
read
()
.
strip
(),
]
self
.
assertEqual
(
sorted
(
actual_content
),
sorted
(
correct_content
))
def
test_lookup_by_fingerprint
(
self
):
client
=
Client
()
url
=
reverse
(
'sshkey.views.lookup'
)
fingerprint
=
ssh_fingerprint
(
self
.
key1_path
+
'.pub'
)
response
=
client
.
get
(
url
,
{
'fingerprint'
:
fingerprint
})
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertIn
(
'Content-Type'
,
response
)
self
.
assertEqual
(
response
[
'Content-Type'
],
'text/plain'
)
username
=
self
.
user1
.
username
actual_content
=
response
.
content
.
strip
()
.
split
(
'
\n
'
)
correct_content
=
[
'command="user1" '
+
open
(
self
.
key1_path
+
'.pub'
)
.
read
()
.
strip
(),
]
self
.
assertEqual
(
sorted
(
actual_content
),
sorted
(
correct_content
))
def
test_lookup_by_username_single_result
(
self
):
client
=
Client
()
url
=
reverse
(
'sshkey.views.lookup'
)
username
=
self
.
user2
.
username
response
=
client
.
get
(
url
,
{
'username'
:
username
})
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertIn
(
'Content-Type'
,
response
)
self
.
assertEqual
(
response
[
'Content-Type'
],
'text/plain'
)
body
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
()
.
strip
()
actual_content
=
response
.
content
.
strip
()
.
split
(
'
\n
'
)
correct_content
=
[
'command="user2" '
+
open
(
self
.
key3_path
+
'.pub'
)
.
read
()
.
strip
(),
]
self
.
assertEqual
(
sorted
(
actual_content
),
sorted
(
correct_content
))
def
test_lookup_by_username_multiple_results
(
self
):
client
=
Client
()
url
=
reverse
(
'sshkey.views.lookup'
)
username
=
self
.
user1
.
username
response
=
client
.
get
(
url
,
{
'username'
:
username
})
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertIn
(
'Content-Type'
,
response
)
self
.
assertEqual
(
response
[
'Content-Type'
],
'text/plain'
)
body
=
open
(
self
.
key1_path
+
'.pub'
)
.
read
()
.
strip
()
actual_content
=
response
.
content
.
strip
()
.
split
(
'
\n
'
)
correct_content
=
[
'command="user1" '
+
open
(
self
.
key1_path
+
'.pub'
)
.
read
()
.
strip
(),
'command="user1" '
+
open
(
self
.
key2_path
+
'.pub'
)
.
read
()
.
strip
(),
]
self
.
assertEqual
(
sorted
(
actual_content
),
sorted
(
correct_content
))
def
test_lookup_nonexist_fingerprint
(
self
):
client
=
Client
()
url
=
reverse
(
'sshkey.views.lookup'
)
fingerprint
=
ssh_fingerprint
(
self
.
key4_path
+
'.pub'
)
response
=
client
.
get
(
url
,
{
'fingerprint'
:
fingerprint
})
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertIn
(
'Content-Type'
,
response
)
self
.
assertEqual
(
response
[
'Content-Type'
],
'text/plain'
)
self
.
assertEqual
(
response
.
content
,
''
)
class
SimpleTest
(
TestCase
):
def
test_basic_addition
(
self
):
"""
Tests that 1 + 1 always equals 2.
"""
self
.
assertEqual
(
1
+
1
,
2
)
def
test_lookup_nonexist_username
(
self
):
client
=
Client
()
url
=
reverse
(
'sshkey.views.lookup'
)
response
=
client
.
get
(
url
,
{
'username'
:
'batman'
})
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertIn
(
'Content-Type'
,
response
)
self
.
assertEqual
(
response
[
'Content-Type'
],
'text/plain'
)
self
.
assertEqual
(
response
.
content
,
''
)
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