create_task_test.go
3.5 KB
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
package task
import (
"github.com/go-pg/pg"
"net/http"
"time"
"github.com/gavv/httpexpect"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
pG "gitlab.fjmaimaimai.com/linmadan/mmm-worth/pkg/infrastructure/pg"
)
var _ = Describe("创建新任务", func() {
BeforeEach(func() {
_, err := pG.DB.QueryOne(
pg.Scan(),
"INSERT INTO employees (id, uid, employee_name, employee_account, su_money) VALUES (?, ?, ?, ?, ?)",
1, 2499036607974745088, "testEmployeeName", "testEmployeeAccount", 0)
Expect(err).NotTo(HaveOccurred())
})
Describe("提交数据创建新任务", func() {
Context("提交正确的抢单类型任务数据", func() {
It("返回抢单类型任务数据", func() {
httpExpect := httpexpect.New(GinkgoT(), server.URL)
body := map[string]interface{}{
"companyId": 101,
"taskName": "抢单任务",
"taskType": 1,
"sponsor": 2499036607974745088,
"referenceResourceType": 1,
"referenceResourceItems": []map[string]interface{}{
{"serialNumber": 1, "title": "问题标题1"},
{"serialNumber": 2, "title": "问题标题2"},
{"serialNumber": 3, "title": "问题标题3"},
},
"customerValue": []string{
"口味",
"色泽",
"商务服务",
},
"taskNature": "线",
"suMoney": 1000.00,
"acceptanceStandard": "验收标准",
"taskDescription": "任务描述",
"taskPictureUrls": []string{
"url-1",
"url-2",
"url-3",
},
"isRewardTake": false,
}
httpExpect.POST("/tasks/").
WithJSON(body).
Expect().
Status(http.StatusOK).
JSON().
Object().
ContainsKey("code").ValueEqual("code", 0).
ContainsKey("msg").ValueEqual("msg", "ok").
ContainsKey("data").Value("data").Object().
ContainsKey("taskId").ValueNotEqual("taskId", BeZero())
})
})
Context("提交正确的竞标类型任务数据", func() {
It("返回竞标类型任务数据", func() {
httpExpect := httpexpect.New(GinkgoT(), server.URL)
dayAfter, _ := time.ParseDuration("72h")
body := map[string]interface{}{
"companyId": 101,
"taskName": "竞标任务",
"taskType": 2,
"sponsor": 2499036607974745088,
"referenceResourceType": 2,
"referenceResourceItems": []map[string]interface{}{
{"serialNumber": 1, "title": "机会标题1"},
{"serialNumber": 2, "title": "机会标题2"},
{"serialNumber": 3, "title": "机会标题3"},
},
"customerValue": []string{
"口味",
"色泽",
"商务服务",
},
"taskNature": "线",
"suMoney": 1000.00,
"acceptanceStandard": "验收标准",
"taskDescription": "任务描述",
"taskPictureUrls": []string{
"url-1",
"url-2",
"url-3",
},
"isRewardTake": true,
"bidStartTime": time.Now(),
"bidEndTime": time.Now().Add(dayAfter),
}
httpExpect.POST("/tasks/").
WithJSON(body).
Expect().
Status(http.StatusOK).
JSON().
Object().
ContainsKey("code").ValueEqual("code", 0).
ContainsKey("msg").ValueEqual("msg", "ok").
ContainsKey("data").Value("data").Object().
ContainsKey("taskId").ValueNotEqual("taskId", BeZero())
})
})
})
AfterEach(func() {
_, err := pG.DB.Exec("DELETE FROM tasks WHERE true")
Expect(err).NotTo(HaveOccurred())
_, err1 := pG.DB.Exec("DELETE FROM employees WHERE true")
Expect(err1).NotTo(HaveOccurred())
})
})