-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(git-alias): add its unit test (#1077)
- Loading branch information
Showing
6 changed files
with
159 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,45 @@ | ||
#!/usr/bin/env bash | ||
|
||
options="" | ||
|
||
usage() { | ||
cat <<HERE | ||
usage: git alias # list all aliases | ||
or: git alias <search-pattern> # show aliases matching pattern | ||
or: git alias <alias-name> <command> # alias a command | ||
usage: git alias [options] # list all aliases | ||
or: git alias [options] <search-pattern> # show aliases matching pattern | ||
or: git alias [options] <alias-name> <command> # alias a command | ||
options: | ||
--global Show or create alias in the system config | ||
--local Show or create alias in the repository config | ||
HERE | ||
} | ||
|
||
if [[ "$1" == "--local" || "$1" == "--global" ]]; then | ||
options=$1 | ||
shift | ||
fi | ||
|
||
case $# in | ||
0) git config --get-regexp 'alias.*' | sed 's/^alias\.//' | sed 's/[ ]/ = /' | sort ;; | ||
1) git alias | grep -e "$1" ;; | ||
2) git config --global alias."$1" "$2" ;; | ||
0) | ||
if [[ -z "$options" ]]; then | ||
git config --get-regexp 'alias.*' | sed 's/^alias\.//' | sed 's/[ ]/ = /' | sort | ||
else | ||
git config "$options" --get-regexp 'alias.*' | sed 's/^alias\.//' | sed 's/[ ]/ = /' | sort | ||
fi | ||
;; | ||
1) | ||
if [[ -z "$options" ]]; then | ||
git config --get-regexp 'alias.*' | sed 's/^alias\.//' | sed 's/[ ]/ = /' | sort | grep -e "$1" | ||
else | ||
git config "$options" --get-regexp 'alias.*' | sed 's/^alias\.//' | sed 's/[ ]/ = /' | sort | grep -e "$1" | ||
fi | ||
;; | ||
2) | ||
if [[ -z "$options" ]]; then | ||
git config alias."$1" "$2" | ||
else | ||
git config "$options" alias."$1" "$2" | ||
fi | ||
;; | ||
*) >&2 echo "error: too many arguments." && usage && exit 1 ;; | ||
esac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
class TestGitAlias: | ||
def test_init(self, temp_repo): | ||
git = temp_repo.get_repo_git() | ||
git.config("--global", "alias.globalalias", "status") | ||
git.config("--global", "alias.x", "status") | ||
git.config("--local", "alias.localalias", "status") | ||
git.config("--local", "alias.y", "status") | ||
|
||
def test_list_all(self, temp_repo): | ||
actual = temp_repo.invoke_extras_command("alias") | ||
actual = actual.stdout.decode() | ||
assert "globalalias = status" in actual | ||
assert "x = status" in actual | ||
assert "localalias = status" in actual | ||
assert "y = status" in actual | ||
|
||
def test_list_all_globally(self, temp_repo): | ||
actual = temp_repo.invoke_extras_command("alias", "--global") | ||
actual = actual.stdout.decode() | ||
assert "globalalias = status" in actual | ||
|
||
def test_list_all_locally(self, temp_repo): | ||
actual = temp_repo.invoke_extras_command("alias", "--local") | ||
actual = actual.stdout.decode() | ||
assert "localalias = status" in actual | ||
|
||
def test_search_globally(self, temp_repo): | ||
actual = temp_repo.invoke_extras_command("alias", "--global", "global") | ||
actual = actual.stdout.decode() | ||
assert "globalalias = status" in actual | ||
actual = temp_repo.invoke_extras_command("alias", "--global", "local") | ||
actual = actual.stdout.decode() | ||
assert "" == actual | ||
|
||
def test_search_locally(self, temp_repo): | ||
actual = temp_repo.invoke_extras_command("alias", "--local", "local") | ||
actual = actual.stdout.decode() | ||
assert "localalias = status" in actual | ||
actual = temp_repo.invoke_extras_command("alias", "--local", "global") | ||
actual = actual.stdout.decode() | ||
assert "" == actual | ||
|
||
def test_get_alias_globally_and_defaultly(self, temp_repo): | ||
actual = temp_repo.invoke_extras_command("alias", "globalalias") | ||
actual = actual.stdout.decode() | ||
assert "globalalias = status" in actual | ||
|
||
def test_set_alias_globally_and_defaultly(self, temp_repo): | ||
temp_repo.invoke_extras_command("alias", "globalalias", "diff") | ||
actual = temp_repo.invoke_extras_command("alias") | ||
actual = actual.stdout.decode() | ||
assert "globalalias = diff" in actual | ||
|
||
def test_get_alias_locally(self, temp_repo): | ||
actual = temp_repo.invoke_extras_command("alias", "--local", "localalias") | ||
actual = actual.stdout.decode() | ||
assert "localalias = status" in actual | ||
|
||
def test_set_alias_locally(self, temp_repo): | ||
temp_repo.invoke_extras_command("alias", "--local", "localalias", "diff") | ||
actual = temp_repo.invoke_extras_command("alias") | ||
actual = actual.stdout.decode() | ||
assert "localalias = diff" in actual | ||
|
||
def test_teardown(self, temp_repo): | ||
git = temp_repo.get_repo_git() | ||
git.config("--global", "--unset", "alias.globalalias") | ||
git.config("--global", "--unset", "alias.x") | ||
git.config("--local", "--unset", "alias.localalias") | ||
git.config("--local", "--unset", "alias.y") |