Adds some tests for the OAuth and some docs
[mediagoblin.git] / mediagoblin / tests / test_basic_auth.py
CommitLineData
7a98eb73
RE
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
3bcdc490 16from mediagoblin.plugins.basic_auth import tools as auth_tools
7a98eb73
RE
17from mediagoblin.tools.testing import _activate_testing
18
19_activate_testing()
20
21
22########################
23# Test bcrypt auth funcs
24########################
25
26
27def test_bcrypt_check_password():
28 # Check known 'lollerskates' password against check function
3bcdc490 29 assert auth_tools.bcrypt_check_password(
7a98eb73
RE
30 'lollerskates',
31 '$2a$12$PXU03zfrVCujBhVeICTwtOaHTUs5FFwsscvSSTJkqx/2RQ0Lhy/nO')
32
3bcdc490 33 assert not auth_tools.bcrypt_check_password(
7a98eb73
RE
34 'notthepassword',
35 '$2a$12$PXU03zfrVCujBhVeICTwtOaHTUs5FFwsscvSSTJkqx/2RQ0Lhy/nO')
36
37 # Same thing, but with extra fake salt.
3bcdc490 38 assert not auth_tools.bcrypt_check_password(
7a98eb73
RE
39 'notthepassword',
40 '$2a$12$ELVlnw3z1FMu6CEGs/L8XO8vl0BuWSlUHgh0rUrry9DUXGMUNWwl6',
41 '3><7R45417')
42
43
44def test_bcrypt_gen_password_hash():
45 pw = 'youwillneverguessthis'
46
47 # Normal password hash generation, and check on that hash
3bcdc490
RE
48 hashed_pw = auth_tools.bcrypt_gen_password_hash(pw)
49 assert auth_tools.bcrypt_check_password(
7a98eb73 50 pw, hashed_pw)
3bcdc490 51 assert not auth_tools.bcrypt_check_password(
7a98eb73
RE
52 'notthepassword', hashed_pw)
53
54 # Same thing, extra salt.
3bcdc490
RE
55 hashed_pw = auth_tools.bcrypt_gen_password_hash(pw, '3><7R45417')
56 assert auth_tools.bcrypt_check_password(
7a98eb73 57 pw, hashed_pw, '3><7R45417')
3bcdc490 58 assert not auth_tools.bcrypt_check_password(
7a98eb73 59 'notthepassword', hashed_pw, '3><7R45417')