1 Star 0 Fork 60

amuluze / carbon

forked from golang-module / carbon 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
getter_test.go 27.42 KB
一键复制 编辑 原始数据 按行查看 历史
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134
package carbon
import (
"strconv"
"testing"
"github.com/stretchr/testify/assert"
)
func TestCarbon_DaysInYear(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05", 366},
{"2021-08-05", 365},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.DaysInYear(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DaysInMonth(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-01-05", 31},
{"2020-02-05", 29},
{"2020-03-05", 31},
{"2020-04-05", 30},
{"2020-05-05", 31},
{"2021-06-05", 30},
{"2021-07-05", 31},
{"2021-08-05", 31},
{"2021-09-05", 30},
{"2021-10-05", 31},
{"2021-11-05", 30},
{"2021-12-05", 31},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.DaysInMonth(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_MonthOfYear(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-01-05", 1},
{"2020-02-05", 2},
{"2020-03-05", 3},
{"2020-04-05", 4},
{"2020-05-05", 5},
{"2021-06-05", 6},
{"2021-07-05", 7},
{"2021-08-05", 8},
{"2021-09-05", 9},
{"2021-10-05", 10},
{"2021-11-05", 11},
{"2021-12-05", 12},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.MonthOfYear(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DayOfYear(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-01-01", 1},
{"2020-01-31", 31},
{"2020-08-05", 218},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.DayOfYear(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DayOfMonth(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-01-01", 1},
{"2020-01-31", 31},
{"2020-08-05", 5},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.DayOfMonth(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DayOfWeek(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-03", 1},
{"2020-08-04", 2},
{"2020-08-05", 3},
{"2020-08-06", 4},
{"2020-08-07", 5},
{"2020-08-08", 6},
{"2020-08-09", 7},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.DayOfWeek(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_WeekOfYear(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2021-01-01", 53},
{"2021-02-01", 5},
{"2021-03-01", 9},
{"2021-04-01", 13},
{"2021-05-01", 17},
{"2021-06-01", 22},
{"2021-07-01", 26},
{"2021-08-01", 30},
{"2021-09-01", 35},
{"2021-10-01", 39},
{"2021-11-01", 44},
{"2021-12-01", 48},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.WeekOfYear(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_WeekOfMonth(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2021-07-01", 1},
{"2021-07-02", 1},
{"2021-07-03", 1},
{"2021-07-04", 1},
{"2021-07-05", 2},
{"2021-07-06", 2},
{"2021-07-07", 2},
{"2021-07-08", 2},
{"2021-07-09", 2},
{"2021-07-10", 2},
{"2021-07-11", 2},
{"2021-07-12", 3},
{"2021-07-13", 3},
{"2021-07-14", 3},
{"2021-07-15", 3},
{"2021-07-16", 3},
{"2021-07-17", 3},
{"2021-07-18", 3},
{"2021-07-19", 4},
{"2021-07-20", 4},
{"2021-07-21", 4},
{"2021-07-22", 4},
{"2021-07-23", 4},
{"2021-07-24", 4},
{"2021-07-25", 4},
{"2021-07-26", 5},
{"2021-07-27", 5},
{"2021-07-28", 5},
{"2021-07-29", 5},
{"2021-07-30", 5},
{"2021-07-31", 5},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.WeekOfMonth(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DateTime(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
year, month, day, hour, minute, second int // 期望值
}{
{"", 0, 0, 0, 0, 0, 0},
{"0", 0, 0, 0, 0, 0, 0},
{"0000-00-00", 0, 0, 0, 0, 0, 0},
{"00:00:00", 0, 0, 0, 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0, 0, 0, 0},
{"2020-01-01", 2020, 1, 1, 0, 0, 0},
{"2020-01-01 13:14:15", 2020, 1, 1, 13, 14, 15},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
year, month, day, hour, minute, second := c.DateTime()
assert.Equal(test.year, year, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.month, month, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.day, day, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.hour, hour, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.minute, minute, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.second, second, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DateTimeMilli(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
year, month, day, hour, minute, second, millisecond int // 期望值
}{
{"", 0, 0, 0, 0, 0, 0, 0},
{"0", 0, 0, 0, 0, 0, 0, 0},
{"0000-00-00", 0, 0, 0, 0, 0, 0, 0},
{"00:00:00", 0, 0, 0, 0, 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0, 0, 0, 0, 0},
{"2020-08-05", 2020, 8, 5, 0, 0, 0, 0},
{"2020-08-05 13:14:15.999999999", 2020, 8, 5, 13, 14, 15, 999},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
year, month, day, hour, minute, second, millisecond := c.DateTimeMilli()
assert.Equal(test.year, year, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.month, month, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.day, day, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.hour, hour, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.minute, minute, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.second, second, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.millisecond, millisecond, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DateTimeMicro(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
year, month, day, hour, minute, second, microsecond int // 期望值
}{
{"", 0, 0, 0, 0, 0, 0, 0},
{"0", 0, 0, 0, 0, 0, 0, 0},
{"0000-00-00", 0, 0, 0, 0, 0, 0, 0},
{"00:00:00", 0, 0, 0, 0, 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0, 0, 0, 0, 0},
{"2020-08-05", 2020, 8, 5, 0, 0, 0, 0},
{"2020-08-05 13:14:15.999999999", 2020, 8, 5, 13, 14, 15, 999999},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
year, month, day, hour, minute, second, microsecond := c.DateTimeMicro()
assert.Equal(test.year, year, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.month, month, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.day, day, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.hour, hour, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.minute, minute, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.second, second, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.microsecond, microsecond, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DateTimeNano(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
year, month, day, hour, minute, second, nanosecond int // 期望值
}{
{"", 0, 0, 0, 0, 0, 0, 0},
{"0", 0, 0, 0, 0, 0, 0, 0},
{"0000-00-00", 0, 0, 0, 0, 0, 0, 0},
{"00:00:00", 0, 0, 0, 0, 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0, 0, 0, 0, 0},
{"2020-08-05", 2020, 8, 5, 0, 0, 0, 0},
{"2020-08-05 13:14:15.999999999", 2020, 8, 5, 13, 14, 15, 999999999},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
year, month, day, hour, minute, second, nanosecond := c.DateTimeNano()
assert.Equal(test.year, year, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.month, month, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.day, day, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.hour, hour, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.minute, minute, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.second, second, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.nanosecond, nanosecond, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Date(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
year, month, day int // 期望值
}{
{"", 0, 0, 0},
{"0", 0, 0, 0},
{"0000-00-00", 0, 0, 0},
{"00:00:00", 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0},
{"2020-08-05", 2020, 8, 5},
{"2020-08-05 13:14:15", 2020, 8, 5},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
year, month, day := c.Date()
assert.Equal(test.year, year, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.month, month, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.day, day, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DateMilli(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
year, month, day, millisecond int // 期望值
}{
{"", 0, 0, 0, 0},
{"0", 0, 0, 0, 0},
{"0000-00-00", 0, 0, 0, 0},
{"00:00:00", 0, 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0, 0},
{"2020-08-05", 2020, 8, 5, 0},
{"2020-08-05 13:14:15.999", 2020, 8, 5, 999},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
year, month, day, millisecond := c.DateMilli()
assert.Equal(test.year, year, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.month, month, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.day, day, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.millisecond, millisecond, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DateMicro(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
year, month, day, microsecond int // 期望值
}{
{"", 0, 0, 0, 0},
{"0", 0, 0, 0, 0},
{"0000-00-00", 0, 0, 0, 0},
{"00:00:00", 0, 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0, 0},
{"2020-08-05", 2020, 8, 5, 0},
{"2020-08-05 13:14:15.999999", 2020, 8, 5, 999999},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
year, month, day, microsecond := c.DateMicro()
assert.Equal(test.year, year, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.month, month, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.day, day, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.microsecond, microsecond, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_DateNano(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
year, month, day, nanosecond int // 期望值
}{
{"", 0, 0, 0, 0},
{"0", 0, 0, 0, 0},
{"0000-00-00", 0, 0, 0, 0},
{"00:00:00", 0, 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0, 0},
{"2020-08-05", 2020, 8, 5, 0},
{"2020-08-05 13:14:15.999999999", 2020, 8, 5, 999999999},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
year, month, day, nanosecond := c.DateNano()
assert.Equal(test.year, year, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.month, month, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.day, day, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.nanosecond, nanosecond, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Time(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
hour, minute, second int // 期望值
}{
{"", 0, 0, 0},
{"0", 0, 0, 0},
{"0000-00-00", 0, 0, 0},
{"00:00:00", 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0},
{"2020-01-01", 0, 0, 0},
{"2020-01-01 13:14:15", 13, 14, 15},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
hour, minute, second := c.Time()
assert.Equal(test.hour, hour, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.minute, minute, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.second, second, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_TimeMilli(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
hour, minute, second, millisecond int // 期望值
}{
{"", 0, 0, 0, 0},
{"0", 0, 0, 0, 0},
{"0000-00-00", 0, 0, 0, 0},
{"00:00:00", 0, 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0, 0},
{"2020-01-01", 0, 0, 0, 0},
{"2020-01-01 13:14:15.999", 13, 14, 15, 999},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
hour, minute, second, millisecond := c.TimeMilli()
assert.Equal(test.hour, hour, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.minute, minute, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.second, second, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.millisecond, millisecond, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_TimeMicro(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
hour, minute, second, microsecond int // 期望值
}{
{"", 0, 0, 0, 0},
{"0", 0, 0, 0, 0},
{"0000-00-00", 0, 0, 0, 0},
{"00:00:00", 0, 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0, 0},
{"2020-01-01", 0, 0, 0, 0},
{"2020-01-01 13:14:15.999999", 13, 14, 15, 999999},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
hour, minute, second, microsecond := c.TimeMicro()
assert.Equal(test.hour, hour, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.minute, minute, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.second, second, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.microsecond, microsecond, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_TimeNano(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
hour, minute, second, nanosecond int // 期望值
}{
{"", 0, 0, 0, 0},
{"0", 0, 0, 0, 0},
{"0000-00-00", 0, 0, 0, 0},
{"00:00:00", 0, 0, 0, 0},
{"0000-00-00 00:00:00", 0, 0, 0, 0},
{"2020-01-01", 0, 0, 0, 0},
{"2020-01-01 13:14:15.999999999", 13, 14, 15, 999999999},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
hour, minute, second, nanosecond := c.TimeNano()
assert.Equal(test.hour, hour, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.minute, minute, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.second, second, "Current test index is "+strconv.Itoa(index))
assert.Equal(test.nanosecond, nanosecond, "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Century(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05", 21},
{"2020-08-05 13:14:15", 21},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Century(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Decade(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2019-08-05", 10},
{"2019-08-05 13:14:15", 10},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Decade(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Year(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05", 2020},
{"2020-08-05 13:14:15", 2020},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Year(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Quarter(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-01-05", 1},
{"2020-04-05", 2},
{"2020-08-05", 3},
{"2020-11-05", 4},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Quarter(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Month(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05 13:14:15", 8},
{"2020-08-05", 8},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Month(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Week(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", -1},
{"0", -1},
{"0000-00-00", -1},
{"00:00:00", -1},
{"0000-00-00 00:00:00", -1},
{"2020-08-03", 1},
{"2020-08-04", 2},
{"2020-08-05", 3},
{"2020-08-06", 4},
{"2020-08-07", 5},
{"2020-08-08", 6},
{"2020-08-09", 0},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Week(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Day(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05 13:14:15", 5},
{"2020-08-05", 5},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Day(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Hour(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05 13:14:15", 13},
{"2020-08-05", 0},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Hour(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Minute(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05 13:14:15", 14},
{"2020-08-05", 0},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Minute(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Second(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05 13:14:15.999", 15},
{"2020-08-05", 0},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Second(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Millisecond(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05 13:14:15.999", 999},
{"2020-08-05", 0},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Millisecond(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Microsecond(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05 13:14:15.999", 999000},
{"2020-08-05", 0},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Microsecond(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Nanosecond(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-08-05 13:14:15.999", 999000000},
{"2020-08-05", 0},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Nanosecond(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Timestamp(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int64 // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-01-01 13:14:15", 1577855655},
{"2020-01-31 13:14:15", 1580447655},
{"2020-02-01 13:14:15", 1580534055},
{"2020-02-28 13:14:15", 1582866855},
{"2020-02-29 13:14:15", 1582953255},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Timestamp(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_TimestampMilli(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int64 // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-01-01 13:14:15", 1577855655000},
{"2020-01-31 13:14:15", 1580447655000},
{"2020-02-01 13:14:15", 1580534055000},
{"2020-02-28 13:14:15", 1582866855000},
{"2020-02-29 13:14:15", 1582953255000},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
assert.Equal(test.expected, c.TimestampMilli(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_TimestampMicro(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int64 // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-01-01 13:14:15", 1577855655000000},
{"2020-01-31 13:14:15", 1580447655000000},
{"2020-02-01 13:14:15", 1580534055000000},
{"2020-02-28 13:14:15", 1582866855000000},
{"2020-02-29 13:14:15", 1582953255000000},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
assert.Equal(test.expected, c.TimestampMicro(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_TimestampNano(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int64 // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{"2020-01-01 13:14:15", 1577855655000000000},
{"2020-01-31 13:14:15", 1580447655000000000},
{"2020-02-01 13:14:15", 1580534055000000000},
{"2020-02-28 13:14:15", 1582866855000000000},
{"2020-02-29 13:14:15", 1582953255000000000},
}
for index, test := range tests {
c := Parse(test.input, PRC)
assert.Nil(c.Error)
assert.Equal(test.expected, c.TimestampNano(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Timezone(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected string // 期望值
}{
{PRC, "CST"},
{Tokyo, "JST"},
}
for index, test := range tests {
c := Now(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Timezone(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Location(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected string // 期望值
}{
{PRC, PRC},
{Tokyo, Tokyo},
}
for index, test := range tests {
c := Now(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Location(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Offset(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{PRC, 28800},
{Tokyo, 32400},
}
for index, test := range tests {
c := Now(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Offset(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Locale(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected string // 期望值
}{
{"en", "en"},
{"zh-CN", "zh-CN"},
}
for index, test := range tests {
c := SetLocale(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Locale(), "Current test index is "+strconv.Itoa(index))
}
}
func TestCarbon_Age(t *testing.T) {
assert := assert.New(t)
tests := []struct {
input string // 输入值
expected int // 期望值
}{
{"", 0},
{"0", 0},
{"0000-00-00", 0},
{"00:00:00", 0},
{"0000-00-00 00:00:00", 0},
{Now().AddYears(18).ToDateTimeString(), 0},
{Now().SubYears(18).ToDateTimeString(), 18},
}
for index, test := range tests {
c := Parse(test.input)
assert.Nil(c.Error)
assert.Equal(test.expected, c.Age(), "Current test index is "+strconv.Itoa(index))
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/amuluze/carbon.git
git@gitee.com:amuluze/carbon.git
amuluze
carbon
carbon
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891