2021-02-18 14:32:31 +08:00
|
|
|
package carbon
|
|
|
|
|
|
|
|
import (
|
2021-07-19 09:33:57 +08:00
|
|
|
"fmt"
|
2021-07-19 14:33:53 +08:00
|
|
|
"strconv"
|
2021-02-18 14:32:31 +08:00
|
|
|
"testing"
|
2021-07-19 09:33:57 +08:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2021-02-18 14:32:31 +08:00
|
|
|
)
|
|
|
|
|
2021-02-23 09:32:55 +08:00
|
|
|
func TestCarbon_ToTimestamp(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected int64 // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", 0},
|
|
|
|
{2, "0", 0},
|
|
|
|
{3, "0000-00-00", 0},
|
|
|
|
{4, "00:00:00", 0},
|
|
|
|
{5, "0000-00-00 00:00:00", 0},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "2020-01-01 13:14:15", 1577855655},
|
|
|
|
{2, "2020-01-31 13:14:15", 1580447655},
|
|
|
|
{3, "2020-02-01 13:14:15", 1580534055},
|
|
|
|
{4, "2020-02-28 13:14:15", 1582866855},
|
|
|
|
{5, "2020-02-29 13:14:15", 1582953255},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToTimestamp(), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-23 09:32:55 +08:00
|
|
|
func TestCarbon_ToTimestampWithSecond(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected int64 // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", 0},
|
|
|
|
{2, "0", 0},
|
|
|
|
{3, "0000-00-00", 0},
|
|
|
|
{4, "00:00:00", 0},
|
|
|
|
{5, "0000-00-00 00:00:00", 0},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-01-01 13:14:15", 1577855655},
|
|
|
|
{7, "2020-01-31 13:14:15", 1580447655},
|
|
|
|
{8, "2020-02-01 13:14:15", 1580534055},
|
|
|
|
{9, "2020-02-28 13:14:15", 1582866855},
|
|
|
|
{10, "2020-02-29 13:14:15", 1582953255},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToTimestampWithSecond(), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-23 09:32:55 +08:00
|
|
|
func TestCarbon_ToTimestampWithMillisecond(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected int64 // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", 0},
|
|
|
|
{2, "0", 0},
|
|
|
|
{3, "0000-00-00", 0},
|
|
|
|
{4, "00:00:00", 0},
|
|
|
|
{5, "0000-00-00 00:00:00", 0},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-01-01 13:14:15", 1577855655000},
|
|
|
|
{7, "2020-01-31 13:14:15", 1580447655000},
|
|
|
|
{8, "2020-02-01 13:14:15", 1580534055000},
|
|
|
|
{9, "2020-02-28 13:14:15", 1582866855000},
|
|
|
|
{10, "2020-02-29 13:14:15", 1582953255000},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToTimestampWithMillisecond(), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-23 09:32:55 +08:00
|
|
|
func TestCarbon_ToTimestampWithMicrosecond(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected int64 // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", 0},
|
|
|
|
{2, "0", 0},
|
|
|
|
{3, "0000-00-00", 0},
|
|
|
|
{4, "00:00:00", 0},
|
|
|
|
{5, "0000-00-00 00:00:00", 0},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-01-01 13:14:15", 1577855655000000},
|
|
|
|
{7, "2020-01-31 13:14:15", 1580447655000000},
|
|
|
|
{8, "2020-02-01 13:14:15", 1580534055000000},
|
|
|
|
{9, "2020-02-28 13:14:15", 1582866855000000},
|
|
|
|
{10, "2020-02-29 13:14:15", 1582953255000000},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToTimestampWithMicrosecond(), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-23 09:32:55 +08:00
|
|
|
func TestCarbon_ToTimestampWithNanosecond(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected int64 // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", 0},
|
|
|
|
{2, "0", 0},
|
|
|
|
{3, "0000-00-00", 0},
|
|
|
|
{4, "00:00:00", 0},
|
|
|
|
{5, "0000-00-00 00:00:00", 0},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-01-01 13:14:15", 1577855655000000000},
|
|
|
|
{7, "2020-01-31 13:14:15", 1580447655000000000},
|
|
|
|
{8, "2020-02-01 13:14:15", 1580534055000000000},
|
|
|
|
{9, "2020-02-28 13:14:15", 1582866855000000000},
|
|
|
|
{10, "2020-02-29 13:14:15", 1582953255000000000},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToTimestampWithNanosecond(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_String(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "2020-08-05 13:14:15"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, fmt.Sprintf("%s", Parse(test.input)), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-23 09:32:55 +08:00
|
|
|
func TestCarbon_ToString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
2021-07-19 14:33:53 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-23 09:32:55 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "2020-08-05 13:14:15 +0800 CST"},
|
2021-02-23 09:32:55 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToMonthString1(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
2021-02-23 09:32:55 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
|
|
|
|
|
|
|
{6, "2020-01-05", "January"},
|
|
|
|
{7, "2020-02-05", "February"},
|
|
|
|
{8, "2020-03-05", "March"},
|
|
|
|
{9, "2020-04-05", "April"},
|
|
|
|
{10, "2020-05-05", "May"},
|
|
|
|
{11, "2020-06-05", "June"},
|
|
|
|
{12, "2020-07-05", "July"},
|
|
|
|
{13, "2020-08-05", "August"},
|
|
|
|
{14, "2020-09-05", "September"},
|
|
|
|
{15, "2020-10-05", "October"},
|
|
|
|
{16, "2020-11-05", "November"},
|
|
|
|
{17, "2020-12-05", "December"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToMonthString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToMonthString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-23 09:32:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
func TestCarbon_ToMonthString2(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
param string // 参数值
|
|
|
|
expected string // 期望值
|
2021-02-23 09:32:55 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", "en", ""},
|
|
|
|
{2, "0", "en", ""},
|
|
|
|
{3, "0000-00-00", "en", ""},
|
|
|
|
{4, "00:00:00", "en", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", "en", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05", "en", "August"},
|
|
|
|
{7, "2020-08-05", "zh-CN", "八月"},
|
2021-07-23 10:59:53 +08:00
|
|
|
{8, "2020-08-05", "zh-TW", "八月"},
|
2021-07-19 14:33:53 +08:00
|
|
|
{9, "2020-08-05", "jp", "はちがつ"},
|
|
|
|
{10, "2020-08-05", "kr", "팔월"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.SetLocale(test.param).ToMonthString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.SetLocale(test.param).ToMonthString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-23 09:32:55 +08:00
|
|
|
}
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-23 09:32:55 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
func TestCarbon_ToShortMonthString1(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
2021-02-23 09:32:55 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
|
|
|
|
|
|
|
{6, "2020-01-05", "Jan"},
|
|
|
|
{7, "2020-02-05", "Feb"},
|
|
|
|
{8, "2020-03-05", "Mar"},
|
|
|
|
{9, "2020-04-05", "Apr"},
|
|
|
|
{10, "2020-05-05", "May"},
|
|
|
|
{11, "2020-06-05", "Jun"},
|
|
|
|
{12, "2020-07-05", "Jul"},
|
|
|
|
{13, "2020-08-05", "Aug"},
|
|
|
|
{14, "2020-09-05", "Sep"},
|
|
|
|
{15, "2020-10-05", "Oct"},
|
|
|
|
{16, "2020-11-05", "Nov"},
|
|
|
|
{17, "2020-12-05", "Dec"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToShortMonthString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToShortMonthString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-23 09:32:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
func TestCarbon_ToShortMonthString2(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
param string // 参数值
|
|
|
|
expected string // 期望值
|
2021-02-23 09:32:55 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", "en", ""},
|
|
|
|
{2, "0", "en", ""},
|
|
|
|
{3, "0000-00-00", "en", ""},
|
|
|
|
{4, "00:00:00", "en", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", "en", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05", "en", "Aug"},
|
|
|
|
{7, "2020-08-05", "zh-CN", "8月"},
|
2021-07-23 10:59:53 +08:00
|
|
|
{8, "2020-08-05", "zh-TW", "8月"},
|
2021-07-19 14:33:53 +08:00
|
|
|
{9, "2020-08-05", "jp", "8がつ"},
|
|
|
|
{10, "2020-08-05", "kr", "8월"},
|
2021-02-23 09:32:55 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC).SetLocale(test.param)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToShortMonthString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC).SetLocale(test.param)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToShortMonthString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
}
|
2021-02-23 09:32:55 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
func TestCarbon_ToWeekString1(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-01", "Saturday"},
|
|
|
|
{7, "2020-08-02", "Sunday"},
|
|
|
|
{8, "2020-08-03", "Monday"},
|
|
|
|
{9, "2020-08-04", "Tuesday"},
|
|
|
|
{10, "2020-08-05", "Wednesday"},
|
|
|
|
{11, "2020-08-06", "Thursday"},
|
|
|
|
{12, "2020-08-07", "Friday"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToWeekString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToWeekString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-23 09:32:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
func TestCarbon_ToWeekString2(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
param string // 参数值
|
|
|
|
expected string // 期望值
|
2021-02-23 09:32:55 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", "en", ""},
|
|
|
|
{2, "0", "en", ""},
|
|
|
|
{3, "0000-00-00", "en", ""},
|
|
|
|
{4, "00:00:00", "en", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", "en", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05", "en", "Wednesday"},
|
|
|
|
{7, "2020-08-05", "zh-CN", "星期三"},
|
2021-07-23 10:59:53 +08:00
|
|
|
{8, "2020-08-05", "zh-TW", "星期三"},
|
2021-07-19 14:33:53 +08:00
|
|
|
{9, "2020-08-05", "jp", "もくようび"},
|
|
|
|
{10, "2020-08-05", "kr", "수요일"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC).SetLocale(test.param)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToWeekString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC).SetLocale(test.param)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToWeekString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-23 09:32:55 +08:00
|
|
|
}
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-23 09:32:55 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
func TestCarbon_ToShortWeekString1(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-01", "Sat"},
|
|
|
|
{7, "2020-08-02", "Sun"},
|
|
|
|
{8, "2020-08-03", "Mon"},
|
|
|
|
{9, "2020-08-04", "Tue"},
|
|
|
|
{10, "2020-08-05", "Wed"},
|
|
|
|
{11, "2020-08-06", "Thu"},
|
|
|
|
{12, "2020-08-07", "Fri"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-23 09:32:55 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToShortWeekString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToShortWeekString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-23 09:32:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
func TestCarbon_ToShortWeekString2(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
param string // 参数值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", "en", ""},
|
|
|
|
{2, "0", "en", ""},
|
|
|
|
{3, "0000-00-00", "en", ""},
|
|
|
|
{4, "00:00:00", "en", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", "en", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05", "en", "Wed"},
|
|
|
|
{7, "2020-08-05", "zh-CN", "周三"},
|
2021-07-23 10:59:53 +08:00
|
|
|
{8, "2020-08-05", "zh-TW", "週三"},
|
2021-07-19 14:33:53 +08:00
|
|
|
{9, "2020-08-05", "jp", "週三"},
|
|
|
|
{10, "2020-08-05", "kr", "수요일"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC).SetLocale(test.param)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToShortWeekString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC).SetLocale(test.param)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToShortWeekString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToDayDateTimeString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wed, Aug 5, 2020 1:14 PM"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToDayDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToDayDateTimeString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToDateTimeString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "2020-08-05 13:14:15"},
|
|
|
|
{7, "2020-08-05", "2020-08-05 00:00:00"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToDateTimeString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
func TestCarbon_ToShortDateTimeString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "20200805131415"},
|
|
|
|
{7, "2020-08-05", "20200805000000"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToShortDateTimeString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToShortDateTimeString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToDateString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "2020-08-05"},
|
|
|
|
{7, "2020-08-05", "2020-08-05"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToDateString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToDateString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
func TestCarbon_ToShortDateString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "20200805"},
|
|
|
|
{7, "2020-08-05", "20200805"},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToShortDateString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToShortDateString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToTimeString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "13:14:15"},
|
|
|
|
{7, "2020-08-05", "00:00:00"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToTimeString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToTimeString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
func TestCarbon_ToShortTimeString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "131415"},
|
|
|
|
{7, "2020-08-05", "000000"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToShortTimeString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToShortTimeString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToAtomString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "2020-08-05T13:14:15+08:00"},
|
|
|
|
{7, "2020-08-05", "2020-08-05T00:00:00+08:00"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToAtomString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToAtomString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToAnsicString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wed Aug 5 13:14:15 2020"},
|
|
|
|
{7, "2020-08-05", "Wed Aug 5 00:00:00 2020"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToAnsicString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToAnsicString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToCookieString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wednesday, 05-Aug-2020 13:14:15 CST"},
|
|
|
|
{7, "2020-08-05", "Wednesday, 05-Aug-2020 00:00:00 CST"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToCookieString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToCookieString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToRssString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wed, 05 Aug 2020 13:14:15 +0800"},
|
|
|
|
{7, "2020-08-05", "Wed, 05 Aug 2020 00:00:00 +0800"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRssString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRssString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToW3cString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "2020-08-05T13:14:15+08:00"},
|
|
|
|
{7, "2020-08-05", "2020-08-05T00:00:00+08:00"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToW3cString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToW3cString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToUnixDateString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wed Aug 5 13:14:15 CST 2020"},
|
|
|
|
{7, "2020-08-05", "Wed Aug 5 00:00:00 CST 2020"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToUnixDateString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToUnixDateString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToRubyDateString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wed Aug 05 13:14:15 +0800 2020"},
|
|
|
|
{7, "2020-08-05", "Wed Aug 05 00:00:00 +0800 2020"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRubyDateString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRubyDateString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToKitchenString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "1:14PM"},
|
|
|
|
{7, "2020-08-05", "12:00AM"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, test.expected, c.ToKitchenString(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, test.expected, c.ToKitchenString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
func TestCarbon_ToIso8601String(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "2020-08-05T13:14:15+08:00"},
|
|
|
|
{7, "2020-08-05", "2020-08-05T00:00:00+08:00"},
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToIso8601String(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToIso8601String(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToRfc822String(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "05 Aug 20 13:14 CST"},
|
|
|
|
{7, "2020-08-05", "05 Aug 20 00:00 CST"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc822String(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc822String(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToRfc822zString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "05 Aug 20 13:14 +0800"},
|
|
|
|
{7, "2020-08-05", "05 Aug 20 00:00 +0800"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc822zString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc822zString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToRfc850String(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wednesday, 05-Aug-20 13:14:15 CST"},
|
|
|
|
{7, "2020-08-05", "Wednesday, 05-Aug-20 00:00:00 CST"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc850String(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc850String(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToRfc1036String(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wed, 05 Aug 20 13:14:15 +0800"},
|
|
|
|
{7, "2020-08-05", "Wed, 05 Aug 20 00:00:00 +0800"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc1036String(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc1036String(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToRfc1123String(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wed, 05 Aug 2020 13:14:15 CST"},
|
|
|
|
{7, "2020-08-05", "Wed, 05 Aug 2020 00:00:00 CST"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc1123String(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc1123String(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToRfc1123ZString(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wed, 05 Aug 2020 13:14:15 +0800"},
|
|
|
|
{7, "2020-08-05", "Wed, 05 Aug 2020 00:00:00 +0800"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc1123ZString(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc1123ZString(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToRfc2822String(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wed, 05 Aug 2020 13:14:15 +0800"},
|
|
|
|
{7, "2020-08-05", "Wed, 05 Aug 2020 00:00:00 +0800"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc2822String(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc2822String(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCarbon_ToRfc3339String(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-19 14:33:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "2020-08-05T13:14:15+08:00"},
|
|
|
|
{7, "2020-08-05", "2020-08-05T00:00:00+08:00"},
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToRfc3339String(), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc3339String(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
func TestCarbon_ToRfc7231String(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-19 14:33:53 +08:00
|
|
|
{1, "", ""},
|
|
|
|
{2, "0", ""},
|
|
|
|
{3, "0000-00-00", ""},
|
|
|
|
{4, "00:00:00", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "Wed, 05 Aug 2020 13:14:15 GMT"},
|
|
|
|
{7, "2020-08-05", "Wed, 05 Aug 2020 00:00:00 GMT"},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToRfc7231String(), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToRfc7231String(PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
func TestCarbon_Layout(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
param string // 参数值
|
|
|
|
expected string // 期望值
|
2021-02-18 14:32:31 +08:00
|
|
|
}{
|
2021-07-23 10:59:53 +08:00
|
|
|
{1, "", "2006年01月02日", ""},
|
|
|
|
{2, "0", "2006年01月02日", ""},
|
|
|
|
{3, "0000-00-00", "2006年01月02日", ""},
|
|
|
|
{4, "00:00:00", "2006年01月02日", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", "Y年m月d日", ""},
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
{6, "2020-08-05 13:14:15", "2006年01月02日", "2020年08月05日"},
|
|
|
|
{6, "2020-08-05 13:14:15", "Mon, 02 Jan 2006 15:04:05 GMT", "Wed, 05 Aug 2020 13:14:15 GMT"},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.Layout(test.param), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToLayoutString(test.param), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.Layout(test.param, PRC), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToLayoutString(test.param, PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
func TestCarbon_Format(t *testing.T) {
|
2021-07-19 09:33:57 +08:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
tests := []struct {
|
2021-07-23 10:59:53 +08:00
|
|
|
id int // 测试id
|
|
|
|
input string // 输入值
|
|
|
|
param string // 参数值
|
|
|
|
expected string // 期望值
|
2021-07-19 09:33:57 +08:00
|
|
|
}{
|
2021-07-23 10:59:53 +08:00
|
|
|
{1, "", "Y年m月d日", ""},
|
|
|
|
{2, "0", "Y年m月d日", ""},
|
|
|
|
{3, "0000-00-00", "Y年m月d日", ""},
|
|
|
|
{4, "00:00:00", "Y年m月d日", ""},
|
|
|
|
{5, "0000-00-00 00:00:00", "Y年m月d日", ""},
|
|
|
|
|
|
|
|
{6, "2020-08-05 13:14:15", "Y年m月d日", "2020年08月05日"},
|
|
|
|
{7, "2020-08-05 01:14:15", "j", "5"},
|
|
|
|
{8, "2020-08-05 01:14:15", "W", "32"},
|
|
|
|
{9, "2020-08-05 01:14:15", "M", "Aug"},
|
|
|
|
{10, "2020-08-05 01:14:15", "F", "August"},
|
|
|
|
{11, "2020-08-05 01:14:15", "N", "3"},
|
|
|
|
{12, "2020-08-05 01:14:15", "L", "1"},
|
|
|
|
{13, "2020-08-05 01:14:15", "L", "1"},
|
|
|
|
{14, "2021-08-05 01:14:15", "L", "0"},
|
|
|
|
{15, "2020-08-05 01:14:15", "G", "1"},
|
|
|
|
{16, "2020-08-05 13:14:15", "U", "1596604455"},
|
|
|
|
{17, "2020-08-05 13:14:15.999", "u", "999"},
|
|
|
|
{18, "2020-08-05 13:14:15", "w", "2"},
|
|
|
|
{19, "2020-08-05 13:14:15", "t", "31"},
|
|
|
|
{20, "2020-08-05 13:14:15", "z", "217"},
|
|
|
|
{21, "2020-08-05 13:14:15", "e", "PRC"},
|
|
|
|
{22, "2020-08-05 13:14:15", "Q", "3"},
|
|
|
|
{23, "2020-08-05 13:14:15", "C", "21"},
|
|
|
|
{24, "2020-08-05 13:14:15", "jS", "5th"},
|
|
|
|
{25, "2020-08-22 13:14:15", "jS", "22nd"},
|
|
|
|
{26, "2020-08-23 13:14:15", "jS", "23rd"},
|
|
|
|
{27, "2020-08-31 13:14:15", "jS", "31st"},
|
|
|
|
{28, "2020-08-31 13:14:15", "I\\t \\i\\s Y-m-d H:i:s", "It is 2020-08-31 13:14:15"},
|
|
|
|
{29, "2020-08-05 13:14:15", "l jS of F Y h:i:s A", "Wednesday 5th of August 2020 01:14:15 PM"},
|
|
|
|
}
|
2021-07-19 09:33:57 +08:00
|
|
|
|
2021-07-23 10:59:53 +08:00
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.Format(test.param), "Current test id is "+strconv.Itoa(test.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
c := Parse(test.input, PRC)
|
|
|
|
assert.Nil(c.Error)
|
|
|
|
assert.Equal(test.expected, c.ToFormatString(test.param), "Current test id is "+strconv.Itoa(test.id))
|
2021-07-19 09:33:57 +08:00
|
|
|
}
|
2021-02-18 14:32:31 +08:00
|
|
|
|
2021-07-19 09:33:57 +08:00
|
|
|
for _, test := range tests {
|
2021-07-23 10:59:53 +08:00
|
|
|
c := Parse(test.input, PRC)
|
2021-07-19 09:33:57 +08:00
|
|
|
assert.Nil(c.Error)
|
2021-07-23 10:59:53 +08:00
|
|
|
assert.Equal(test.expected, c.ToFormatString(test.param, PRC), "Current test id is "+strconv.Itoa(test.id))
|
2021-02-18 14:32:31 +08:00
|
|
|
}
|
|
|
|
}
|