diff options
author | 2023-11-08 18:46:15 +1300 | |
---|---|---|
committer | 2023-11-08 14:19:30 +0100 | |
commit | 2bc5ad53c2f0f2ff3372b2aeedf5955d40969af0 (patch) | |
tree | 0b73bc3d647799cc1a1648d83fd3d95be5bee999 /internal/template/functions_test.go | |
parent | bc317cfcd1b17bad5273cf01f44853dc9eb9b262 (diff) | |
download | v2-2bc5ad53c2f0f2ff3372b2aeedf5955d40969af0.tar.gz v2-2bc5ad53c2f0f2ff3372b2aeedf5955d40969af0.tar.zst v2-2bc5ad53c2f0f2ff3372b2aeedf5955d40969af0.zip |
Avoid long duration strings: round to nearest second
For example, seeing "Next check: 14m56.245483933s" in feeds list after force-refreshing a feed.
This rounds to the nearest second, so it'll instead be "14m56s"
Other examples from latter two test cases:
- "12.345678s" -> "12s"
- "1m27.654321s" -> "1m28s"
Diffstat (limited to '')
-rw-r--r-- | internal/template/functions_test.go | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/internal/template/functions_test.go b/internal/template/functions_test.go index 193ec128..35dbf6de 100644 --- a/internal/template/functions_test.go +++ b/internal/template/functions_test.go @@ -95,6 +95,32 @@ func TestIsEmail(t *testing.T) { } } +func TestDuration(t *testing.T) { + now := time.Now() + var dt = []struct { + in time.Time + out string + }{ + {time.Time{}, ""}, + {now.Add(time.Hour), "1h0m0s"}, + {now.Add(time.Minute), "1m0s"}, + {now.Add(time.Minute * 40), "40m0s"}, + {now.Add(time.Millisecond * 40), "0s"}, + {now.Add(time.Millisecond * 80), "0s"}, + {now.Add(time.Millisecond * 400), "0s"}, + {now.Add(time.Millisecond * 800), "1s"}, + {now.Add(time.Millisecond * 4321), "4s"}, + {now.Add(time.Millisecond * 8765), "9s"}, + {now.Add(time.Microsecond * 12345678), "12s"}, + {now.Add(time.Microsecond * 87654321), "1m28s"}, + } + for i, tt := range dt { + if out := durationImpl(tt.in, now); out != tt.out { + t.Errorf(`%d. content mismatch for "%v": expected=%q got=%q`, i, tt.in, tt.out, out) + } + } +} + func TestElapsedTime(t *testing.T) { printer := locale.NewPrinter("en_US") var dt = []struct { |