forked from dromara/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_unit_test.go
executable file
·47 lines (37 loc) · 1.99 KB
/
test_unit_test.go
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
package carbon
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestCarbon_SetTestNow(t *testing.T) {
assert := assert.New(t)
carbon := NewCarbon()
carbon.SetTestNow(Parse("2020-08-05"))
assert.Equal("2020-08-04", carbon.Yesterday().ToDateString(), "It should be equal to 2020-08-04")
assert.Equal("2020-08-05", carbon.Now().ToDateString(), "It should be equal to 2020-08-05")
assert.Equal("2020-08-06", carbon.Tomorrow().ToDateString(), "It should be equal to 2020-08-06")
assert.Equal(31, carbon.Parse("1989-08-05").Age(), "It should be equal to 31")
assert.Equal(int64(1), carbon.Parse("2020-07-05").DiffInMonths(), "It should be equal to 1")
assert.Equal(int64(4), carbon.Parse("2020-07-05").DiffInWeeks(), "It should be equal to 4")
assert.Equal(int64(31), carbon.Parse("2020-07-05").DiffInDays(), "It should be equal to 31")
assert.Equal(int64(-13), carbon.Parse("2020-08-05 13:14:15").DiffInHours(), "It should be equal to -13")
assert.Equal(int64(-794), carbon.Parse("2020-08-05 13:14:15").DiffInMinutes(), "It should be equal to -794")
assert.Equal(int64(-47655), carbon.Parse("2020-08-05 13:14:15").DiffInSeconds(), "It should be equal to -47655")
assert.Equal("-13 hours", carbon.Parse("2020-08-05 13:14:15").DiffInString(), "It should be -13 hours")
assert.Equal("13 hours", carbon.Parse("2020-08-05 13:14:15").DiffAbsInString(), "It should be -13 hours")
assert.Equal("13 hours from now", carbon.Parse("2020-08-05 13:14:15").DiffForHumans(), "It should be 13 hours from now")
}
func TestCarbon_UnSetTestNow(t *testing.T) {
assert := assert.New(t)
carbon := NewCarbon()
carbon.SetTestNow(Parse("2020-08-05"))
carbon.UnSetTestNow()
assert.Equal(Now().ToDateString(), carbon.Now().ToDateString())
}
func TestCarbon_IsSetTestNow(t *testing.T) {
assert := assert.New(t)
carbon := NewCarbon()
assert.Equal(false, Now().IsSetTestNow(), "It should be equal to false")
carbon.SetTestNow(Parse("2020-08-05"))
assert.Equal(true, carbon.IsSetTestNow(), "It should be equal to true")
}