summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/legacy/util/format_date_test.go
blob: f7fa6177b2a7bc0290483b7e1b0e5374e0b7b004 (plain)
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
// Copyright (C) MongoDB, Inc. 2014-present.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

package util

import (
	"github.com/mongodb/mongo-tools/legacy/testtype"
	. "github.com/smartystreets/goconvey/convey"
	"testing"
)

func TestFormatDate(t *testing.T) {
	testtype.SkipUnlessTestType(t, testtype.UnitTestType)

	Convey("will take valid format 2006-01-02T15:04:05.000Z", t, func() {
		_, err := FormatDate("2014-01-02T15:04:05.000Z")
		So(err, ShouldBeNil)
	})

	Convey("will take valid format 2006-01-02T15:04:05Z", t, func() {
		_, err := FormatDate("2014-03-02T15:05:05Z")
		So(err, ShouldBeNil)
	})

	Convey("will take valid format 2006-01-02T15:04Z", t, func() {
		_, err := FormatDate("2014-04-02T15:04Z")
		So(err, ShouldBeNil)
	})

	Convey("will take valid format 2006-01-02T15:04-0700", t, func() {
		_, err := FormatDate("2014-04-02T15:04-0800")
		So(err, ShouldBeNil)
	})

	Convey("will take valid format 2006-01-02T15:04:05.000-0700", t, func() {
		_, err := FormatDate("2014-04-02T15:04:05.000-0600")
		So(err, ShouldBeNil)
	})

	Convey("will take valid format 2006-01-02T15:04:05-0700", t, func() {
		_, err := FormatDate("2014-04-02T15:04:05-0500")
		So(err, ShouldBeNil)
	})

	Convey("will return an error for an invalid format", t, func() {
		_, err := FormatDate("invalid string format")
		So(err, ShouldNotBeNil)
	})

}