summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2018-09-08 19:20:36 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2018-09-22 19:15:46 +1000
commiteae078dad3dd55425781806a523ece0c9043a3ad (patch)
tree36da85e4545df93725b50033c5aef91354f29700
parent2098ec457d219785c6d8886a9d2c5539fe38136a (diff)
downloadlibgit2-eae078dad3dd55425781806a523ece0c9043a3ad.tar.gz
ci: refactor unix ci build/test scripts
-rwxr-xr-xci/build.sh37
-rwxr-xr-xci/test.sh112
2 files changed, 149 insertions, 0 deletions
diff --git a/ci/build.sh b/ci/build.sh
new file mode 100755
index 000000000..39d35f1b5
--- /dev/null
+++ b/ci/build.sh
@@ -0,0 +1,37 @@
+#!/usr/bin/env bash
+#
+# Environment variables:
+#
+# SOURCE_DIR: Set to the directory of the libgit2 source (optional)
+# If not set, it will be derived relative to this script.
+
+set -e
+
+SOURCE_DIR=${SOURCE_DIR:-$( cd "$( dirname "${BASH_SOURCE[0]}" )" && dirname $( pwd ) )}
+BUILD_DIR=$(pwd)
+
+indent() { sed "s/^/ /"; }
+
+echo "Source directory: ${SOURCE_DIR}"
+echo "Build directory: ${BUILD_DIR}"
+echo ""
+echo "Operating system version:"
+uname -a 2>&1 | indent
+echo "CMake version:"
+cmake --version 2>&1 | indent
+echo "Compiler version:"
+gcc --version 2>&1 | indent
+echo ""
+
+echo "##############################################################################"
+echo "## Configuring build environment"
+echo "##############################################################################"
+
+cmake ${SOURCE_DIR} -DBUILD_EXAMPLES=ON ${CMAKE_OPTIONS}
+
+echo ""
+echo "##############################################################################"
+echo "## Building libgit2"
+echo "##############################################################################"
+
+cmake --build .
diff --git a/ci/test.sh b/ci/test.sh
new file mode 100755
index 000000000..8f32ffbff
--- /dev/null
+++ b/ci/test.sh
@@ -0,0 +1,112 @@
+#!/bin/sh
+
+set -e
+
+if [ -n "$SKIP_TESTS" ]; then
+ exit $?
+fi
+
+# Configure the test environment; run them early so that we're certain
+# that they're started by the time we need them.
+
+echo "################################################################################"
+echo "## Configuring test environment"
+echo "################################################################################"
+
+echo "Starting HTTP proxy..."
+curl -L https://github.com/ethomson/poxyproxy/releases/download/v0.1.0/poxyproxy-0.1.0.jar >poxyproxy.jar
+java -jar poxyproxy.jar -d --port 8080 --credentials foo:bar >/dev/null 2>&1 &
+
+echo "Starting git daemon..."
+GITDAEMON_DIR=`mktemp -d ${TMPDIR}/gitdaemon.XXXXXXXX`
+git init --bare "${GITDAEMON_DIR}/test.git"
+git daemon --listen=localhost --export-all --enable=receive-pack --base-path="${GITDAEMON_DIR}" "${GITDAEMON_DIR}" 2>/dev/null &
+
+echo "Starting ssh daemon..."
+HOME=`mktemp -d ${TMPDIR}/home.XXXXXXXX`
+SSH_DIR="${HOME}/.ssh"
+SSHD_DIR=`mktemp -d ${TMPDIR}/sshd.XXXXXXXX`
+mkdir ${SSH_DIR}
+cat >"${SSHD_DIR}/sshd_config" <<-EOF
+ Port 2222
+ ListenAddress 0.0.0.0
+ Protocol 2
+ HostKey ${SSHD_DIR}/id_rsa
+ PidFile ${SSHD_DIR}/pid
+ RSAAuthentication yes
+ PasswordAuthentication yes
+ PubkeyAuthentication yes
+ ChallengeResponseAuthentication no
+ # Required here as sshd will simply close connection otherwise
+ UsePAM no
+EOF
+ssh-keygen -t rsa -f "${SSHD_DIR}/id_rsa" -N "" -q
+/usr/sbin/sshd -f "${SSHD_DIR}/sshd_config"
+
+# Set up keys
+ssh-keygen -t rsa -f "${SSH_DIR}/id_rsa" -N "" -q
+cat "${SSH_DIR}/id_rsa.pub" >>"${SSH_DIR}/authorized_keys"
+while read algorithm key comment; do
+ echo "[localhost]:2222 $algorithm $key" >>"${SSH_DIR}/known_hosts"
+done <"${SSHD_DIR}/id_rsa.pub"
+
+# Get the fingerprint for localhost and remove the colons so we can parse it as
+# a hex number. The Mac version is newer so it has a different output format.
+if [ "$TRAVIS_OS_NAME" = "osx" ]; then
+ export GITTEST_REMOTE_SSH_FINGERPRINT=$(ssh-keygen -E md5 -F '[localhost]:2222' -l | tail -n 1 | cut -d ' ' -f 3 | cut -d : -f2- | tr -d :)
+else
+ export GITTEST_REMOTE_SSH_FINGERPRINT=$(ssh-keygen -F '[localhost]:2222' -l | tail -n 1 | cut -d ' ' -f 2 | tr -d ':')
+fi
+
+# Run the tests that do not require network connectivity.
+
+echo ""
+echo "################################################################################"
+echo "## Running default tests ##"
+echo "################################################################################"
+
+export GITTEST_REMOTE_URL="git://localhost/test.git"
+ctest -V -R libgit2_clar
+unset GITTEST_REMOTE_URL
+
+# Run the various online tests. The "online" test suite only includes the
+# default online tests that do not require additional configuration. The
+# "proxy" and "ssh" test suites require further setup.
+
+echo ""
+echo "Running proxy tests"
+echo ""
+
+export GITTEST_REMOTE_PROXY_URL="http://foo:bar@localhost:8080/"
+./libgit2_clar -sonline::clone::proxy_credentials_in_url || exit $?
+
+export GITTEST_REMOTE_PROXY_URL="http://localhost:8080/"
+export GITTEST_REMOTE_PROXY_USER="foo"
+export GITTEST_REMOTE_PROXY_PASS="bar"
+./libgit2_clar -sonline::clone::proxy_credentials_request || exit $?
+
+echo ""
+echo "Running ssh tests"
+echo ""
+
+export GITTEST_REMOTE_URL="ssh://localhost:2222/$SSHD_DIR/test.git"
+export GITTEST_REMOTE_USER=$USER
+export GITTEST_REMOTE_SSH_KEY="$HOME/.ssh/id_rsa"
+export GITTEST_REMOTE_SSH_PUBKEY="$HOME/.ssh/id_rsa.pub"
+export GITTEST_REMOTE_SSH_PASSPHRASE=""
+./libgit2_clar -sonline::push -sonline::clone::ssh_cert || exit $?
+./libgit2_clar -sonline::clone::ssh_with_paths || exit $?
+
+if [ "$TRAVIS_OS_NAME" = "linux" ]; then
+ ./libgit2_clar -sonline::clone::cred_callback || exit $?
+fi
+
+echo ""
+echo "Running credential callback tests"
+echo ""
+
+export GITTEST_REMOTE_URL="https://github.com/libgit2/non-existent"
+export GITTEST_REMOTE_USER="libgit2test"
+ctest -V -R libgit2_clar-cred_callback
+
+kill $(cat "${SSHD_DIR}/pid")