1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
// Copyright (c) 2019-2022, Sylabs Inc. All rights reserved.
// This software is licensed under a 3-clause BSD license. Please consult the
// LICENSE.md file distributed with the sources of this project regarding your
// rights to use or distribute this software.
package instance
import (
"bytes"
"os"
"path/filepath"
"strconv"
"strings"
"syscall"
"testing"
"github.com/google/uuid"
"github.com/pkg/errors"
"github.com/sylabs/singularity/v4/e2e/internal/e2e"
"github.com/sylabs/singularity/v4/e2e/internal/testhelper"
"github.com/sylabs/singularity/v4/pkg/util/fs/proc"
)
// randomName generates a random name based on a UUID.
func randomName(t *testing.T) string {
t.Helper()
id, err := uuid.NewRandom()
if err != nil {
t.Fatal(err)
}
return id.String()
}
type ctx struct {
env e2e.TestEnv
profile e2e.Profile
}
// Test that a basic echo server instance can be started, communicated with,
// and stopped.
func (c *ctx) testBasicEchoServer(t *testing.T) {
const instanceName = "echo1"
args := []string{c.env.ImagePath, instanceName, strconv.Itoa(instanceStartPort)}
// Start the instance.
c.env.RunSingularity(
t,
e2e.WithProfile(c.profile),
e2e.WithCommand("instance start"),
e2e.WithArgs(args...),
e2e.PostRun(func(t *testing.T) {
if t.Failed() {
return
}
// Try to contact the instance.
echo(t, instanceStartPort, false)
c.stopInstance(t, instanceName)
}),
e2e.ExpectExit(0),
)
}
// Test that a basic reverse-echo server defined in an appstart script can be started,
// communicated with, and stopped.
func (c *ctx) testAppEchoServer(t *testing.T) {
const instanceName = "echoApp"
args := []string{
"--app",
"foo",
c.env.ImagePath,
instanceName,
strconv.Itoa(instanceStartPort),
}
// Start the instance.
c.env.RunSingularity(
t,
e2e.WithProfile(c.profile),
e2e.WithCommand("instance start"),
e2e.WithArgs(args...),
e2e.PostRun(func(t *testing.T) {
if t.Failed() {
return
}
// Try to contact the instance.
echo(t, instanceStartPort, true)
c.stopInstance(t, instanceName)
}),
e2e.ExpectExit(0),
)
}
// Test creating many instances, but don't stop them.
func (c *ctx) testCreateManyInstances(t *testing.T) {
const n = 10
// Start n instances.
for i := 0; i < n; i++ {
port := instanceStartPort + i
instanceName := "echo" + strconv.Itoa(i+1)
c.env.RunSingularity(
t,
e2e.WithProfile(c.profile),
e2e.WithCommand("instance start"),
e2e.WithArgs(c.env.ImagePath, instanceName, strconv.Itoa(port)),
e2e.PostRun(func(t *testing.T) {
echo(t, port, false)
}),
e2e.ExpectExit(0),
)
c.expectInstance(t, instanceName, 1)
}
}
// Test stopping all running instances.
func (c *ctx) testStopAll(t *testing.T) {
c.stopInstance(t, "", "--all")
}
// Test basic options like mounting a custom home directory, changing the
// hostname, etc.
func (c *ctx) testBasicOptions(t *testing.T) {
const fileName = "hello"
const instanceName = "testbasic"
const testHostname = "echoserver99"
fileContents := []byte("world")
// Create a temporary directory to serve as a home directory.
dir, err := os.MkdirTemp(c.env.TestDir, "TestInstance")
if err != nil {
t.Fatalf("Failed to create temporary directory: %v", err)
}
defer os.RemoveAll(dir)
// Create and populate a temporary file.
tempFile := filepath.Join(dir, fileName)
err = os.WriteFile(tempFile, fileContents, 0o644)
err = errors.Wrapf(err, "creating temporary test file %s", tempFile)
if err != nil {
t.Fatalf("Failed to create file: %+v", err)
}
// Start an instance with the temporary directory as the home directory.
c.env.RunSingularity(
t,
e2e.WithProfile(c.profile),
e2e.WithCommand("instance start"),
e2e.WithArgs(
"-H", dir+":/home/temp",
"--hostname", testHostname,
"-e",
c.env.ImagePath,
instanceName,
strconv.Itoa(instanceStartPort),
),
e2e.PostRun(func(t *testing.T) {
if t.Failed() {
return
}
// Verify we can see the file's contents from within the container.
stdout, _, success := c.execInstance(t, instanceName, "cat", "/home/temp/"+fileName)
if success && !bytes.Equal(fileContents, []byte(stdout)) {
t.Errorf("File contents were %s, but expected %s", stdout, string(fileContents))
}
// Verify that the hostname has been set correctly.
stdout, _, success = c.execInstance(t, instanceName, "hostname")
if success && !bytes.Equal([]byte(testHostname+"\n"), []byte(stdout)) {
t.Errorf("Hostname is %s, but expected %s", stdout, testHostname)
}
// Verify that the SINGULARITY_INSTANCE has been set correctly.
stdout, _, success = c.execInstance(t, instanceName, "sh", "-c", "echo $SINGULARITY_INSTANCE")
if success && !bytes.Equal([]byte(instanceName+"\n"), []byte(stdout)) {
t.Errorf("SINGULARITY_INSTANCE is %s, but expected %s", stdout, instanceName)
}
// Stop the instance.
c.stopInstance(t, instanceName)
}),
e2e.ExpectExit(0),
)
}
// Test that contain works.
func (c *ctx) testContain(t *testing.T) {
const instanceName = "testcontain"
const fileName = "thegreattestfile"
// Create a temporary directory to serve as a contain directory.
dir, err := os.MkdirTemp("", "TestInstance")
if err != nil {
t.Fatalf("Failed to create temporary directory: %v", err)
}
defer os.RemoveAll(dir)
// Start the instance.
c.env.RunSingularity(
t,
e2e.WithProfile(c.profile),
e2e.WithCommand("instance start"),
e2e.WithArgs(
"-c",
"-W", dir,
c.env.ImagePath,
instanceName,
strconv.Itoa(instanceStartPort),
),
e2e.PostRun(func(t *testing.T) {
if t.Failed() {
return
}
// Touch a file within /tmp.
_, _, success := c.execInstance(t, instanceName, "touch", "/tmp/"+fileName)
if success {
// Verify that the touched file exists outside the container.
if _, err = os.Stat(filepath.Join(dir, "tmp", fileName)); os.IsNotExist(err) {
t.Errorf("The temp file doesn't exist.")
}
}
// Stop the container.
c.stopInstance(t, instanceName)
}),
e2e.ExpectExit(0),
)
}
// Test by running directly from URI
func (c *ctx) testInstanceFromURI(t *testing.T) {
e2e.EnsureORASImage(t, c.env)
name := "test_from_uri"
args := []string{c.env.OrasTestImage, name}
c.env.RunSingularity(
t,
e2e.WithProfile(c.profile),
e2e.WithCommand("instance start"),
e2e.WithArgs(args...),
e2e.PostRun(func(t *testing.T) {
if t.Failed() {
return
}
c.execInstance(t, name, "id")
c.stopInstance(t, name)
}),
e2e.ExpectExit(0),
)
}
// Execute an instance process, kill master process
// and try to start another instance with same name
func (c *ctx) testGhostInstance(t *testing.T) {
// pick up a random name
instanceName := randomName(t)
pidfile := filepath.Join(c.env.TestDir, instanceName)
postFn := func(t *testing.T) {
defer os.Remove(pidfile)
if t.Failed() {
t.Fatalf("instance %s failed to start correctly", instanceName)
}
d, err := os.ReadFile(pidfile)
if err != nil {
t.Fatalf("failed to read pid file: %s", err)
}
trimmed := strings.TrimSuffix(string(d), "\n")
pid, err := strconv.ParseInt(trimmed, 10, 32)
if err != nil {
t.Fatalf("failed to convert PID %s in %s: %s", trimmed, pidfile, err)
}
ppid, err := proc.Getppid(int(pid))
if err != nil {
t.Fatalf("failed to get parent process ID for process %d: %s", pid, err)
}
// starting same instance twice must return an error
c.env.RunSingularity(
t,
e2e.WithProfile(c.profile),
e2e.WithCommand("instance start"),
e2e.WithArgs(c.env.ImagePath, instanceName),
e2e.ExpectExit(
255,
e2e.ExpectErrorf(e2e.ContainMatch, "instance %s already exists", instanceName),
),
)
// kill master process
if err := syscall.Kill(int(ppid), syscall.SIGKILL); err != nil {
t.Fatalf("failed to send KILL signal to %d: %s", ppid, err)
}
// now check we are deleting ghost instance files correctly
c.env.RunSingularity(
t,
e2e.WithProfile(c.profile),
e2e.WithCommand("instance start"),
e2e.WithArgs(c.env.ImagePath, instanceName),
e2e.PostRun(func(t *testing.T) {
if t.Failed() {
return
}
c.stopInstance(t, instanceName)
}),
e2e.ExpectExit(0),
)
}
c.env.RunSingularity(
t,
e2e.WithProfile(c.profile),
e2e.WithCommand("instance start"),
e2e.WithArgs("--pid-file", pidfile, c.env.ImagePath, instanceName),
e2e.PostRun(postFn),
e2e.ExpectExit(0),
)
}
// E2ETests is the main func to trigger the test suite
func E2ETests(env e2e.TestEnv) testhelper.Tests {
c := &ctx{
env: env,
}
return testhelper.Tests{
"ordered": func(t *testing.T) {
c := &ctx{
env: env,
profile: e2e.UserProfile,
}
e2e.EnsureImage(t, c.env)
// Define and loop through tests.
tests := []struct {
name string
function func(*testing.T)
}{
{"BasicEchoServer", c.testBasicEchoServer},
{"AppEchoServer", c.testAppEchoServer},
{"BasicOptions", c.testBasicOptions},
{"Contain", c.testContain},
{"InstanceFromURI", c.testInstanceFromURI},
{"CreateManyInstances", c.testCreateManyInstances},
{"StopAll", c.testStopAll},
{"GhostInstance", c.testGhostInstance},
}
profiles := []e2e.Profile{
e2e.UserProfile,
e2e.RootProfile,
}
for _, profile := range profiles {
profile := profile
t.Run(profile.String(), func(t *testing.T) {
c.profile = profile
for _, tt := range tests {
t.Run(tt.name, tt.function)
}
})
}
},
"issue 5033": c.issue5033, // https://github.com/sylabs/singularity/issues/4836
}
}
|