-
Notifications
You must be signed in to change notification settings - Fork 5
/
route_test.go
83 lines (69 loc) · 2.89 KB
/
route_test.go
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package konturtransferbot
import (
"testing"
"time"
"github.com/ghodss/yaml"
. "github.com/smartystreets/goconvey/convey"
)
func TestRoute(t *testing.T) {
Convey("Given route with several departures", t, func() {
r := Route{
Departure{
Time: time.Date(0, 1, 1, 10, 30, 0, 0, &time.Location{}),
Comment: "дежурный",
},
Departure{Time: time.Date(0, 1, 1, 11, 0, 0, 0, &time.Location{})},
Departure{Time: time.Date(0, 1, 1, 12, 30, 0, 0, &time.Location{})},
}
Convey("Its string representation should contain all of them", func() {
So(r.String(), ShouldEqual, "10:30 дежурный\n11:00\n12:30\n")
})
Convey("Divider should be placed correctly inside a schedule", func() {
now := time.Date(0, 1, 1, 10, 45, 0, 0, &time.Location{})
So(r.StringWithDivider(now), ShouldEqual, "10:30 дежурный\n——— сейчас 10:45 ———\n11:00\n12:30\n")
})
Convey("Divider should be placed before departure time if current time is equal to this departure time", func() {
now := time.Date(0, 1, 1, 11, 0, 0, 0, &time.Location{})
So(r.StringWithDivider(now), ShouldEqual, "10:30 дежурный\n——— сейчас 11:00 ———\n11:00\n12:30\n")
})
Convey("Divider calculation should not consider date, only time", func() {
now := time.Date(2017, 5, 1, 10, 45, 0, 0, &time.Location{})
So(r.StringWithDivider(now), ShouldEqual, "10:30 дежурный\n——— сейчас 10:45 ———\n11:00\n12:30\n")
})
Convey("No divider should be placed before first departure", func() {
now := time.Date(0, 1, 1, 9, 45, 0, 0, &time.Location{})
So(r.StringWithDivider(now), ShouldEqual, "10:30 дежурный\n11:00\n12:30\n")
})
Convey("No divider should be placed after last departure", func() {
now := time.Date(0, 1, 1, 19, 45, 0, 0, &time.Location{})
So(r.StringWithDivider(now), ShouldEqual, "10:30 дежурный\n11:00\n12:30\n")
})
})
Convey("Given string representation of a route", t, func() {
rYaml := []byte("- 7:30 цветной маршрут\n- 11:00\n- 12:55")
Convey("It should parse correctly", func() {
r := Route{}
err := yaml.Unmarshal(rYaml, &r)
So(err, ShouldBeNil)
Convey("Its numerical representation should be correct and in the same order", func() {
So(r[0].Hour(), ShouldEqual, 7)
So(r[0].Minute(), ShouldEqual, 30)
So(r[0].Comment, ShouldEqual, "цветной маршрут")
So(r[1].Hour(), ShouldEqual, 11)
So(r[1].Minute(), ShouldEqual, 0)
So(r[1].Comment, ShouldBeEmpty)
So(r[2].Hour(), ShouldEqual, 12)
So(r[2].Minute(), ShouldEqual, 55)
So(r[2].Comment, ShouldBeEmpty)
})
})
})
Convey("Given incorrect string representation of a route", t, func() {
rYaml := []byte("- NNNNNOOOOOOOOOOO\n- 11:00\n- 12:55")
Convey("It should not parse", func() {
r := Route{}
err := yaml.Unmarshal(rYaml, &r)
So(err, ShouldNotBeNil)
})
})
}