Coverage improvements: - pkg/build: 89.4% - pkg/release: 86.7% (from 36.7%) - pkg/container: 85.7% - pkg/php: 62.1% (from 26%) - pkg/devops: 56.7% (from 33.1%) - pkg/release/publishers: 54.7% Also: - Add GEMINI.md for Gemini agent guidance - Update .gitignore to exclude coverage files - Remove stray core.go at root - Add core go cov command for coverage reports Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
153 lines
3.1 KiB
Go
153 lines
3.1 KiB
Go
package signing
|
|
|
|
import (
|
|
"context"
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestSignBinaries_Good_SkipsNonDarwin(t *testing.T) {
|
|
ctx := context.Background()
|
|
cfg := SignConfig{
|
|
Enabled: true,
|
|
MacOS: MacOSConfig{
|
|
Identity: "Developer ID Application: Test",
|
|
},
|
|
}
|
|
|
|
// Create fake artifact for linux
|
|
artifacts := []Artifact{
|
|
{Path: "/tmp/test-binary", OS: "linux", Arch: "amd64"},
|
|
}
|
|
|
|
// Should not error even though binary doesn't exist (skips non-darwin)
|
|
err := SignBinaries(ctx, cfg, artifacts)
|
|
if err != nil {
|
|
t.Errorf("unexpected error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestSignBinaries_Good_DisabledConfig(t *testing.T) {
|
|
ctx := context.Background()
|
|
cfg := SignConfig{
|
|
Enabled: false,
|
|
}
|
|
|
|
artifacts := []Artifact{
|
|
{Path: "/tmp/test-binary", OS: "darwin", Arch: "arm64"},
|
|
}
|
|
|
|
err := SignBinaries(ctx, cfg, artifacts)
|
|
if err != nil {
|
|
t.Errorf("unexpected error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestSignBinaries_Good_SkipsOnNonMacOS(t *testing.T) {
|
|
if runtime.GOOS == "darwin" {
|
|
t.Skip("Skipping on macOS - this tests non-macOS behavior")
|
|
}
|
|
|
|
ctx := context.Background()
|
|
cfg := SignConfig{
|
|
Enabled: true,
|
|
MacOS: MacOSConfig{
|
|
Identity: "Developer ID Application: Test",
|
|
},
|
|
}
|
|
|
|
artifacts := []Artifact{
|
|
{Path: "/tmp/test-binary", OS: "darwin", Arch: "arm64"},
|
|
}
|
|
|
|
err := SignBinaries(ctx, cfg, artifacts)
|
|
if err != nil {
|
|
t.Errorf("unexpected error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestNotarizeBinaries_Good_DisabledConfig(t *testing.T) {
|
|
ctx := context.Background()
|
|
cfg := SignConfig{
|
|
Enabled: false,
|
|
}
|
|
|
|
artifacts := []Artifact{
|
|
{Path: "/tmp/test-binary", OS: "darwin", Arch: "arm64"},
|
|
}
|
|
|
|
err := NotarizeBinaries(ctx, cfg, artifacts)
|
|
if err != nil {
|
|
t.Errorf("unexpected error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestNotarizeBinaries_Good_NotarizeDisabled(t *testing.T) {
|
|
ctx := context.Background()
|
|
cfg := SignConfig{
|
|
Enabled: true,
|
|
MacOS: MacOSConfig{
|
|
Notarize: false,
|
|
},
|
|
}
|
|
|
|
artifacts := []Artifact{
|
|
{Path: "/tmp/test-binary", OS: "darwin", Arch: "arm64"},
|
|
}
|
|
|
|
err := NotarizeBinaries(ctx, cfg, artifacts)
|
|
if err != nil {
|
|
t.Errorf("unexpected error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestSignChecksums_Good_SkipsNoKey(t *testing.T) {
|
|
ctx := context.Background()
|
|
cfg := SignConfig{
|
|
Enabled: true,
|
|
GPG: GPGConfig{
|
|
Key: "", // No key configured
|
|
},
|
|
}
|
|
|
|
// Should silently skip when no key
|
|
err := SignChecksums(ctx, cfg, "/tmp/CHECKSUMS.txt")
|
|
if err != nil {
|
|
t.Errorf("unexpected error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestSignChecksums_Good_Disabled(t *testing.T) {
|
|
ctx := context.Background()
|
|
cfg := SignConfig{
|
|
Enabled: false,
|
|
}
|
|
|
|
err := SignChecksums(ctx, cfg, "/tmp/CHECKSUMS.txt")
|
|
if err != nil {
|
|
t.Errorf("unexpected error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestDefaultSignConfig(t *testing.T) {
|
|
cfg := DefaultSignConfig()
|
|
assert.True(t, cfg.Enabled)
|
|
}
|
|
|
|
func TestSignConfig_ExpandEnv(t *testing.T) {
|
|
t.Setenv("TEST_KEY", "ABC")
|
|
cfg := SignConfig{
|
|
GPG: GPGConfig{Key: "$TEST_KEY"},
|
|
}
|
|
cfg.ExpandEnv()
|
|
assert.Equal(t, "ABC", cfg.GPG.Key)
|
|
}
|
|
|
|
func TestWindowsSigner_Good(t *testing.T) {
|
|
s := NewWindowsSigner(WindowsConfig{})
|
|
assert.Equal(t, "signtool", s.Name())
|
|
assert.False(t, s.Available())
|
|
assert.NoError(t, s.Sign(context.Background(), "test.exe"))
|
|
}
|