Skip to content

Commit e1e4333

Browse files
author
Gusted
authored
Fix SecToTime edge-cases (#20610) (#20611)
1 parent cedf4fe commit e1e4333

File tree

2 files changed

+37
-10
lines changed

2 files changed

+37
-10
lines changed

Diff for: modules/util/sec_to_time.go

+20-4
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,28 @@ import (
1616
// 1563418 -> 2 weeks 4 days
1717
// 3937125s -> 1 month 2 weeks
1818
// 45677465s -> 1 year 6 months
19+
//
20+
// Magic numbers:
21+
// 3600 = 60 * 60 (amount of seconds in a hour)
22+
// 86400 = 60 * 60 * 24 (amount of seconds in a day)
1923
func SecToTime(duration int64) string {
2024
formattedTime := ""
21-
years := duration / (3600 * 24 * 7 * 4 * 12)
22-
months := (duration / (3600 * 24 * 30)) % 12
23-
weeks := (duration / (3600 * 24 * 7)) % 4
24-
days := (duration / (3600 * 24)) % 7
25+
26+
// The following four variables are calculated by taking
27+
// into account the previously calculated variables, this avoids
28+
// pitfalls when using remainders. As that could lead to incorrect
29+
// results when the calculated number equals the quotient number.
30+
remainingDays := duration / (60 * 60 * 24)
31+
years := remainingDays / 365
32+
remainingDays -= years * 365
33+
months := remainingDays * 12 / 365
34+
remainingDays -= months * 365 / 12
35+
weeks := remainingDays / 7
36+
remainingDays -= weeks * 7
37+
days := remainingDays
38+
39+
// The following three variables are calculated without depending
40+
// on the previous calculated variables.
2541
hours := (duration / 3600) % 24
2642
minutes := (duration / 60) % 60
2743
seconds := duration % 60

Diff for: modules/util/sec_to_time_test.go

+17-6
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,21 @@ import (
1111
)
1212

1313
func TestSecToTime(t *testing.T) {
14-
assert.Equal(t, SecToTime(66), "1 minute 6 seconds")
15-
assert.Equal(t, SecToTime(52410), "14 hours 33 minutes")
16-
assert.Equal(t, SecToTime(563418), "6 days 12 hours")
17-
assert.Equal(t, SecToTime(1563418), "2 weeks 4 days")
18-
assert.Equal(t, SecToTime(3937125), "1 month 2 weeks")
19-
assert.Equal(t, SecToTime(45677465), "1 year 5 months")
14+
second := int64(1)
15+
minute := 60 * second
16+
hour := 60 * minute
17+
day := 24 * hour
18+
year := 365 * day
19+
20+
assert.Equal(t, "1 minute 6 seconds", SecToTime(minute+6*second))
21+
assert.Equal(t, "1 hour", SecToTime(hour))
22+
assert.Equal(t, "1 hour", SecToTime(hour+second))
23+
assert.Equal(t, "14 hours 33 minutes", SecToTime(14*hour+33*minute+30*second))
24+
assert.Equal(t, "6 days 12 hours", SecToTime(6*day+12*hour+30*minute+18*second))
25+
assert.Equal(t, "2 weeks 4 days", SecToTime((2*7+4)*day+2*hour+16*minute+58*second))
26+
assert.Equal(t, "4 weeks", SecToTime(4*7*day))
27+
assert.Equal(t, "4 weeks 1 day", SecToTime((4*7+1)*day))
28+
assert.Equal(t, "1 month 2 weeks", SecToTime((6*7+3)*day+13*hour+38*minute+45*second))
29+
assert.Equal(t, "11 months", SecToTime(year-25*day))
30+
assert.Equal(t, "1 year 5 months", SecToTime(year+163*day+10*hour+11*minute+5*second))
2031
}

0 commit comments

Comments
 (0)