mirror of
https://github.com/kazhala/dotbare
synced 2024-11-17 21:25:32 +00:00
66 lines
3.6 KiB
Bash
Executable File
66 lines
3.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This script is for mocking fzf for testing,
|
|
# it will stop fzf for goin into a interactive mode
|
|
#
|
|
# usage:
|
|
# export PATH="${BATS_TEST_DIRNAME}:$PATH"
|
|
|
|
if [[ "$*" =~ '--multi --preview ' ]] && [[ "$*" =~ "tree -L 1 -C --dirsfirst {}" ]]; then
|
|
# dotbare fadd --dir -- "./fadd.bats" @test "fadd stage selected dir"
|
|
echo "fadd_stage_dir"
|
|
elif [[ "$*" =~ '--multi --preview' ]] && [[ "$*" =~ "preview.sh {}" ]]; then
|
|
# dotbare fadd -f -- "./fadd.bats" @test "fadd stage selected file"
|
|
echo "fadd_stage_file"
|
|
elif [[ "$*" =~ '--header=select files to stage' ]] && [[ "$*" =~ "diff HEAD --color=always" ]]; then
|
|
# dotbare fadd -- "./fadd.bats" @test "fadd stage modified files"
|
|
echo "-- fadd_stage_modified"
|
|
elif [[ "$*" =~ "--no-multi --header=select a branch to checkout" ]]; then
|
|
# dotbare fcheckout --branch -- "./fcheckout.bats" @test "fcheckout branch"
|
|
echo "fcheckout_branch"
|
|
elif [[ "$*" =~ "--header=select a commit to checkout" ]] && [[ "$*" =~ "show --color" ]]; then
|
|
# dotbare fcheckout --c -- "./fcheckout.bats" @test "fcheckout commit"
|
|
echo "fcheckout_commit"
|
|
elif [[ "$*" =~ "--header=select a file to checkout version in HEAD" ]] && [[ "$*" =~ "diff HEAD --color=always" ]]; then
|
|
# dotbare fcheckout -y -- "./fcheckout.bats" @test "fcheckout modified"
|
|
echo "-- fcheckout_modified"
|
|
elif [[ "$*" =~ '--header=select the target commit' ]] && [[ "$*" =~ "diff --color" ]]; then
|
|
# dotbare fcheckout --yes -s -- "./fcheckout.bats" @test "fcheckout select"
|
|
echo "fcheckout_select_commitdiff"
|
|
elif [[ "$*" =~ '--header=select a file to checkout' ]] && [[ "$*" =~ "preview.sh ${DOTBARE_TREE}/{}" ]]; then
|
|
# dotbare fcheckout --yes -s -- "./fcheckout.bats" @test "fcheckout select"
|
|
echo "fcheckout_select_gitfile"
|
|
elif [[ "$*" =~ "--header=select a commit to rename --no-multi" ]] && [[ "$*" =~ "show --color=always" ]]; then
|
|
# dotbare fedit --commit -- "./fedit.bats" @test "fedit edit commits"
|
|
echo "fedit_commits"
|
|
elif [[ "$*" =~ "--header=select tracked files to edit" ]]; then
|
|
# dotbare fedit -- "./fedit.bats" @test "fedit edit files"
|
|
exit
|
|
elif [[ "$*" =~ '--header=select the target commit for HEAD --no-multi' ]] && [[ "$*" =~ "show --color" ]]; then
|
|
# dotbare freset --commit -y -- "./freset.bats" @test "freset select commit"
|
|
echo "freset_commit"
|
|
elif [[ "$*" =~ "--header=select files to unstage" ]] && [[ "$*" =~ "diff HEAD --color=always" ]]; then
|
|
# dotbare freset -- "./freset.bats" @test "freset select files"
|
|
echo "-- freset_file"
|
|
elif [[ "$*" =~ "--no-multi --header=commit --flog_reset" ]]; then
|
|
# dotbare flog -- "./flog.bats" @test "flog checkout routing"
|
|
echo "exit"
|
|
elif [[ "$*" =~ '--header=select a commit' ]] && [[ "$*" =~ "show --color" ]]; then
|
|
# dotbare flog --reset -y -- "./flog.bats" @test "flog reset"
|
|
echo "--flog_reset"
|
|
elif [[ "$*" =~ "--header=select files to untrack" ]] && [[ "$*" =~ "preview.sh ${DOTBARE_TREE}/{}" ]]; then
|
|
# dotbare funtrack -- "./funtrack.bats" @test "funtrack untrack file"
|
|
echo "funtrack_file"
|
|
elif [[ "$*" =~ '--header=select files to add to a stash' ]] && [[ "$*" =~ "diff HEAD --color=always" ]]; then
|
|
# dotbare fstash -s -- "./fstash.bats" @test "fstash stash select file"
|
|
echo "-- fstash_select"
|
|
elif [[ "$*" =~ '--header=select stash to delete' ]] && [[ "$*" =~ "show -p __ --color=always" ]]; then
|
|
# dotbare fstash --delete -- "./fstash.bats" @test "fstash stash delete"
|
|
echo "fstash_delete"
|
|
elif [[ "$*" =~ '--header=select stash to apply' ]] && [[ "$*" =~ "show -p __ --color=always" ]]; then
|
|
# dotbare fstash -- "./fstash.bats" @test "fstash apply stash"
|
|
echo "fstash_apply"
|
|
else
|
|
echo "$@"
|
|
fi
|