Add test that runsc exec inherits the same environment as run.

PiperOrigin-RevId: 270764996
This commit is contained in:
Nicolas Lacasse
2019-09-23 14:47:30 -07:00
committed by gVisor bot
parent 03ee55cc62
commit 112736c579
+25 -2
View File
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
// Package image provides end-to-end integration tests for runsc. These tests
// require docker and runsc to be installed on the machine.
// Package integration provides end-to-end integration tests for runsc. These
// tests require docker and runsc to be installed on the machine.
//
// Each test calls docker commands to start up a container, and tests that it
// is behaving properly, with various runsc commands. The container is killed
@@ -154,3 +154,26 @@ func TestExecError(t *testing.T) {
t.Fatalf("docker exec wrong error, got: %s, want: .*%s.*", err.Error(), want)
}
}
// Test that exec inherits environment from run.
func TestExecEnv(t *testing.T) {
if err := dockerutil.Pull("alpine"); err != nil {
t.Fatalf("docker pull failed: %v", err)
}
d := dockerutil.MakeDocker("exec-env-test")
// Start the container with env FOO=BAR.
if err := d.Run("-e", "FOO=BAR", "alpine", "sleep", "1000"); err != nil {
t.Fatalf("docker run failed: %v", err)
}
defer d.CleanUp()
// Exec "echo $FOO".
got, err := d.Exec("/bin/sh", "-c", "echo $FOO")
if err != nil {
t.Fatalf("docker exec failed: %v", err)
}
if want := "BAR"; !strings.Contains(got, want) {
t.Errorf("wanted exec output to contain %q, got %q", want, got)
}
}