1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
package common_test
import (
"testing"
"time"
"github.com/olebedev/when"
"github.com/olebedev/when/rules/common"
"github.com/stretchr/testify/require"
)
var null = time.Date(2016, time.July, 15, 0, 0, 0, 0, time.UTC)
// July 15 days offset from the begining of the year
const OFFSET = 197
type Fixture struct {
Text string
Index int
Phrase string
Diff time.Duration
}
func ApplyFixtures(t *testing.T, name string, w *when.Parser, fixt []Fixture) {
for i, f := range fixt {
res, err := w.Parse(f.Text, null)
require.Nil(t, err, "[%s] err #%d", name, i)
require.NotNil(t, res, "[%s] res #%d", name, i)
require.Equal(t, f.Index, res.Index, "[%s] index #%d", name, i)
require.Equal(t, f.Phrase, res.Text, "[%s] text #%d", name, i)
require.Equal(t, f.Diff, res.Time.Sub(null), "[%s] diff #%d", name, i)
}
}
func ApplyFixturesNil(t *testing.T, name string, w *when.Parser, fixt []Fixture) {
for i, f := range fixt {
res, err := w.Parse(f.Text, null)
require.Nil(t, err, "[%s] err #%d", name, i)
require.Nil(t, res, "[%s] res #%d", name, i)
}
}
func ApplyFixturesErr(t *testing.T, name string, w *when.Parser, fixt []Fixture) {
for i, f := range fixt {
_, err := w.Parse(f.Text, null)
require.NotNil(t, err, "[%s] err #%d", name, i)
require.Equal(t, f.Phrase, err.Error(), "[%s] err text #%d", name, i)
}
}
func TestAll(t *testing.T) {
w := when.New(nil)
w.Add(common.All...)
// complex cases
fixt := []Fixture{}
ApplyFixtures(t, "common.All...", w, fixt)
}
|