forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 Make integration tests compatible w/ modern Git (ansible#80122)
* 🐛 Make integration tests compatible w/ modern Git This patch makes use of the `init.defaultBranch` setting to unify the test across new and old Git versions since one defaults to `master` and the other uses `main` for the default branch. Where possible, it uses the `HEAD` committish to avoid having to normalize the branch name. The change fixes the following integration tests: * `ansible-galaxy` * `ansible-galaxy-collection-scm` (recursive collection) * `git` * 🐛Replace `git-symbolic-ref` with a repo template This custom Git repository template emulates the `init.defaultBranch` setting on Git versions below 2.28. Ref: https://superuser.com/a/1559582. Other workarounds mentioned there, like invoking `git symbolic-ref HEAD refs/heads/main` after each `git init` turned out to have mysterious side effects that break the tests in surprising ways. * 🎨 Make Git integration test non-destructive This patch makes use of the `$HOME` environment variable to trick Git into using a user-global config generated in the temporary directory.
- Loading branch information
Showing
15 changed files
with
176 additions
and
48 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
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
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
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
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 |
---|---|---|
|
@@ -28,10 +28,44 @@ | |
register: gpg_version | ||
|
||
- name: SETUP | set git global user.email if not already set | ||
shell: git config --global user.email || git config --global user.email "[email protected]" | ||
shell: git config --global user.email '[email protected]' | ||
|
||
- name: SETUP | set git global user.name if not already set | ||
shell: git config --global user.name || git config --global user.name "Ansible Test Runner" | ||
shell: git config --global user.name 'Ansible Test Runner' | ||
|
||
- name: SETUP | set git global init.defaultBranch | ||
shell: >- | ||
git config --global init.defaultBranch '{{ git_default_branch }}' | ||
- name: SETUP | set git global init.templateDir | ||
# NOTE: This custom Git repository template emulates the `init.defaultBranch` | ||
# NOTE: setting on Git versions below 2.28. | ||
# NOTE: Ref: https://superuser.com/a/1559582. | ||
# NOTE: Other workarounds mentioned there, like invoking | ||
# NOTE: `git symbolic-ref HEAD refs/heads/main` after each `git init` turned | ||
# NOTE: out to have mysterious side effects that break the tests in surprising | ||
# NOTE: ways. | ||
shell: | | ||
set -eEu | ||
git config --global \ | ||
init.templateDir '{{ remote_tmp_dir }}/git-templates/git.git' | ||
mkdir -pv '{{ remote_tmp_dir }}/git-templates' | ||
set +e | ||
GIT_TEMPLATES_DIR=$(\ | ||
2>/dev/null \ | ||
ls -1d \ | ||
'/Library/Developer/CommandLineTools/usr/share/git-core/templates' \ | ||
'/usr/local/share/git-core/templates' \ | ||
'/usr/share/git-core/templates' \ | ||
) | ||
set -e | ||
>&2 echo "Found Git's default templates directory: ${GIT_TEMPLATES_DIR}" | ||
cp -r "${GIT_TEMPLATES_DIR}" '{{ remote_tmp_dir }}/git-templates/git.git' | ||
echo 'ref: refs/heads/{{ git_default_branch }}' \ | ||
> '{{ remote_tmp_dir }}/git-templates/git.git/HEAD' | ||
- name: SETUP | create repo_dir | ||
file: | ||
|
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
Oops, something went wrong.