mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Test for decrypting journals when password is saved in config
This commit is contained in:
parent
95e7660159
commit
19f6fd3672
2 changed files with 19 additions and 0 deletions
14
features/data/configs/encrypted_with_pw.json
Normal file
14
features/data/configs/encrypted_with_pw.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"default_hour": 9,
|
||||
"timeformat": "%Y-%m-%d %H:%M",
|
||||
"linewrap": 80,
|
||||
"encrypt": true,
|
||||
"editor": "",
|
||||
"default_minute": 0,
|
||||
"highlight": true,
|
||||
"password": "bad doggie no biscuit",
|
||||
"journals": {
|
||||
"default": "features/journals/encrypted.journal"
|
||||
},
|
||||
"tagsymbols": "@"
|
||||
}
|
|
@ -6,6 +6,11 @@
|
|||
Then we should see the message "Password"
|
||||
and the output should contain "2013-06-10 15:40 Life is good"
|
||||
|
||||
Scenario: Loading an encrypted journal with password in config
|
||||
Given we use the config "encrypted_with_pw.json"
|
||||
When we run "jrnl -n 1"
|
||||
Then the output should contain "2013-06-10 15:40 Life is good"
|
||||
|
||||
Scenario: Decrypting a journal
|
||||
Given we use the config "encrypted.json"
|
||||
When we run "jrnl --decrypt" and enter "bad doggie no biscuit"
|
||||
|
|
Loading…
Add table
Reference in a new issue