2022-11-05 19:45:21 +08:00
|
|
|
#!/bin/false "This script should be sourced in zsh, not executed directly"
|
2022-08-28 20:51:44 +08:00
|
|
|
|
|
|
|
set -ex
|
2023-02-01 22:29:06 +08:00
|
|
|
trap "dfs beacon gh.ci.fail" ERR
|
2022-08-28 20:51:44 +08:00
|
|
|
|
|
|
|
# check files
|
|
|
|
cd /
|
2022-11-05 19:45:21 +08:00
|
|
|
l
|
|
|
|
cd ~
|
|
|
|
l
|
2022-08-28 20:51:44 +08:00
|
|
|
dfs cd
|
2022-11-05 19:45:21 +08:00
|
|
|
l
|
2022-08-28 20:51:44 +08:00
|
|
|
pwd
|
|
|
|
test -f .zshrc2
|
|
|
|
diff -q ./.ssh/authorized_keys2 ~/.ssh/authorized_keys2
|
|
|
|
grep -q ".zshrc2" ~/.zshrc
|
|
|
|
|
|
|
|
# check scripts and functions
|
|
|
|
dfs version
|
|
|
|
dfs log 1
|
2023-01-30 17:57:14 +08:00
|
|
|
dfs beacon gh.ci $GITHUB_SHA
|
2022-11-05 19:45:21 +08:00
|
|
|
z ~
|
|
|
|
test ~ -ef "$(pwd)"
|
2022-08-28 20:51:44 +08:00
|
|
|
dogo
|
2022-11-14 01:37:48 +08:00
|
|
|
doll
|
2022-11-05 19:45:21 +08:00
|
|
|
dfs cd
|
2023-01-08 15:33:09 +08:00
|
|
|
tools/test-getopts.sh
|
|
|
|
tools/common.sh get_os_name
|
|
|
|
test $(echo y | tools/common.sh ask_for_yN "test") = "1"
|
|
|
|
test $(echo n | tools/common.sh ask_for_yN "test") = "0"
|
|
|
|
test $(echo | tools/common.sh ask_for_yN "test") = "0"
|
|
|
|
test $(echo | tools/common.sh ask_for_Yn "test") = "1"
|
|
|
|
test $(DFS_QUIET=1 tools/common.sh ask_for_Yn "test") = "1"
|
2022-08-28 20:51:44 +08:00
|
|
|
|
|
|
|
# check alias
|
2022-11-15 01:28:38 +08:00
|
|
|
alias p114
|
2023-01-06 16:14:41 +08:00
|
|
|
which riot
|
2023-01-30 19:41:00 +08:00
|
|
|
sagent
|
2023-01-30 19:46:27 +08:00
|
|
|
test -f "/tmp/piv-agent-$(whoami)"
|
2022-11-17 20:02:35 +08:00
|
|
|
gbes || which gbes
|
2022-08-28 20:51:44 +08:00
|
|
|
|
|
|
|
# check update
|
2022-11-05 19:45:21 +08:00
|
|
|
DFS_VERSION=`dfs version`
|
2022-08-28 20:51:44 +08:00
|
|
|
dfs update
|
|
|
|
dfs version
|
|
|
|
test `git rev-parse HEAD` = `curl -fsSL https://api.beardic.cn/get-var/dfs-commit-id`
|
2022-11-05 19:45:21 +08:00
|
|
|
|
|
|
|
# clean
|
|
|
|
git reset --hard $DFS_VERSION
|
2022-11-12 20:05:29 +08:00
|
|
|
|
|
|
|
# then check install.sh
|
2023-02-01 17:08:56 +08:00
|
|
|
./install.sh -dx DFS_CI=1 -H e153a2eL,f8At3iFw
|
2023-02-01 21:16:29 +08:00
|
|
|
grep -qE "testhist 1$" ~/.zsh_history
|
|
|
|
grep -qE "testhist 4$" ~/.zsh_history
|
2023-02-01 21:03:49 +08:00
|
|
|
grep -qx "DFS_CI=1" ~/.config/dotfiles/env
|
2023-02-01 21:20:21 +08:00
|
|
|
./install.sh -l
|
2022-11-12 20:05:29 +08:00
|
|
|
dfs version
|
|
|
|
test `git rev-parse HEAD` = `curl -fsSL https://api.beardic.cn/get-var/dfs-commit-id`
|
|
|
|
|
|
|
|
# clean
|
|
|
|
git reset --hard $DFS_VERSION
|
|
|
|
|
2022-11-05 19:45:21 +08:00
|
|
|
set +x
|