-
Notifications
You must be signed in to change notification settings - Fork 5
/
api_test.go
61 lines (53 loc) · 1.11 KB
/
api_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
package main
import (
"testing"
"github.com/verdverm/frisby"
)
func init() {
frisby.Global.PrintProgressDot = false
}
func Test_ListPosts(*testing.T) {
frisby.Create("Get Posts list").
Get("http://localhost:8000/posts").
Send().
ExpectStatus(200).
PrintBody()
}
func Test_ListOnePosts(*testing.T) {
frisby.Create("Get Posts 1").
Get("http://localhost:8000/posts/1").
Send().
ExpectStatus(200).
PrintBody()
}
func Test_AddPosts(*testing.T) {
frisby.Create("Add Post").
Post("http://localhost:8000/posts").
SetJson(map[string]string{
"columnone": "test1",
"columntwo": "test2",
"columnthree": "test3",
}).
Send().
ExpectStatus(200).
PrintBody()
}
func Test_UpdatePosts(*testing.T) {
frisby.Create("Update Post").
Put("http://localhost:8000/posts/1").
SetJson(map[string]string{
"columnone": "updated1",
"columntwo": "updated2",
"columnthree": "updated3",
}).
Send().
ExpectStatus(200).
PrintBody()
}
func Test_DeletePosts(*testing.T) {
frisby.Create("Update Post").
Delete("http://localhost:8000/posts/4").
Send().
ExpectStatus(200).
PrintBody()
}