mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-04 17:01:00 +02:00
dfb5648505
A new parameter is added to `_autoenv_hash_pair` to specify the version, defaulting to the latest (2). It outputs a `cksum`-based hash for version 2 and `shasum`-based for version 1. Moves logic to check for an entry in `$AUTOENV_AUTH_FILE` into its own function (`_autoenv_authorized_pair`), as it may need to be called twice. Modifies `_autoenv_authorized_env_file` to check for v1 entries when v2 fails. Fixes #53. Alternative implementation to #54.
88 lines
2.3 KiB
Raku
88 lines
2.3 KiB
Raku
Tests for internal util methods.
|
|
|
|
$ source $TESTDIR/setup.zsh || return 1
|
|
|
|
Non-existing entries are allowed and handled without error.
|
|
|
|
$ mkdir -p sub/sub2
|
|
$ touch file sub/file sub/sub2/file
|
|
|
|
Should not get the file from the current dir.
|
|
|
|
$ _autoenv_get_file_upwards . file
|
|
|
|
$ cd sub/sub2
|
|
$ _autoenv_get_file_upwards . file
|
|
*/_autoenv_utils.t/sub/file (glob)
|
|
|
|
|
|
Tests for _autoenv_authorize. {{{
|
|
|
|
Auth file is empty.
|
|
|
|
$ cd ../..
|
|
$ ! [[ -f "$AUTOENV_AUTH_FILE" ]] || cat $AUTOENV_AUTH_FILE
|
|
|
|
Failed authorization should keep the auth file empty.
|
|
|
|
$ _autoenv_authorize does-not-exist
|
|
Missing file argument for _autoenv_hash_pair!
|
|
[1]
|
|
$ cat $AUTOENV_AUTH_FILE
|
|
|
|
Now adding some auth pair.
|
|
|
|
$ echo first > first
|
|
$ _autoenv_authorize first
|
|
$ cat $AUTOENV_AUTH_FILE
|
|
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
|
|
|
And a second one.
|
|
|
|
$ echo second > second
|
|
$ _autoenv_authorize second
|
|
$ cat $AUTOENV_AUTH_FILE
|
|
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
|
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
|
|
|
And a third.
|
|
|
|
$ echo third > third
|
|
$ _autoenv_authorize third
|
|
$ cat $AUTOENV_AUTH_FILE
|
|
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
|
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
|
:/tmp/cramtests-*/_autoenv_utils.t/third:451243482.6:2 (glob)
|
|
|
|
Re-add the second one, with the same hash.
|
|
|
|
$ _autoenv_authorize second
|
|
$ cat $AUTOENV_AUTH_FILE
|
|
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
|
:/tmp/cramtests-*/_autoenv_utils.t/third:451243482.6:2 (glob)
|
|
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
|
|
|
Re-add the first one, with a new hash.
|
|
|
|
$ echo one more line >> first
|
|
$ _autoenv_authorize first
|
|
$ cat $AUTOENV_AUTH_FILE
|
|
:/tmp/cramtests-*/_autoenv_utils.t/third:451243482.6:2 (glob)
|
|
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
|
:/tmp/cramtests-*/_autoenv_utils.t/first:3620404822.20:2 (glob)
|
|
}}}
|
|
|
|
|
|
Explicit calls to _autoenv_get_file_mtime to test alternative implementation
|
|
of _autoenv_get_file_mtime (via ZDOTDIR.invalid-module_path/).
|
|
|
|
$ _autoenv_get_file_mtime non-existing
|
|
0
|
|
$ touch -t 201401010101 file
|
|
$ _autoenv_get_file_mtime file
|
|
1388538060
|
|
$ mkdir dir
|
|
$ touch -t 201401010102 dir
|
|
$ _autoenv_get_file_mtime dir
|
|
1388538120
|