1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
package util
import (
"testing"
"time"
)
func TestOnlyOneSet(t *testing.T) {
tests := []struct {
name string
s string
ss []string
expected bool
}{
{
name: "only arg emtpy",
expected: false,
},
{
name: "only arg non-empty",
s: "s",
expected: true,
},
{
name: "first arg non-empty, rest empty",
s: "s",
ss: []string{""},
expected: true,
},
{
name: "at least one other arg non-empty",
s: "s",
ss: []string{"", "s"},
},
{
name: "only one arg non-empty",
ss: []string{"", "s"},
expected: true,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
actual := ExactlyOneSet(tt.s, tt.ss...)
if tt.expected != actual {
t.Errorf("expected %t; got %t", tt.expected, actual)
}
})
}
}
func TestAge(t *testing.T) {
tests := []struct {
name string
t time.Time
now time.Time
expected string
}{
{
name: "exactly now",
t: time.Date(2022, 11, 17, 15, 22, 12, 11, time.UTC),
now: time.Date(2022, 11, 17, 15, 22, 12, 11, time.UTC),
expected: "just now",
},
{
name: "within a few milliseconds",
t: time.Date(2022, 11, 17, 15, 22, 12, 11, time.UTC),
now: time.Date(2022, 11, 17, 15, 22, 12, 21, time.UTC),
expected: "just now",
},
{
name: "10 seconds",
t: time.Date(2022, 11, 17, 15, 22, 12, 21, time.UTC),
now: time.Date(2022, 11, 17, 15, 22, 22, 21, time.UTC),
expected: "10s",
},
{
name: "10 minutes",
t: time.Date(2022, 11, 17, 15, 22, 12, 21, time.UTC),
now: time.Date(2022, 11, 17, 15, 32, 12, 21, time.UTC),
expected: "10m",
},
{
name: "24 hours",
t: time.Date(2022, 11, 17, 15, 22, 12, 21, time.UTC),
now: time.Date(2022, 11, 18, 15, 22, 12, 21, time.UTC),
expected: "1d",
},
{
name: "25 hours",
t: time.Date(2022, 11, 17, 15, 22, 12, 21, time.UTC),
now: time.Date(2022, 11, 18, 16, 22, 12, 21, time.UTC),
expected: "1d",
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
actual := Age(tt.t, tt.now)
if tt.expected != actual {
t.Errorf("expected %s; got %s", tt.expected, actual)
}
})
}
}
|