blob: ec0a441ecf5ffd8b740805982e0048a22ece8fd1 [file] [log] [blame]
#!/bin/bash
# Test the build server daemon.
#
# This test starts a build server daemon and uses the build client to
# verify that <build>.Build() works as expected.
source "${VEYRON_ROOT}/environment/scripts/lib/shell_test.sh"
build() {
local -r GO="${REPO_ROOT}/scripts/build/go"
"${GO}" build veyron/services/mgmt/build/buildd || shell_test::fail "line ${LINENO}: failed to build 'buildd'"
"${GO}" build veyron/tools/build || shell_test::fail "line ${LINENO}: failed to build 'build'"
}
main() {
cd "${TMPDIR}"
build
shell_test::setup_server_test
# Start the binary repository daemon.
local -r SERVER="buildd-test-server"
shell_test::start_server ./buildd --name="${SERVER}" --gobin="${VEYRON_ROOT}/environment/go/bin/go" --address=127.0.0.1:0
# Create and build a test source file.
local -r ROOT=$(shell::tmp_dir)
local -r BIN_DIR="${ROOT}/bin"
mkdir -p "${BIN_DIR}"
local -r SRC_DIR="${ROOT}/src/test"
mkdir -p "${SRC_DIR}"
local -r SRC_FILE="${SRC_DIR}/test.go"
cat > "${SRC_FILE}" <<EOF
package main
import "fmt"
func main() {
fmt.Printf("Hello World!\n")
}
EOF
GOPATH="${ROOT}" TMPDIR="${BIN_DIR}" ./build build "${SERVER}" "test" || shell_test::fail "line ${LINENO}: 'build' failed"
if [[ ! -e "${BIN_DIR}/test" ]]; then
shell_test::fail "test binary not found"
fi
local -r GOT=$("${BIN_DIR}/test")
local -r WANT="Hello World!"
if [[ "${GOT}" != "${WANT}" ]]; then
shell_test::fail "unexpected result: want '${WANT}', got '${GOT}'"
fi
shell_test::pass
}
main "$@"