blob: e3c02f83aa91dc877f50a56f0925f9a9fa9397bd [file] [log] [blame]
ruperts29681322017-12-12 14:32:28 -08001#!/bin/bash
2#
3# Copyright 2017 The Bazel Authors. All rights reserved.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# Integration tests for the network-dependent aspects of the sandboxing
18# spawn strategy. In particular, those tests that specify -N should be in
19# this file, but general tests can be kept in the more general
20# linux-sandbox_test.sh.
21#
22
23set -euo pipefail
24
25# Load the test setup defined in the parent directory
26CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
27source "${CURRENT_DIR}/../integration_test_setup.sh" \
28 || { echo "integration_test_setup.sh not found!" >&2; exit 1; }
29source "${CURRENT_DIR}/../sandboxing_test_utils.sh" \
30 || { echo "sandboxing_test_utils.sh not found!" >&2; exit 1; }
31
32enable_errexit
33
34readonly OUT_DIR="${TEST_TMPDIR}/out"
35readonly SANDBOX_DIR="${OUT_DIR}/sandbox"
36
37SANDBOX_DEFAULT_OPTS="-W $SANDBOX_DIR"
38
39function set_up {
40 rm -rf $OUT_DIR
41 mkdir -p $SANDBOX_DIR
42}
43
44function test_network_namespace() {
philwo132a2c62019-06-24 04:58:44 -070045 $linux_sandbox $SANDBOX_DEFAULT_OPTS -N -- ip link ls &> $TEST_log || fail
ruperts29681322017-12-12 14:32:28 -080046 expect_log "LOOPBACK,UP"
47}
48
49function test_ping_loopback() {
50 $linux_sandbox $SANDBOX_DEFAULT_OPTS -N -R -- \
51 /bin/sh -c 'ping6 -c 1 ::1 || ping -c 1 127.0.0.1' &>$TEST_log || fail
52 expect_log "1 received"
53}
54
55# The test shouldn't fail if the environment doesn't support running it.
jmmvd411e8f2019-11-04 14:57:43 -080056[[ "$(uname -s)" = Linux ]] || exit 0
ruperts29681322017-12-12 14:32:28 -080057check_sandbox_allowed || exit 0
58
59run_suite "linux-sandbox-network"