-
Notifications
You must be signed in to change notification settings - Fork 0
/
payload_test.go
122 lines (88 loc) · 2.8 KB
/
payload_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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
Copyright (C) 2017 The BlameWarrior Authors.
This file is a part of BlameWarrior service.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package hooks_test
import (
"fmt"
"log"
"os"
"testing"
"github.com/blamewarrior/hooks"
"github.com/go-redis/redis"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestSavePayload(t *testing.T) {
redisClient, teardown := setup()
defer teardown()
payloadRepo := hooks.NewPayloadRepository(redisClient)
testPayload := "test_payload"
err := payloadRepo.Save(testPayload)
require.NoError(t, err)
val, err := redisClient.LRange("hooks", 0, 0).Result()
require.NoError(t, err)
require.Equal(t, 1, len(val))
assert.Equal(t, testPayload, val[0])
}
func TestListPayload(t *testing.T) {
redisClient, teardown := setup()
defer teardown()
testPayload := "test_payload"
err := createTestPayload(redisClient, testPayload)
require.NoError(t, err)
payloadRepo := hooks.NewPayloadRepository(redisClient)
list, err := payloadRepo.List(int64(2))
require.NoError(t, err)
require.Equal(t, 1, len(list))
require.Equal(t, testPayload, list[0])
}
func TestDeletePayload(t *testing.T) {
redisClient, teardown := setup()
defer teardown()
testPayload := "test_payload"
err := createTestPayload(redisClient, testPayload)
require.NoError(t, err)
payloadRepo := hooks.NewPayloadRepository(redisClient)
err = payloadRepo.Delete(testPayload)
require.NoError(t, err)
val, err := redisClient.LRange("hooks", 0, 0).Result()
require.NoError(t, err)
assert.Empty(t, val)
}
func createTestPayload(client *redis.Client, testPayload string) error {
return client.LPush("hooks", testPayload).Err()
}
func setup() (client *redis.Client, teardownFn func()) {
host := os.Getenv("DB_HOST")
port := os.Getenv("DB_PORT")
if host == "" {
host = "localhost"
}
if port == "" {
port = "6379"
}
opts := &redis.Options{
Addr: fmt.Sprintf("%s:%s", host, port),
Password: "", // no password set
DB: 0, // use default DB
}
client = redis.NewClient(opts)
err := client.Ping().Err()
if err != nil {
log.Fatalf("failed to establish connection with test redis by addr: %s:%s", host, port)
}
return client, func() {
client.FlushDB()
}
}