summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSimeon Simeonov2024-04-30 11:39:20 +0200
committerSimeon Simeonov2024-04-30 11:39:20 +0200
commitc31fa58c85e866b3a5ab04882c7aff655f0b5477 (patch)
tree84532e1b6ce24c07267d4a8d8e8f810ba657500c /tests
parent8ca7a0d9666ede2d9d270e2a469e4b8dda492e69 (diff)
Implement etoolkit encryption protocol v2
Diffstat (limited to 'tests')
-rw-r--r--tests/conftest.py35
-rw-r--r--tests/test_cli.py60
-rw-r--r--tests/test_envtoolkit_instance.py8
-rw-r--r--tests/test_envtoolkit_instance_static.py114
4 files changed, 169 insertions, 48 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 5dcc456..e555a49 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1,5 +1,5 @@
1# etoolkit 1# etoolkit
2# Copyright (C) 2021-2022 Simeon Simeonov 2# Copyright (C) 2021-2024 Simeon Simeonov
3 3
4# This program is free software: you can redistribute it and/or modify 4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by 5# it under the terms of the GNU General Public License as published by
@@ -14,14 +14,16 @@
14# You should have received a copy of the GNU General Public License 14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>. 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16"""Common fixtures""" 16"""Common fixtures"""
17
17import json 18import json
18 19
19import pytest 20import pytest
20 21
21 22
22@pytest.fixture 23@pytest.fixture()
23def config_data(): 24def config_data():
24 """config_data for testing""" 25 """config_data for testing"""
26
25 return { 27 return {
26 'general': { 28 'general': {
27 'MASTER_PASSWORD_HASH': ( 29 'MASTER_PASSWORD_HASH': (
@@ -51,26 +53,47 @@ def config_data():
51 } 53 }
52 54
53 55
54@pytest.fixture 56@pytest.fixture()
55def config_file(tmp_path, config_data): 57def config_file(tmp_path, config_data):
56 """temporary config file for testing that includes config_data""" 58 """temporary config file for testing that includes config_data"""
57 cf = tmp_path / "etoolkit.json" 59
60 cf = tmp_path / 'etoolkit.json'
58 cf.write_text(json.dumps(config_data)) 61 cf.write_text(json.dumps(config_data))
59 return str(cf) 62 return str(cf)
60 63
61 64
62@pytest.fixture 65@pytest.fixture()
63def non_random_bytes_32(): 66def non_random_bytes_32():
64 """always use the same bytes instead of os.urandom(32)""" 67 """always use the same bytes instead of os.urandom(32)"""
68
65 return ( 69 return (
66 b'\xb9\x8aY3U_\x00j\xb4\x086K\xd9\xdb\x88N' 70 b'\xb9\x8aY3U_\x00j\xb4\x086K\xd9\xdb\x88N'
67 b'\xcd;\xe8$#\xfa\x12\x05\x12\x0c~\x17\x89\xa7\xf3J' 71 b'\xcd;\xe8$#\xfa\x12\x05\x12\x0c~\x17\x89\xa7\xf3J'
68 ) 72 )
69 73
70 74
71@pytest.fixture 75@pytest.fixture()
76def non_random_bytes_61():
77 """always use the same bytes instead of os.urandom(61)"""
78
79 return (
80 b'D$\x99\xaa\xafiZ\xb4C\xa0%XTz)\xca\xedK\xcd\xa2F~\xff+\xa1[\xe2\xaa'
81 b'\xb2\xd3\x07\x13\xedb\xc2\x84\xfe\tS\r\xf0\x02_\xef\xe3\xde\xf1?e'
82 b'\xa4s(Q\x04\xcd\xc7T\x01_D\xb1'
83 )
84
85
86@pytest.fixture()
87def nonexistent_config_file(tmp_path):
88 """temporary config file for testing that includes config_data"""
89
90 return str(tmp_path / 'etoolkitt.json')
91
92
93@pytest.fixture()
72def password_hash(): 94def password_hash():
73 """password hash for testing, corresponding to 'The very secret passwd'""" 95 """password hash for testing, corresponding to 'The very secret passwd'"""
96
74 return ( 97 return (
75 'pbkdf2_sha256$100000$uYpZM1VfAGq0CDZL2duITs076CQj+hIFEgx+F4mn80o=$h3' 98 'pbkdf2_sha256$100000$uYpZM1VfAGq0CDZL2duITs076CQj+hIFEgx+F4mn80o=$h3'
76 'PSPLCd37fP15zKdW4CBGn7CXE+q5UiydaF3vbeZHo=' 99 'PSPLCd37fP15zKdW4CBGn7CXE+q5UiydaF3vbeZHo='
diff --git a/tests/test_cli.py b/tests/test_cli.py
index 684c2e7..e5db244 100644
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -1,5 +1,5 @@
1# etoolkit 1# etoolkit
2# Copyright (C) 2021-2022 Simeon Simeonov 2# Copyright (C) 2021-2024 Simeon Simeonov
3 3
4# This program is free software: you can redistribute it and/or modify 4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by 5# it under the terms of the GNU General Public License as published by
@@ -14,6 +14,7 @@
14# You should have received a copy of the GNU General Public License 14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>. 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16"""Tests for the CLI (etoolkit.__main__""" 16"""Tests for the CLI (etoolkit.__main__"""
17
17import errno 18import errno
18import os 19import os
19import unittest.mock 20import unittest.mock
@@ -24,11 +25,9 @@ import etoolkit
24from etoolkit.__main__ import main 25from etoolkit.__main__ import main
25 26
26 27
27@unittest.mock.patch('os.urandom')
28@unittest.mock.patch('builtins.input') 28@unittest.mock.patch('builtins.input')
29def test_decrypt(binput, urandom, capsys, non_random_bytes_32, config_file): 29def test_decrypt_v1(binput, capsys, config_file):
30 """Tests encryption via the CLI interface""" 30 """Tests v1 decryption via the CLI interface"""
31 urandom.return_value = non_random_bytes_32
32 binput.return_value = ( 31 binput.return_value = (
33 'enc-val$1$uYpZM1VfAGq0CDZL2duITs076CQj+' 32 'enc-val$1$uYpZM1VfAGq0CDZL2duITs076CQj+'
34 'hIFEgx+F4mn80o=$xdF/1S+R2MGlEQMCOLG6OjEuzw==' 33 'hIFEgx+F4mn80o=$xdF/1S+R2MGlEQMCOLG6OjEuzw=='
@@ -43,11 +42,29 @@ def test_decrypt(binput, urandom, capsys, non_random_bytes_32, config_file):
43 assert capsys.readouterr().out.strip() == 'Decrypted value: bar' 42 assert capsys.readouterr().out.strip() == 'Decrypted value: bar'
44 43
45 44
45@unittest.mock.patch('builtins.input')
46def test_decrypt_v2(binput, capsys, config_file):
47 """Tests v2 decryption via the CLI interface"""
48 binput.return_value = (
49 'enc-val$2$RCSZqq9pWrRDoCVYVHopyu1LzaJGfv8roVviq'
50 'rLTBxM=$VW3UZ6l12yDtyaqWHb7i0QEDiS9s9np'
51 '7huAACK54BtZVV7RZoIhbu4K6zZuz+LRCyio='
52 )
53 with unittest.mock.patch.dict(
54 os.environ, {'ETOOLKIT_MASTER_PASSWORD': 'the very secret passwd'}
55 ):
56 with pytest.raises(SystemExit) as exit_info:
57 main(['-c', f'{config_file}', '-d'])
58 assert exit_info.type == SystemExit
59 assert exit_info.value.code == 0
60 assert capsys.readouterr().out.strip() == 'Decrypted value: bar'
61
62
46@unittest.mock.patch('os.urandom') 63@unittest.mock.patch('os.urandom')
47@unittest.mock.patch('builtins.input', lambda *args: 'bar') 64@unittest.mock.patch('builtins.input', lambda *args: 'bar')
48def test_encrypt_with_echo(urandom, capsys, non_random_bytes_32, config_file): 65def test_encrypt_with_echo(urandom, capsys, non_random_bytes_61, config_file):
49 """Tests encryption via the CLI interface""" 66 """Tests encryption via the CLI interface"""
50 urandom.return_value = non_random_bytes_32 67 urandom.return_value = non_random_bytes_61
51 with unittest.mock.patch.dict( 68 with unittest.mock.patch.dict(
52 os.environ, {'ETOOLKIT_MASTER_PASSWORD': 'the very secret passwd'} 69 os.environ, {'ETOOLKIT_MASTER_PASSWORD': 'the very secret passwd'}
53 ): 70 ):
@@ -56,16 +73,17 @@ def test_encrypt_with_echo(urandom, capsys, non_random_bytes_32, config_file):
56 assert exit_info.type == SystemExit 73 assert exit_info.type == SystemExit
57 assert exit_info.value.code == 0 74 assert exit_info.value.code == 0
58 assert capsys.readouterr().out.strip() == ( 75 assert capsys.readouterr().out.strip() == (
59 'Encrypted value: enc-val$1$uYpZM1VfAGq0CDZL2duITs076CQj+' 76 'Encrypted value: enc-val$2$RCSZqq9pWrRDoCVYVHopyu1LzaJGfv8roVviq'
60 'hIFEgx+F4mn80o=$xdF/1S+R2MGlEQMCOLG6OjEuzw==' 77 'rLTBxM=$VW3UZ6l12yDtyaqWHb7i0QEDiS9s9np'
78 '7huAACK54BtZVV7RZoIhbu4K6zZuz+LRCyio='
61 ) 79 )
62 80
63 81
64@unittest.mock.patch('os.urandom') 82@unittest.mock.patch('os.urandom')
65@unittest.mock.patch('getpass.getpass', lambda *args: 'bar') 83@unittest.mock.patch('getpass.getpass', lambda *args: 'bar')
66def test_encrypt_without_echo(gpass, capsys, non_random_bytes_32, config_file): 84def test_encrypt_without_echo(gpass, capsys, non_random_bytes_61, config_file):
67 """Tests encryption via the CLI interface""" 85 """Tests encryption via the CLI interface"""
68 gpass.return_value = non_random_bytes_32 86 gpass.return_value = non_random_bytes_61
69 with unittest.mock.patch.dict( 87 with unittest.mock.patch.dict(
70 os.environ, {'ETOOLKIT_MASTER_PASSWORD': 'the very secret passwd'} 88 os.environ, {'ETOOLKIT_MASTER_PASSWORD': 'the very secret passwd'}
71 ): 89 ):
@@ -74,19 +92,20 @@ def test_encrypt_without_echo(gpass, capsys, non_random_bytes_32, config_file):
74 assert exit_info.type == SystemExit 92 assert exit_info.type == SystemExit
75 assert exit_info.value.code == 0 93 assert exit_info.value.code == 0
76 assert capsys.readouterr().out.strip() == ( 94 assert capsys.readouterr().out.strip() == (
77 'Encrypted value: enc-val$1$uYpZM1VfAGq0CDZL2duITs076CQj+' 95 'Encrypted value: enc-val$2$RCSZqq9pWrRDoCVYVHopyu1LzaJGfv8roVviq'
78 'hIFEgx+F4mn80o=$xdF/1S+R2MGlEQMCOLG6OjEuzw==' 96 'rLTBxM=$VW3UZ6l12yDtyaqWHb7i0QEDiS9s9np'
97 '7huAACK54BtZVV7RZoIhbu4K6zZuz+LRCyio='
79 ) 98 )
80 99
81 100
82def test_list(capsys, config_file): 101def test_list(capsys, config_file, nonexistent_config_file):
83 """Tests list via the CLI interface""" 102 """Tests list via the CLI interface"""
84 with pytest.raises(SystemExit) as exit_info: 103 with pytest.raises(SystemExit) as exit_info:
85 main(['-l']) 104 main(['-c', nonexistent_config_file, '-l'])
86 assert exit_info.type == SystemExit 105 assert exit_info.type == SystemExit
87 assert exit_info.value.code == errno.EIO 106 assert exit_info.value.code == errno.EIO
88 with pytest.raises(SystemExit) as exit_info: 107 with pytest.raises(SystemExit) as exit_info:
89 main(['-c', f'{config_file}', '-l']) 108 main(['-c', config_file, '-l'])
90 assert exit_info.type == SystemExit 109 assert exit_info.type == SystemExit
91 assert exit_info.value.code == 0 110 assert exit_info.value.code == 0
92 assert capsys.readouterr().out.strip() == f'dev{os.linesep}secret' 111 assert capsys.readouterr().out.strip() == f'dev{os.linesep}secret'
@@ -104,10 +123,7 @@ def test_help(capsys):
104@unittest.mock.patch('os.urandom') 123@unittest.mock.patch('os.urandom')
105@unittest.mock.patch('getpass.getpass') 124@unittest.mock.patch('getpass.getpass')
106def test_generate_master_password_hash( 125def test_generate_master_password_hash(
107 gpass, 126 gpass, urandom, capsys, non_random_bytes_32
108 urandom,
109 capsys,
110 non_random_bytes_32,
111): 127):
112 """Tests master password hash generation via the CLI interface""" 128 """Tests master password hash generation via the CLI interface"""
113 urandom.return_value = non_random_bytes_32 129 urandom.return_value = non_random_bytes_32
@@ -117,8 +133,8 @@ def test_generate_master_password_hash(
117 assert exit_info.type == SystemExit 133 assert exit_info.type == SystemExit
118 assert exit_info.value.code == 0 134 assert exit_info.value.code == 0
119 assert capsys.readouterr().out.strip() == ( 135 assert capsys.readouterr().out.strip() == (
120 'Master password hash: pbkdf2_sha256$100000$uYpZM1VfAGq0CDZL2duITs076' 136 'Master password hash: pbkdf2_sha256$500000$uYpZM1VfAGq0CDZL2duITs076'
121 'CQj+hIFEgx+F4mn80o=$h3PSPLCd37fP15zKdW4CBGn7CXE+q5UiydaF3vbeZHo=' 137 'CQj+hIFEgx+F4mn80o=$Msl8/5nOBj0TRchykMzXmCXR8VQVyBqUPHe1PDWeJi8='
122 ) 138 )
123 139
124 140
diff --git a/tests/test_envtoolkit_instance.py b/tests/test_envtoolkit_instance.py
index 09baa31..73faed6 100644
--- a/tests/test_envtoolkit_instance.py
+++ b/tests/test_envtoolkit_instance.py
@@ -1,5 +1,5 @@
1# etoolkit 1# etoolkit
2# Copyright (C) 2021-2022 Simeon Simeonov 2# Copyright (C) 2021-2024 Simeon Simeonov
3 3
4# This program is free software: you can redistribute it and/or modify 4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by 5# it under the terms of the GNU General Public License as published by
@@ -14,6 +14,7 @@
14# You should have received a copy of the GNU General Public License 14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>. 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16"""Tests for etoolkit.EtoolkitInstance""" 16"""Tests for etoolkit.EtoolkitInstance"""
17
17import pytest 18import pytest
18 19
19import etoolkit 20import etoolkit
@@ -32,8 +33,9 @@ def test_instantiation(config_data):
32 assert 'DB_CONNECTION' not in instance.sensitive_env_variables 33 assert 'DB_CONNECTION' not in instance.sensitive_env_variables
33 assert 'PASSWORD' in instance.sensitive_env_variables 34 assert 'PASSWORD' in instance.sensitive_env_variables
34 assert instance.name == 'secret' 35 assert instance.name == 'secret'
35 assert instance.master_password_hash == ( 36 assert (
36 config_data['general']['MASTER_PASSWORD_HASH'] 37 instance.master_password_hash
38 == (config_data['general']['MASTER_PASSWORD_HASH'])
37 ) 39 )
38 assert instance.master_password is None 40 assert instance.master_password is None
39 41
diff --git a/tests/test_envtoolkit_instance_static.py b/tests/test_envtoolkit_instance_static.py
index 73a5f36..5fb9451 100644
--- a/tests/test_envtoolkit_instance_static.py
+++ b/tests/test_envtoolkit_instance_static.py
@@ -1,5 +1,5 @@
1# etoolkit 1# etoolkit
2# Copyright (C) 2021-2022 Simeon Simeonov 2# Copyright (C) 2021-2024 Simeon Simeonov
3 3
4# This program is free software: you can redistribute it and/or modify 4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by 5# it under the terms of the GNU General Public License as published by
@@ -14,6 +14,7 @@
14# You should have received a copy of the GNU General Public License 14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>. 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16"""Tests for etoolkit.EtoolkitInstance static methods""" 16"""Tests for etoolkit.EtoolkitInstance static methods"""
17
17import unittest.mock 18import unittest.mock
18 19
19import pytest 20import pytest
@@ -35,7 +36,7 @@ def test_confirm_password_prompt(getpass, password_hash):
35 ) 36 )
36 37
37 38
38def test_decrypt(): 39def test_decrypt_v1():
39 """Tests the static EtoolkitInstance.decrypt method""" 40 """Tests the static EtoolkitInstance.decrypt method"""
40 assert ( 41 assert (
41 etoolkit.EtoolkitInstance.decrypt( 42 etoolkit.EtoolkitInstance.decrypt(
@@ -49,39 +50,118 @@ def test_decrypt():
49 ) 50 )
50 51
51 # now test with modified edata 52 # now test with modified edata
53 edata = (
54 'enc-val$1$/cXpEMoZrTlb9yokGhw8tLTSUkqnqJ5ZoAkurNgMYx'
55 'w=$1VdkSMcZnLRwLiu1M8VlYcbelwmiVNY='
56 )
52 with pytest.raises(etoolkit.EtoolkitInstanceError) as exc_info: 57 with pytest.raises(etoolkit.EtoolkitInstanceError) as exc_info:
53 edata = ( 58 etoolkit.EtoolkitInstance.decrypt('The very secret passwd', edata)
54 'enc-val$1$/cXpEMoZrTlb9yokGhw8tLTSUkqnqJ5ZoAkurNgMYx' 59 assert exc_info.type is etoolkit.EtoolkitInstanceError
55 'w=$1VdkSMcZnLRwLiu1M8VlYcbelwmiVNY=' 60 assert exc_info.value.args[0] == f'Invalid tag when decrypting: {edata}'
61
62
63def test_decrypt_v2_no_padding():
64 """Tests the static EtoolkitInstance.decrypt method for v2 - no padding"""
65 assert (
66 etoolkit.EtoolkitInstance.decrypt(
67 'The very secret passwd',
68 (
69 'enc-val$2$Wer5lECGyeZhhYS58N18WVx5Zzy+rrC+BPlq3Dw89wQ=$'
70 'SQc0ox6Emf2m5rrumsiptpIZEujdpXXSR/'
71 '1VcfEZeBz4+KDSagr9ID+bkc4R2yFdxHnhig1eqQ8='
72 ),
56 ) 73 )
74 == 'Nobody expects the Spanish inquisition'
75 )
76
77 # now test with modified edata
78 edata = (
79 'enc-val$2$Wer5lECGyeZhhYS58N18WVx5Zzy+rrC+BPlq3Dw89wQ=$'
80 'SQc0ox6Emf2m4rrumsiptpIZEujdpXXSR/'
81 '1VcfEZeBz4+KDSagr9ID+bkc4R2yFdxHnhig1eqQ8='
82 )
83 with pytest.raises(etoolkit.EtoolkitInstanceError) as exc_info:
84 etoolkit.EtoolkitInstance.decrypt('The very secret passwd', edata)
85 assert exc_info.type is etoolkit.EtoolkitInstanceError
86 assert exc_info.value.args[0] == f'Invalid tag when decrypting: {edata}'
87
88
89def test_decrypt_v2_with_padding():
90 """Tests the static EtoolkitInstance.decrypt method for v2 with padding"""
91 assert (
57 etoolkit.EtoolkitInstance.decrypt( 92 etoolkit.EtoolkitInstance.decrypt(
58 'The very secret passwd', edata 93 'The very secret passwd',
59 ) == 'secret1' 94 (
95 'enc-val$2$//kzyUbDEWNoPC5dyukhB8de8+IVaLR2ngx2HwkfOuM=$'
96 'rhRona4wP9nhnXjcHqwkjFDsiVVVjYanAs'
97 'N4kknNkgC0ix4RtJQHYDeTzw1rrR1vb2w='
98 ),
99 )
100 == 'secret1'
101 )
102
103 # now test with modified edata
104 edata = (
105 'enc-val$2$//kzyUbDEWNoPC5dyukhB8de8+IVaLR2ngx2HwkfOuM=$'
106 'rhRona4wP8nhnXjcHqwkjFDsiVVVjYanAsN4kknNkgC0ix4RtJQHYDeTzw1rrR1vb2w='
107 )
108 with pytest.raises(etoolkit.EtoolkitInstanceError) as exc_info:
109 etoolkit.EtoolkitInstance.decrypt('The very secret passwd', edata)
60 assert exc_info.type is etoolkit.EtoolkitInstanceError 110 assert exc_info.type is etoolkit.EtoolkitInstanceError
61 assert exc_info.value.args[0] == f'Invalid tag when decrypting: {edata}' 111 assert exc_info.value.args[0] == f'Invalid tag when decrypting: {edata}'
62 112
63 113
64def test_encrypt(): 114def test_encrypt_no_padding():
65 """Tests the static EtoolkitInstance.encrypt method""" 115 """Tests the static EtoolkitInstance.encrypt method with a long string"""
116 edata = etoolkit.EtoolkitInstance.encrypt(
117 'foo', 'Nobody expects the Spanish inquisition'
118 )
119 assert edata.startswith('enc-val$2$')
120 assert len(edata) == 131
121 # the edata should always be different because of random salting
122 assert edata != etoolkit.EtoolkitInstance.encrypt(
123 'foo', 'Nobody expects the Spanish inquisition'
124 )
125
126
127def test_encrypt_with_padding():
128 """Tests the static EtoolkitInstance.encrypt method with a short string"""
66 edata = etoolkit.EtoolkitInstance.encrypt('foo', 'bar') 129 edata = etoolkit.EtoolkitInstance.encrypt('foo', 'bar')
67 assert edata.startswith('enc-val$') 130 assert edata.startswith('enc-val$2$')
68 assert len(edata) == 83 131 assert len(edata) == 123
69 # the edata should always be different because of random salting 132 # the edata should always be different because of random salting
70 assert edata != etoolkit.EtoolkitInstance.encrypt('foo', 'bar') 133 assert edata != etoolkit.EtoolkitInstance.encrypt('foo', 'bar')
71 134
72 135
73@unittest.mock.patch('os.urandom') 136@unittest.mock.patch('os.urandom')
74def test_encrypt_staticly(urandom, non_random_bytes_32): 137def test_encrypt_staticly_no_padding(urandom, non_random_bytes_32):
75 """Tests the EtoolkitInstance.encrypt method always with the same salt""" 138 """Tests the EtoolkitInstance.encrypt method always with the same salt"""
76 urandom.return_value = non_random_bytes_32 139 urandom.return_value = non_random_bytes_32
140 edata = etoolkit.EtoolkitInstance.encrypt(
141 'The very secret passwd', 'Nobody expects the Spanish inquisition'
142 )
143 assert edata == (
144 'enc-val$2$uYpZM1VfAGq0CDZL2duITs076CQj+hIFEgx+F4mn80o=$'
145 'UX/5YeRsh5/2vZ2J1UOS+BJti73Kbp6C1pJmC'
146 'o8hFSujpe35X/XpzAiYv4BV1LNwnSYECsotsgs='
147 )
148 assert len(edata) == 131
149 assert edata == etoolkit.EtoolkitInstance.encrypt(
150 'The very secret passwd', 'Nobody expects the Spanish inquisition'
151 )
152
153
154@unittest.mock.patch('os.urandom')
155def test_encrypt_staticly_with_padding(urandom, non_random_bytes_61):
156 """Tests the EtoolkitInstance.encrypt method always with the same salt"""
157 urandom.return_value = non_random_bytes_61
77 edata = etoolkit.EtoolkitInstance.encrypt('The very secret passwd', 'bar') 158 edata = etoolkit.EtoolkitInstance.encrypt('The very secret passwd', 'bar')
78 assert edata == ( 159 assert edata == (
79 'enc-val$1$uYpZM1VfAGq0CDZL2duITs076CQj+hIFEgx+F4mn80' 160 'enc-val$2$RCSZqq9pWrRDoCVYVHopyu1LzaJGfv8roVviqrLTBxM=$'
80 'o=$HjPFNv6xC5hbMrFc0L5lSkWdfQ==' 161 '+Yo6Ya2MAVcBLTQHuATkyFc+dzYsL/ESvA6ofOUDsiKZvIff35cUHAmoNxVuGG+MXv4='
81 ) 162 )
82 assert edata == etoolkit.EtoolkitInstance.encrypt( 163 assert edata == etoolkit.EtoolkitInstance.encrypt(
83 'The very secret passwd', 164 'The very secret passwd', 'bar'
84 'bar',
85 ) 165 )
86 166
87 167
@@ -91,7 +171,7 @@ def test_get_new_password_hash():
91 'The very secret passwd' 171 'The very secret passwd'
92 ) 172 )
93 # all pbkdf2 params are the same / hardcoded for the time being 173 # all pbkdf2 params are the same / hardcoded for the time being
94 assert new_hash.startswith('pbkdf2_sha256$100000$') 174 assert new_hash.startswith('pbkdf2_sha256$500000$')
95 assert len(new_hash) == 110 175 assert len(new_hash) == 110
96 # the hash should always be different because of random salting 176 # the hash should always be different because of random salting
97 assert new_hash != etoolkit.EtoolkitInstance.get_new_password_hash( 177 assert new_hash != etoolkit.EtoolkitInstance.get_new_password_hash(