1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
# etoolkit
# Copyright (C) 2021-2024 Simeon Simeonov
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Common fixtures"""
import json
import pytest
@pytest.fixture()
def config_data():
"""config_data for testing"""
return {
'general': {
'MASTER_PASSWORD_HASH': (
'pbkdf2_sha256$500000$UY3o78KUM1Btzxk3k3JCsijnwtJ2lx+hH9Newp'
'VKxo8=$tHwDm8OVKanC4DoYTigTCb0R3lQIa/CbBYj0B3TZtHg='
)
},
'instances': {
'_default': {
'ETOOLKIT_PROMPT': '(%i)',
'ETOOLKIT_TEST_PYTHONPATH': '/home/foo/%i/python',
},
'dev': {
'ETOOLKIT_PARENT': '_default',
'ETOOLKIT_TEST_PYTHONPATH': '%p:/home/user/%i/.pythonpath',
},
'secret': {
'ETOOLKIT_PARENT': '_default',
'ETOOLKIT_SENSITIVE': ['ETOOLKIT_TEST_PASSWORD'],
'GNUPGHOME': '%h/private/.gnupg',
'ETOOLKIT_TEST_PASSWORD': (
'enc-val$2$RCSZqq9pWrRDoCVYVHopyu1LzaJGfv8roVviqrLTBxM=$'
'+YYrZbwTBuG0Pl+WMQrvxLUtq5j8qYuQqz'
'oIwgoGt7AaWZCJz+E7qoDeg3wke70ST8U='
),
},
},
}
@pytest.fixture()
def config_file(tmp_path, config_data):
"""Temporary config file for testing that includes config_data"""
cf = tmp_path / 'etoolkit.json'
cf.write_text(json.dumps(config_data))
return str(cf)
@pytest.fixture()
def long_encrypted_value():
"""enc. value corresponding to 'Nobody expects the Spanish inquisition'"""
return (
'enc-val$2$uYpZM1VfAGq0CDZL2duITs076CQj+hIFEgx+F4mn80o=$'
'UWP5YeRsh5/2vZ2J1UOS+BJti73Kbp6C1pJmCo8hF'
'Sujpe35X/XpzBegJJpo86AiCsNsUS6B6JM='
)
@pytest.fixture()
def long_value():
"""standard value (> 32 bytes)"""
return 'Nobody expects the Spanish inquisition'
@pytest.fixture()
def master_password():
"""Master passord"""
return 'The very secret passwd'
@pytest.fixture()
def new_master_password():
"""Master passord"""
return 'New very secret passwd'
@pytest.fixture()
def non_random_bytes_32():
"""always use the same bytes instead of os.urandom(32)"""
return (
b'\xb9\x8aY3U_\x00j\xb4\x086K\xd9\xdb\x88N'
b'\xcd;\xe8$#\xfa\x12\x05\x12\x0c~\x17\x89\xa7\xf3J'
)
@pytest.fixture()
def non_random_bytes_57():
"""always use the same bytes instead of os.urandom(57)"""
return (
b'D$\x99\xaa\xafiZ\xb4C\xa0%XTz)\xca\xedK\xcd\xa2F~\xff+\xa1[\xe2\xaa'
b'\xb2\xd3\x07\x13\xedb\xc2\x84\xfe\tS\r\xf0\x02_\xef\xe3\xde\xf1?e'
b'\xa4s(Q\x04\xcd\xc7T'
)
@pytest.fixture()
def nonexistent_config_file(tmp_path):
"""temporary config file for testing that includes config_data"""
return str(tmp_path / 'etoolkitt.json')
@pytest.fixture()
def password_hash():
"""password hash for testing, corresponding to 'The very secret passwd'"""
return (
'pbkdf2_sha256$500000$UY3o78KUM1Btzxk3k3JCsijnwtJ2lx+hH9NewpVKxo8=$'
'tHwDm8OVKanC4DoYTigTCb0R3lQIa/CbBYj0B3TZtHg='
)
@pytest.fixture()
def short_encrypted_value():
"""enc. value corresponding to 'secret1'"""
return (
'enc-val$2$RCSZqq9pWrRDoCVYVHopyu1LzaJGfv8roVviqrLTBxM=$'
'+YYrZbwTBuG0Pl+WMQrvxLUtq5j8qYuQqzoIwgoGt7AaWZCJz+E7qoDeg3wke70ST8U='
)
@pytest.fixture()
def short_encrypted_value_v1():
"""enc. value (enc-val 1) corresponding to 'secret1'"""
return (
'enc-val$1$/cXpEMoZrTlb9yokGhw8tLTSUkqnqJ4ZoAkurNgMYx'
'w=$1VdkSMcZnLRwLiu1M8VlYcbelwmiVNY='
)
@pytest.fixture()
def short_value():
"""standard value (< 32 bytes)"""
return 'secret1'
@pytest.fixture()
def wrong_master_password():
"""Wrong master passord"""
return 'the very secret passwd'
|