-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmonitor_test.go
102 lines (85 loc) · 1.98 KB
/
monitor_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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package monitor
import (
"github.com/jinzhu/gorm"
"github.com/labstack/gommon/log"
"github.com/smf8/http-monitor/db"
"github.com/smf8/http-monitor/model"
"github.com/smf8/http-monitor/store"
"github.com/stretchr/testify/assert"
"os"
"testing"
)
var mnt *Monitor
var st *store.Store
var d *gorm.DB
func TestMain(m *testing.M) {
setupDB()
exitCode := m.Run()
tearDown()
os.Exit(exitCode)
}
func setupDB() {
d = db.Setup("test-monitor")
st = store.NewStore(d)
user, _ := model.NewUser("foo", "bar")
_ = st.AddUser(user)
mnt = NewMonitor(st, nil, 20)
}
func tearDown() {
// removing file and closing database after all tests are done
if err := d.Close(); err != nil {
log.Error(err)
}
if err := os.Remove("test-monitor.db"); err != nil {
log.Error(err)
}
}
func TestMonitor_Do(t *testing.T) {
tearDown()
setupDB()
urls := []model.URL{
{UserId: 1, Address: "http://google.com", Threshold: 10, FailedTimes: 0},
{UserId: 2, Address: "http://google.com", Threshold: 10, FailedTimes: 0},
}
st.AddURL(&urls[0])
st.AddURL(&urls[1])
mnt.AddURL(urls)
mnt.Do()
req, _ := st.GetRequestsByUrl(urls[0].ID)
assert.Len(t, req, 1)
}
func TestMonitor_DoURL(t *testing.T) {
tearDown()
setupDB()
url, _ := model.NewURL(1, "http://128.0.0.1", 5)
st.AddURL(url)
mnt.DoURL(*url)
req, _ := st.GetRequestsByUrl(url.ID)
assert.Len(t, req, 1)
assert.Equal(t, req[0].Result, 400)
url, err := st.GetURLById(1)
assert.NoError(t, err)
assert.Equal(t, url.FailedTimes, 1)
}
func TestMonitor_Cancel(t *testing.T) {
tearDown()
setupDB()
mnt.Do()
res := mnt.Cancel()
assert.NoError(t, res)
}
func TestMonitor_RemoveURL(t *testing.T) {
urls := []model.URL{
{UserId: 1, Address: "http://google.com", Threshold: 10, FailedTimes: 0},
{UserId: 2, Address: "http://google.com", Threshold: 10, FailedTimes: 0},
}
urls[0].ID = 1
urls[1].ID = 2
mnt.AddURL(urls)
err := mnt.RemoveURL(urls[0])
assert.NoError(t, err)
u := model.URL{}
u.ID = 4
err = mnt.RemoveURL(u)
assert.Error(t, err)
}