Files
tailscale/gokrazy/build/build_test.go
T
Kristoffer Dalby a7f3e08335 gokrazy/build: use AWS SDK instead of shelling out to aws CLI
Replace the four aws CLI shell-outs (s3 cp, ec2 import-snapshot,
describe-import-snapshot-tasks, register-image) with aws-sdk-go-v2 S3
and EC2 clients. Credentials come from the SDK default chain, so
existing aws sso login / aws configure / AWS_PROFILE / env / aws-vault
sessions keep working.

Verify auth via sts:GetCallerIdentity before the slow image build so a
logged-out user fails in seconds, not minutes. Upload via the S3
manager (concurrent multipart) with a native progress reader, log
[n/4] step lines, and bail on terminal import-snapshot failure states
instead of polling forever.

Updates #1866

Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
2026-07-15 15:15:17 +02:00

157 lines
4.3 KiB
Go

// Copyright (c) Tailscale Inc & contributors
// SPDX-License-Identifier: BSD-3-Clause
package build
import (
"context"
"io"
"os"
"path/filepath"
"testing"
)
func TestResolveRegion(t *testing.T) {
tests := []struct {
name, flag, env, want string
}{
{"default", "", "", "us-east-1"},
{"env", "", "eu-west-1", "eu-west-1"},
{"flag", "ap-south-1", "", "ap-south-1"},
{"flag-beats-env", "ap-south-1", "eu-west-1", "ap-south-1"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ResolveRegion(tt.flag, tt.env); got != tt.want {
t.Errorf("ResolveRegion(%q, %q) = %q; want %q", tt.flag, tt.env, got, tt.want)
}
})
}
}
func TestBuildCapturesError(t *testing.T) {
// An app dir with a config.json but no real appliance: the monogok
// build fails, and the build method must record the error in the
// Result for --json consumers.
dir := t.TempDir()
if err := os.MkdirAll(filepath.Join(dir, "badapp"), 0700); err != nil {
t.Fatal(err)
}
if err := os.WriteFile(filepath.Join(dir, "badapp", "config.json"),
[]byte(`{"Environment":["GOARCH=amd64"]}`), 0600); err != nil {
t.Fatal(err)
}
b, err := New(Config{App: "badapp", Dir: dir, Stderr: io.Discard})
if err != nil {
t.Fatalf("New: %v", err)
}
if _, err := b.BuildGAF(context.Background()); err == nil {
t.Fatal("BuildGAF succeeded; want failure")
}
if b.Result().Error == "" {
t.Error("Result.Error is empty; want the failure reason")
}
}
func TestImportProgressLine(t *testing.T) {
tests := []struct {
name, status, statusMessage, progress, want string
}{
{"early-empty", "", "", "", "importing snapshot: pending"},
{"status-only", "active", "", "", "importing snapshot: active"},
{"message-no-progress", "active", "pending", "", "importing snapshot: pending"},
{"full", "active", "validated", "32", "importing snapshot: 32% (validated)"},
{"message-beats-status", "active", "converting", "80", "importing snapshot: 80% (converting)"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := importProgressLine(tt.status, tt.statusMessage, tt.progress); got != tt.want {
t.Errorf("importProgressLine(%q, %q, %q) = %q; want %q",
tt.status, tt.statusMessage, tt.progress, got, tt.want)
}
})
}
}
func TestAMINameFrom(t *testing.T) {
const now = 1720000000
tests := []struct {
name, exactTag, describe, want string
}{
{"tagged-release", "v1.2.3", "v1.2.3", "tsapp-v1.2.3"},
{"adhoc-describe", "", "v1.2.3-4-gabc1234", "tsapp-v1.2.3-4-gabc1234-1720000000"},
{"adhoc-dirty", "", "v1.2.3-dirty", "tsapp-v1.2.3-dirty-1720000000"},
{"no-git", "", "", "tsapp-1720000000"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := amiNameFrom("tsapp", tt.exactTag, tt.describe, now); got != tt.want {
t.Errorf("amiNameFrom = %q; want %q", got, tt.want)
}
})
}
}
func TestImportFailed(t *testing.T) {
tests := []struct {
status string
want bool
}{
{"active", false},
{"completed", false},
{"", false},
{"deleting", true},
{"deleted", true},
{"error", true},
{"some-error-state", true},
}
for _, tt := range tests {
t.Run(tt.status, func(t *testing.T) {
if got := importFailed(tt.status); got != tt.want {
t.Errorf("importFailed(%q) = %v; want %v", tt.status, got, tt.want)
}
})
}
}
func TestProgressLine(t *testing.T) {
tests := []struct {
name string
verb string
cur, total int64
rate float64
want string
}{
{"known-with-rate", "uploading", 512 << 20, 1 << 30, 64 << 20, "uploading: 50.0% (512.00MiB / 1.00GiB) 64.00MiB/s"},
{"known-no-rate", "uploading", 1 << 20, 4 << 20, 0, "uploading: 25.0% (1.00MiB / 4.00MiB)"},
{"unknown-total", "uploading", 3 << 20, -1, 1 << 20, "uploading: 3.00MiB 1.00MiB/s"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := progressLine(tt.verb, tt.cur, tt.total, tt.rate); got != tt.want {
t.Errorf("progressLine = %q; want %q", got, tt.want)
}
})
}
}
func TestHumanBytes(t *testing.T) {
tests := []struct {
n float64
want string
}{
{512, "512B"},
{1 << 10, "1.00KiB"},
{1 << 20, "1.00MiB"},
{1536 << 20, "1.50GiB"},
}
for _, tt := range tests {
t.Run(tt.want, func(t *testing.T) {
if got := humanBytes(tt.n); got != tt.want {
t.Errorf("humanBytes(%v) = %q; want %q", tt.n, got, tt.want)
}
})
}
}