mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
66 lines
1.3 KiB
Go
66 lines
1.3 KiB
Go
package datetime_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
type testCase struct {
|
|
Name string
|
|
Expected core.Value
|
|
Args []core.Value
|
|
ShouldErr bool
|
|
}
|
|
|
|
func (tc *testCase) Do(t *testing.T, fn core.Function) {
|
|
Convey(tc.Name, t, func() {
|
|
expected := tc.Expected
|
|
|
|
actual, err := fn(context.Background(), tc.Args...)
|
|
|
|
if tc.ShouldErr {
|
|
So(err, ShouldBeError)
|
|
expected = values.None
|
|
} else {
|
|
So(err, ShouldBeNil)
|
|
}
|
|
|
|
So(actual.Type(), ShouldEqual, expected.Type())
|
|
So(actual.Compare(expected), ShouldEqual, 0)
|
|
})
|
|
}
|
|
|
|
func mustDefaultLayoutDt(timeString string) values.DateTime {
|
|
dt, err := defaultLayoutDt(timeString)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return dt
|
|
}
|
|
|
|
func mustLayoutDt(layout, value string) values.DateTime {
|
|
dt, err := layoutDt(layout, value)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return dt
|
|
}
|
|
|
|
func defaultLayoutDt(timeString string) (values.DateTime, error) {
|
|
return layoutDt(values.DefaultTimeLayout, timeString)
|
|
}
|
|
|
|
func layoutDt(layout, value string) (values.DateTime, error) {
|
|
t, err := time.Parse(layout, value)
|
|
if err != nil {
|
|
return values.DateTime{}, err
|
|
}
|
|
return values.NewDateTime(t), nil
|
|
}
|