aboutsummaryrefslogblamecommitdiff
path: root/test/git/install_git_from_src.sh
blob: c3552240d3dda6e0d839814cb1afba60c5f88d8c (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                      



                                                                         







                                                                                          

               
#!/bin/bash

set -e

# Optional: Import test library
source dev-container-features-test-lib

check "version" git  --version
check "gettext" dpkg-query -l gettext

cd /tmp && git clone https://github.com/devcontainers/feature-starter.git
cd feature-starter
check "perl" bash -c "git -c grep.patternType=perl grep -q 'a.+b'"

check "git-location" bash -c "which git | grep /usr/local/bin/git"

check "set-git-config-user-name" bash -c "git config --system user.name devcontainers"
check "gitconfig-file-location" bash -c "ls /etc/gitconfig"
check "gitconfig-contains-name" bash -c "cat /etc/gitconfig | grep 'name = devcontainers'"

check "usr-local-etc-config-does-not-exist" test ! -f "/usr/local/etc/gitconfig"

# Report result
reportResults