1
0
forked from sneak/util

1 Commits

Author SHA1 Message Date
64eaceb0ef add Slugify for making URL-safe slugs out of text
Slugify lowercases text and keeps only ASCII letters and digits, turning every
run of other characters into a single hyphen with none left at either end.
Comes with a doc comment and table-driven tests. (closes #9)

Model: opus-5
2026-09-05 03:27:04 +00:00
4 changed files with 70 additions and 63 deletions

View File

@@ -1,23 +0,0 @@
package util
// DedupeStrings returns a new slice holding each value of input once, in the
// order in which each value first appears. The input slice is not modified.
// A nil input returns nil.
func DedupeStrings(input []string) []string {
if input == nil {
return nil
}
seen := make(map[string]struct{}, len(input))
out := make([]string, 0, len(input))
for _, value := range input {
if _, ok := seen[value]; ok {
continue
}
seen[value] = struct{}{}
out = append(out, value)
}
return out
}

View File

@@ -1,40 +0,0 @@
package util
import (
"reflect"
"testing"
)
func TestDedupeStrings(t *testing.T) {
tests := []struct {
name string
input []string
expected []string
}{
{"nil stays nil", nil, nil},
{"empty slice", []string{}, []string{}},
{"nothing repeated", []string{"a", "b", "c"}, []string{"a", "b", "c"}},
{"all one value", []string{"a", "a", "a"}, []string{"a"}},
{"repeats next to each other", []string{"a", "a", "b", "b"}, []string{"a", "b"}},
{"repeats far apart", []string{"a", "b", "a", "c", "b"}, []string{"a", "b", "c"}},
{"empty string is a value", []string{"", "a", ""}, []string{"", "a"}},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
got := DedupeStrings(test.input)
if !reflect.DeepEqual(got, test.expected) {
t.Errorf("expected %#v got %#v", test.expected, got)
}
})
}
}
func TestDedupeStringsLeavesInputAlone(t *testing.T) {
input := []string{"b", "a", "b"}
DedupeStrings(input)
if !reflect.DeepEqual(input, []string{"b", "a", "b"}) {
t.Errorf("expected the input to be unchanged, got %#v", input)
}
}

36
slugify.go Normal file
View File

@@ -0,0 +1,36 @@
package util
import "strings"
// Slugify returns input as lowercase ASCII letters, digits and hyphens, which
// is safe to put in a URL path, a filename or a fragment identifier. Every run
// of other characters becomes a single hyphen, and the result never starts or
// ends with one.
//
// Characters outside ASCII are treated as separators rather than being folded
// to their nearest ASCII relative, because doing that properly needs a Unicode
// table that this package does not carry. Text with no ASCII letters or digits
// in it therefore slugifies to an empty string.
func Slugify(input string) string {
var out strings.Builder
pendingHyphen := false
for _, character := range strings.ToLower(input) {
if (character >= 'a' && character <= 'z') || (character >= '0' && character <= '9') {
if pendingHyphen {
out.WriteByte('-')
pendingHyphen = false
}
out.WriteRune(character)
continue
}
// Remember that a separator was seen, but only write a hyphen once
// another usable character turns up, so nothing trails off the end.
if out.Len() > 0 {
pendingHyphen = true
}
}
return out.String()
}

34
slugify_test.go Normal file
View File

@@ -0,0 +1,34 @@
package util
import "testing"
func TestSlugify(t *testing.T) {
tests := []struct {
name string
input string
expected string
}{
{"already a slug", "hello-world", "hello-world"},
{"mixed case", "Hello World", "hello-world"},
{"punctuation", "What's new?", "what-s-new"},
{"run of separators", "one --- two", "one-two"},
{"leading separators", "///one", "one"},
{"trailing separators", "one///", "one"},
{"separators at both ends", " --one two-- ", "one-two"},
{"digits are kept", "Go 1.14 release", "go-1-14-release"},
{"underscores are separators", "some_name_here", "some-name-here"},
{"nothing usable", "!!! ???", ""},
{"empty string", "", ""},
{"outside ascii", "Grüße, Welt", "gr-e-welt"},
{"only characters outside ascii", "日本語", ""},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
got := Slugify(test.input)
if got != test.expected {
t.Errorf("expected %q got %q", test.expected, got)
}
})
}
}