aboutsummaryrefslogtreecommitdiffstats
path: root/extras/vcl-ldpreload/test/curl_test.sh
blob: c0d88d7af4a215b5ab13005ae696428487e448d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /bin/bash
#
# curl_test.sh - VCL-LDPRELOAD curl test.
#
#   Run curl using LD_PRELOAD to fetch a page from
#   nginx running in vpp1 net-namespace.
#
# 

# Verify Environment.
if [ -z "$WS_ROOT" ] ; then
    echo "ERROR: WS_ROOT environment variable not set!" >&2
    echo "       Please set WS_ROOT to VPP workspace root directory." >&2
    exit 1
fi
if [ -z "$LDP_DIR" ] ; then
    echo "WARNING: LDP_DIR environment variable is not set!"
    echo "         Sourcing $WS_ROOT/extras/vcl-ldpreload/env.sh"
    source $WS_ROOT/extras/vcl-ldpreload/env.sh
fi

TEST_APP="${TEST_APP:-curl}"
LDP_TEST_DIR="${LDP_TEST_DIR:-${LDP_DIR}/test}"
source $LDP_TEST_DIR/common/nginx_test.sh