|
|
|
|
@ -272,3 +272,143 @@ func TestGenerateOCICreatedAnnotations(t *testing.T) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestEscapeNonASCII(t *testing.T) {
|
|
|
|
|
tests := []struct {
|
|
|
|
|
name string
|
|
|
|
|
input string
|
|
|
|
|
expected string
|
|
|
|
|
}{
|
|
|
|
|
{
|
|
|
|
|
name: "ASCII only - no change",
|
|
|
|
|
input: "John Smith",
|
|
|
|
|
expected: "John Smith",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "German umlaut",
|
|
|
|
|
input: "Jan-Otto Kröpke",
|
|
|
|
|
expected: "Jan-Otto Kr\\u00f6pke",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Multiple umlauts",
|
|
|
|
|
input: "Müller Schröder",
|
|
|
|
|
expected: "M\\u00fcller Schr\\u00f6der",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "French accents",
|
|
|
|
|
input: "François Müller",
|
|
|
|
|
expected: "Fran\\u00e7ois M\\u00fcller",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Spanish tilde",
|
|
|
|
|
input: "José Muñoz",
|
|
|
|
|
expected: "Jos\\u00e9 Mu\\u00f1oz",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Empty string",
|
|
|
|
|
input: "",
|
|
|
|
|
expected: "",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Numbers and punctuation",
|
|
|
|
|
input: "v1.2.3-beta+build.123",
|
|
|
|
|
expected: "v1.2.3-beta+build.123",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Email with umlaut in name",
|
|
|
|
|
input: "kröpke@example.com",
|
|
|
|
|
expected: "kr\\u00f6pke@example.com",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Nordic characters",
|
|
|
|
|
input: "Øystein Ålander",
|
|
|
|
|
expected: "\\u00d8ystein \\u00c5lander",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Mixed ASCII and non-ASCII",
|
|
|
|
|
input: "Abc Déf Ghï",
|
|
|
|
|
expected: "Abc D\\u00e9f Gh\\u00ef",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Chinese characters",
|
|
|
|
|
input: "张伟",
|
|
|
|
|
expected: "\\u5f20\\u4f1f",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, tt := range tests {
|
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
|
result := escapeNonASCII(tt.input)
|
|
|
|
|
if result != tt.expected {
|
|
|
|
|
t.Errorf("escapeNonASCII(%q) = %q, want %q", tt.input, result, tt.expected)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestGenerateChartOCIAnnotations_WithNonASCII(t *testing.T) {
|
|
|
|
|
meta := &chart.Metadata{
|
|
|
|
|
Name: "test-chart",
|
|
|
|
|
Description: "A Helm chart for Kröpke",
|
|
|
|
|
Version: "1.0.0",
|
|
|
|
|
Home: "https://example.com",
|
|
|
|
|
Sources: []string{"https://github.com/example/test"},
|
|
|
|
|
Maintainers: []*chart.Maintainer{
|
|
|
|
|
{
|
|
|
|
|
Name: "Jan-Otto Kröpke",
|
|
|
|
|
Email: "github@jkroepke.de",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
Name: "François Müller",
|
|
|
|
|
Email: "francois@example.com",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
annotations := generateChartOCIAnnotations(meta, "2025-01-01T00:00:00Z")
|
|
|
|
|
|
|
|
|
|
// Check description is escaped
|
|
|
|
|
expectedDesc := "A Helm chart for Kr\\u00f6pke"
|
|
|
|
|
if annotations["org.opencontainers.image.description"] != expectedDesc {
|
|
|
|
|
t.Errorf("Description = %q, want %q",
|
|
|
|
|
annotations["org.opencontainers.image.description"], expectedDesc)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check authors are escaped
|
|
|
|
|
expectedAuthors := "Jan-Otto Kr\\u00f6pke (github@jkroepke.de), Fran\\u00e7ois M\\u00fcller (francois@example.com)"
|
|
|
|
|
if annotations["org.opencontainers.image.authors"] != expectedAuthors {
|
|
|
|
|
t.Errorf("Authors = %q, want %q",
|
|
|
|
|
annotations["org.opencontainers.image.authors"], expectedAuthors)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check title (ASCII only, should be unchanged)
|
|
|
|
|
if annotations["org.opencontainers.image.title"] != "test-chart" {
|
|
|
|
|
t.Errorf("Title = %q, want %q",
|
|
|
|
|
annotations["org.opencontainers.image.title"], "test-chart")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestGenerateChartOCIAnnotations_ASCIIOnly(t *testing.T) {
|
|
|
|
|
meta := &chart.Metadata{
|
|
|
|
|
Name: "test-chart",
|
|
|
|
|
Description: "A simple Helm chart",
|
|
|
|
|
Version: "1.0.0",
|
|
|
|
|
Maintainers: []*chart.Maintainer{
|
|
|
|
|
{
|
|
|
|
|
Name: "John Smith",
|
|
|
|
|
Email: "john@example.com",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
annotations := generateChartOCIAnnotations(meta, "2025-01-01T00:00:00Z")
|
|
|
|
|
|
|
|
|
|
// ASCII-only values should be unchanged
|
|
|
|
|
if annotations["org.opencontainers.image.description"] != "A simple Helm chart" {
|
|
|
|
|
t.Errorf("Description should be unchanged for ASCII-only input")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if annotations["org.opencontainers.image.authors"] != "John Smith (john@example.com)" {
|
|
|
|
|
t.Errorf("Authors should be unchanged for ASCII-only input")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|