Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yanchenm committed Mar 8, 2022
1 parent ff1d763 commit 1b04dbc
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/services/host-service/mandelbox/user_configs.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,11 +316,11 @@ func (mandelbox *mandelboxData) downloadUserConfig(s3Client *s3.Client, key stri
validateIntegrity = false
}

// Allow up to 3 retries on download if failure is because of checksum mismatch
var downloadedFile []byte
var downloadSuccessful bool
var numBytesSuccessfullyDownloaded int64

// Allow up to 3 retries on download if failure is because of checksum mismatch
for i := 0; i < 3; i++ {
// Download file into a pre-allocated in-memory buffer
// This should be okay as we don't expect configs to be very large
Expand Down
54 changes: 54 additions & 0 deletions backend/services/host-service/mandelbox/user_configs_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package mandelbox

import (
"bytes"
"context"
"os"
"os/exec"
"path"
"strings"
"sync"
"testing"

Expand Down Expand Up @@ -154,6 +156,58 @@ func TestUserConfigIntegration(t *testing.T) {
t.Run("new non-repeated token", downloadTestNotNewToken(false, true))
}

// TestUserConfigChecksum tests the checksum verification functonality of
// the upload and download user config code.
func TestUserConfigChecksum(t *testing.T) {
testFile1 := []byte("this is a test file")
testFile1Hash := configutils.GetMD5Hash(testFile1)

// Test upload
s3Client, err := configutils.NewS3Client("us-east-1")
if err != nil {
t.Fatalf("failed to create s3 client: %v", err)
}

_, err = configutils.UploadFileToBucket(s3Client, UserConfigS3Bucket, "user_config_test_user/checksum_test", testFile1)
if err != nil {
t.Fatalf("failed to upload test file: %v", err)
}

// Check that checksum is present and correct
head, err := configutils.GetHeadObject(s3Client, UserConfigS3Bucket, "user_config_test_user/checksum_test")
if err != nil {
t.Fatalf("failed to get head object: %v", err)
}

metadata := head.Metadata
downloadHash, ok := metadata["md5"]
if !ok {
t.Fatalf("md5 metadata not present on head object")
}

if downloadHash != testFile1Hash {
t.Fatalf("md5 metadata on head object does not match file hash")
}

// Test download happy path
mandelbox := mandelboxData{ID: types.MandelboxID(utils.PlaceholderTestUUID())}
data, err := mandelbox.downloadUserConfig(s3Client, "user_config_test_user/checksum_test", head)
if err != nil {
t.Errorf("failed to download file: %v", err)
}

if !bytes.Equal(data, testFile1) {
t.Errorf("downloaded file does not match original file")
}

// Test download with bad checksum
head.Metadata["md5"] = "bad_hash"
_, err = mandelbox.downloadUserConfig(s3Client, "user_config_test_user/checksum_test", head)
if err == nil || !strings.HasPrefix(err.Error(), "Could not download object (due to MD5 mismatch)") {
t.Errorf("download with bad checksum did not fail")
}
}

// cleanupTestDirs removes the created directories created by the integration
// test. This allows the test to be runnable multiple times without
// creation errors.
Expand Down

0 comments on commit 1b04dbc

Please sign in to comment.