Add pkg/build package replacing goreleaser with native build system: - Project discovery (go.mod, wails.json, package.json, composer.json) - Go cross-compilation with GOOS/GOARCH, CGO_ENABLED=0, ldflags - Config loading from .core/build.yaml with sensible defaults - Archive creation (tar.gz for linux/darwin, zip for windows) - SHA256 checksum generation with CHECKSUMS.txt CLI integration via `core build`: - Auto-detect project type or specify with --type - Cross-compile with --targets (e.g., linux/amd64,darwin/arm64) - CI mode with --ci for JSON output - Archive/checksum flags (--archive, --checksum) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
217 lines
5.9 KiB
Go
217 lines
5.9 KiB
Go
package build
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// setupTestDir creates a temporary directory with the specified marker files.
|
|
func setupTestDir(t *testing.T, markers ...string) string {
|
|
t.Helper()
|
|
dir := t.TempDir()
|
|
for _, m := range markers {
|
|
path := filepath.Join(dir, m)
|
|
err := os.WriteFile(path, []byte("{}"), 0644)
|
|
require.NoError(t, err)
|
|
}
|
|
return dir
|
|
}
|
|
|
|
func TestDiscover_Good(t *testing.T) {
|
|
t.Run("detects Go project", func(t *testing.T) {
|
|
dir := setupTestDir(t, "go.mod")
|
|
types, err := Discover(dir)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []ProjectType{ProjectTypeGo}, types)
|
|
})
|
|
|
|
t.Run("detects Wails project with priority over Go", func(t *testing.T) {
|
|
dir := setupTestDir(t, "wails.json", "go.mod")
|
|
types, err := Discover(dir)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []ProjectType{ProjectTypeWails, ProjectTypeGo}, types)
|
|
})
|
|
|
|
t.Run("detects Node.js project", func(t *testing.T) {
|
|
dir := setupTestDir(t, "package.json")
|
|
types, err := Discover(dir)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []ProjectType{ProjectTypeNode}, types)
|
|
})
|
|
|
|
t.Run("detects PHP project", func(t *testing.T) {
|
|
dir := setupTestDir(t, "composer.json")
|
|
types, err := Discover(dir)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []ProjectType{ProjectTypePHP}, types)
|
|
})
|
|
|
|
t.Run("detects multiple project types", func(t *testing.T) {
|
|
dir := setupTestDir(t, "go.mod", "package.json")
|
|
types, err := Discover(dir)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []ProjectType{ProjectTypeGo, ProjectTypeNode}, types)
|
|
})
|
|
|
|
t.Run("empty directory returns empty slice", func(t *testing.T) {
|
|
dir := t.TempDir()
|
|
types, err := Discover(dir)
|
|
assert.NoError(t, err)
|
|
assert.Empty(t, types)
|
|
})
|
|
}
|
|
|
|
func TestDiscover_Bad(t *testing.T) {
|
|
t.Run("non-existent directory returns empty slice", func(t *testing.T) {
|
|
types, err := Discover("/non/existent/path")
|
|
assert.NoError(t, err) // os.Stat fails silently in fileExists
|
|
assert.Empty(t, types)
|
|
})
|
|
|
|
t.Run("directory marker is ignored", func(t *testing.T) {
|
|
dir := t.TempDir()
|
|
// Create go.mod as a directory instead of a file
|
|
err := os.Mkdir(filepath.Join(dir, "go.mod"), 0755)
|
|
require.NoError(t, err)
|
|
|
|
types, err := Discover(dir)
|
|
assert.NoError(t, err)
|
|
assert.Empty(t, types)
|
|
})
|
|
}
|
|
|
|
func TestPrimaryType_Good(t *testing.T) {
|
|
t.Run("returns wails for wails project", func(t *testing.T) {
|
|
dir := setupTestDir(t, "wails.json", "go.mod")
|
|
primary, err := PrimaryType(dir)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, ProjectTypeWails, primary)
|
|
})
|
|
|
|
t.Run("returns go for go-only project", func(t *testing.T) {
|
|
dir := setupTestDir(t, "go.mod")
|
|
primary, err := PrimaryType(dir)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, ProjectTypeGo, primary)
|
|
})
|
|
|
|
t.Run("returns empty string for empty directory", func(t *testing.T) {
|
|
dir := t.TempDir()
|
|
primary, err := PrimaryType(dir)
|
|
assert.NoError(t, err)
|
|
assert.Empty(t, primary)
|
|
})
|
|
}
|
|
|
|
func TestIsGoProject_Good(t *testing.T) {
|
|
t.Run("true with go.mod", func(t *testing.T) {
|
|
dir := setupTestDir(t, "go.mod")
|
|
assert.True(t, IsGoProject(dir))
|
|
})
|
|
|
|
t.Run("true with wails.json", func(t *testing.T) {
|
|
dir := setupTestDir(t, "wails.json")
|
|
assert.True(t, IsGoProject(dir))
|
|
})
|
|
|
|
t.Run("false without markers", func(t *testing.T) {
|
|
dir := t.TempDir()
|
|
assert.False(t, IsGoProject(dir))
|
|
})
|
|
}
|
|
|
|
func TestIsWailsProject_Good(t *testing.T) {
|
|
t.Run("true with wails.json", func(t *testing.T) {
|
|
dir := setupTestDir(t, "wails.json")
|
|
assert.True(t, IsWailsProject(dir))
|
|
})
|
|
|
|
t.Run("false with only go.mod", func(t *testing.T) {
|
|
dir := setupTestDir(t, "go.mod")
|
|
assert.False(t, IsWailsProject(dir))
|
|
})
|
|
}
|
|
|
|
func TestIsNodeProject_Good(t *testing.T) {
|
|
t.Run("true with package.json", func(t *testing.T) {
|
|
dir := setupTestDir(t, "package.json")
|
|
assert.True(t, IsNodeProject(dir))
|
|
})
|
|
|
|
t.Run("false without package.json", func(t *testing.T) {
|
|
dir := t.TempDir()
|
|
assert.False(t, IsNodeProject(dir))
|
|
})
|
|
}
|
|
|
|
func TestIsPHPProject_Good(t *testing.T) {
|
|
t.Run("true with composer.json", func(t *testing.T) {
|
|
dir := setupTestDir(t, "composer.json")
|
|
assert.True(t, IsPHPProject(dir))
|
|
})
|
|
|
|
t.Run("false without composer.json", func(t *testing.T) {
|
|
dir := t.TempDir()
|
|
assert.False(t, IsPHPProject(dir))
|
|
})
|
|
}
|
|
|
|
func TestTarget_Good(t *testing.T) {
|
|
target := Target{OS: "linux", Arch: "amd64"}
|
|
assert.Equal(t, "linux/amd64", target.String())
|
|
}
|
|
|
|
func TestFileExists_Good(t *testing.T) {
|
|
t.Run("returns true for existing file", func(t *testing.T) {
|
|
dir := t.TempDir()
|
|
path := filepath.Join(dir, "test.txt")
|
|
err := os.WriteFile(path, []byte("content"), 0644)
|
|
require.NoError(t, err)
|
|
assert.True(t, fileExists(path))
|
|
})
|
|
|
|
t.Run("returns false for directory", func(t *testing.T) {
|
|
dir := t.TempDir()
|
|
assert.False(t, fileExists(dir))
|
|
})
|
|
|
|
t.Run("returns false for non-existent path", func(t *testing.T) {
|
|
assert.False(t, fileExists("/non/existent/file"))
|
|
})
|
|
}
|
|
|
|
// TestDiscover_Testdata tests discovery using the testdata fixtures.
|
|
// These serve as integration tests with realistic project structures.
|
|
func TestDiscover_Testdata(t *testing.T) {
|
|
testdataDir := "testdata"
|
|
|
|
tests := []struct {
|
|
name string
|
|
dir string
|
|
expected []ProjectType
|
|
}{
|
|
{"go-project", "go-project", []ProjectType{ProjectTypeGo}},
|
|
{"wails-project", "wails-project", []ProjectType{ProjectTypeWails, ProjectTypeGo}},
|
|
{"node-project", "node-project", []ProjectType{ProjectTypeNode}},
|
|
{"php-project", "php-project", []ProjectType{ProjectTypePHP}},
|
|
{"multi-project", "multi-project", []ProjectType{ProjectTypeGo, ProjectTypeNode}},
|
|
{"empty-project", "empty-project", []ProjectType{}},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
dir := filepath.Join(testdataDir, tt.dir)
|
|
types, err := Discover(dir)
|
|
assert.NoError(t, err)
|
|
if len(tt.expected) == 0 {
|
|
assert.Empty(t, types)
|
|
} else {
|
|
assert.Equal(t, tt.expected, types)
|
|
}
|
|
})
|
|
}
|
|
}
|