mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 11:18:02 +08:00
255 lines
6.1 KiB
Go
255 lines
6.1 KiB
Go
// Copyright 2019 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
||
//
|
||
// This Source Code Form is subject to the terms of the MIT License.
|
||
// If a copy of the MIT was not distributed with this file,
|
||
// You can obtain one at https://github.com/gogf/gf.
|
||
|
||
package gtime_test
|
||
|
||
import (
|
||
"testing"
|
||
"time"
|
||
|
||
"github.com/gogf/gf/os/gtime"
|
||
"github.com/gogf/gf/test/gtest"
|
||
)
|
||
|
||
func Test_SetTimeZone(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
gtime.SetTimeZone("Asia/Shanghai")
|
||
t.Assert(time.Local.String(), "Asia/Shanghai")
|
||
})
|
||
}
|
||
|
||
func Test_Nanosecond(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
nanos := gtime.TimestampNano()
|
||
timeTemp := time.Unix(0, nanos)
|
||
t.Assert(nanos, timeTemp.UnixNano())
|
||
})
|
||
}
|
||
|
||
func Test_Microsecond(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
micros := gtime.TimestampMicro()
|
||
timeTemp := time.Unix(0, micros*1e3)
|
||
t.Assert(micros, timeTemp.UnixNano()/1e3)
|
||
})
|
||
}
|
||
|
||
func Test_Millisecond(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
millis := gtime.TimestampMilli()
|
||
timeTemp := time.Unix(0, millis*1e6)
|
||
t.Assert(millis, timeTemp.UnixNano()/1e6)
|
||
})
|
||
}
|
||
|
||
func Test_Second(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
s := gtime.Timestamp()
|
||
timeTemp := time.Unix(s, 0)
|
||
t.Assert(s, timeTemp.Unix())
|
||
})
|
||
}
|
||
|
||
func Test_Date(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
t.Assert(gtime.Date(), time.Now().Format("2006-01-02"))
|
||
})
|
||
}
|
||
|
||
func Test_Datetime(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
datetime := gtime.Datetime()
|
||
timeTemp, err := gtime.StrToTime(datetime, "Y-m-d H:i:s")
|
||
if err != nil {
|
||
t.Error("test fail")
|
||
}
|
||
t.Assert(datetime, timeTemp.Time.Format("2006-01-02 15:04:05"))
|
||
})
|
||
}
|
||
|
||
func Test_ISO8601(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
iso8601 := gtime.ISO8601()
|
||
t.Assert(iso8601, gtime.Now().Format("c"))
|
||
})
|
||
}
|
||
|
||
func Test_RFC822(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
rfc822 := gtime.RFC822()
|
||
t.Assert(rfc822, gtime.Now().Format("r"))
|
||
})
|
||
}
|
||
|
||
func Test_StrToTime(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
//正常日期列表
|
||
//正则的原因,日期"06.01.02","2006.01","2006..01"无法覆盖gtime.go的百分百
|
||
var testDatetimes = []string{
|
||
"2006-01-02 15:04:05",
|
||
"2006/01/02 15:04:05",
|
||
"2006.01.02 15:04:05.000",
|
||
"2006.01.02 - 15:04:05",
|
||
"2006.01.02 15:04:05 +0800 CST",
|
||
"2006-01-02T20:05:06+05:01:01",
|
||
"2006-01-02T14:03:04Z01:01:01",
|
||
"2006-01-02T15:04:05Z",
|
||
"02-jan-2006 15:04:05",
|
||
"02/jan/2006 15:04:05",
|
||
"02.jan.2006 15:04:05",
|
||
"02.jan.2006:15:04:05",
|
||
}
|
||
|
||
for _, item := range testDatetimes {
|
||
timeTemp, err := gtime.StrToTime(item)
|
||
if err != nil {
|
||
t.Error("test fail")
|
||
}
|
||
t.Assert(timeTemp.Time.Format("2006-01-02 15:04:05"), "2006-01-02 15:04:05")
|
||
}
|
||
|
||
//正常日期列表,时间00:00:00
|
||
var testDates = []string{
|
||
"2006.01.02",
|
||
"2006.01.02 00:00",
|
||
"2006.01.02 00:00:00.000",
|
||
}
|
||
|
||
for _, item := range testDates {
|
||
timeTemp, err := gtime.StrToTime(item)
|
||
if err != nil {
|
||
t.Error("test fail")
|
||
}
|
||
t.Assert(timeTemp.Time.Format("2006-01-02 15:04:05"), "2006-01-02 00:00:00")
|
||
}
|
||
|
||
//测试格式化formatToStdLayout
|
||
var testDateFormats = []string{
|
||
"Y-m-d H:i:s",
|
||
"\\T\\i\\m\\e Y-m-d H:i:s",
|
||
"Y-m-d H:i:s\\",
|
||
"Y-m-j G:i:s.u",
|
||
"Y-m-j G:i:su",
|
||
}
|
||
|
||
var testDateFormatsResult = []string{
|
||
"2007-01-02 15:04:05",
|
||
"Time 2007-01-02 15:04:05",
|
||
"2007-01-02 15:04:05",
|
||
"2007-01-02 15:04:05.000",
|
||
"2007-01-02 15:04:05.000",
|
||
}
|
||
|
||
for index, item := range testDateFormats {
|
||
timeTemp, err := gtime.StrToTime(testDateFormatsResult[index], item)
|
||
if err != nil {
|
||
t.Error("test fail")
|
||
}
|
||
t.Assert(timeTemp.Time.Format("2006-01-02 15:04:05.000"), "2007-01-02 15:04:05.000")
|
||
}
|
||
|
||
//异常日期列表
|
||
var testDatesFail = []string{
|
||
"2006.01",
|
||
"06..02",
|
||
"20060102",
|
||
}
|
||
|
||
for _, item := range testDatesFail {
|
||
_, err := gtime.StrToTime(item)
|
||
if err == nil {
|
||
t.Error("test fail")
|
||
}
|
||
}
|
||
|
||
//test err
|
||
_, err := gtime.StrToTime("2006-01-02 15:04:05", "aabbccdd")
|
||
if err == nil {
|
||
t.Error("test fail")
|
||
}
|
||
})
|
||
}
|
||
|
||
func Test_ConvertZone(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
//现行时间
|
||
nowUTC := time.Now().UTC()
|
||
testZone := "America/Los_Angeles"
|
||
|
||
//转换为洛杉矶时间
|
||
t1, err := gtime.ConvertZone(nowUTC.Format("2006-01-02 15:04:05"), testZone, "")
|
||
if err != nil {
|
||
t.Error("test fail")
|
||
}
|
||
|
||
//使用洛杉矶时区解析上面转换后的时间
|
||
laStr := t1.Time.Format("2006-01-02 15:04:05")
|
||
loc, err := time.LoadLocation(testZone)
|
||
t2, err := time.ParseInLocation("2006-01-02 15:04:05", laStr, loc)
|
||
|
||
//判断是否与现行时间匹配
|
||
t.Assert(t2.UTC().Unix(), nowUTC.Unix())
|
||
|
||
})
|
||
|
||
//test err
|
||
gtest.C(t, func(t *gtest.T) {
|
||
//现行时间
|
||
nowUTC := time.Now().UTC()
|
||
//t.Log(nowUTC.Unix())
|
||
testZone := "errZone"
|
||
|
||
//错误时间输入
|
||
_, err := gtime.ConvertZone(nowUTC.Format("06..02 15:04:05"), testZone, "")
|
||
if err == nil {
|
||
t.Error("test fail")
|
||
}
|
||
//错误时区输入
|
||
_, err = gtime.ConvertZone(nowUTC.Format("2006-01-02 15:04:05"), testZone, "")
|
||
if err == nil {
|
||
t.Error("test fail")
|
||
}
|
||
//错误时区输入
|
||
_, err = gtime.ConvertZone(nowUTC.Format("2006-01-02 15:04:05"), testZone, testZone)
|
||
if err == nil {
|
||
t.Error("test fail")
|
||
}
|
||
})
|
||
}
|
||
|
||
func Test_StrToTimeFormat(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
|
||
})
|
||
}
|
||
|
||
func Test_ParseTimeFromContent(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
timeTemp := gtime.ParseTimeFromContent("我是中文2006-01-02 15:04:05我也是中文", "Y-m-d H:i:s")
|
||
t.Assert(timeTemp.Time.Format("2006-01-02 15:04:05"), "2006-01-02 15:04:05")
|
||
|
||
timeTemp1 := gtime.ParseTimeFromContent("我是中文2006-01-02 15:04:05我也是中文")
|
||
t.Assert(timeTemp1.Time.Format("2006-01-02 15:04:05"), "2006-01-02 15:04:05")
|
||
|
||
timeTemp2 := gtime.ParseTimeFromContent("我是中文02.jan.2006 15:04:05我也是中文")
|
||
t.Assert(timeTemp2.Time.Format("2006-01-02 15:04:05"), "2006-01-02 15:04:05")
|
||
|
||
//test err
|
||
timeTempErr := gtime.ParseTimeFromContent("我是中文", "Y-m-d H:i:s")
|
||
if timeTempErr != nil {
|
||
t.Error("test fail")
|
||
}
|
||
})
|
||
}
|
||
|
||
func Test_FuncCost(t *testing.T) {
|
||
gtest.C(t, func(t *gtest.T) {
|
||
gtime.FuncCost(func() {
|
||
|
||
})
|
||
})
|
||
}
|