-
Notifications
You must be signed in to change notification settings - Fork 1
/
main_test.go
202 lines (188 loc) · 5.77 KB
/
main_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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
package main
import (
"bytes"
"encoding/json"
"fmt"
"github.com/labstack/echo"
"github.com/stretchr/testify/require"
"io"
"io/ioutil"
"mime/multipart"
"net/http"
"net/http/httptest"
"net/url"
"os"
"strconv"
"testing"
)
type request struct {
fileName string
template string
topic string
name string
job string
eventTime string
outputImage string
twitterName string
githubName string
}
func initTestData() []request {
requests := make([]request, 0)
requests = append(requests, request{
fileName: "avatar5.png",
template: "1",
topic: "Go ile Protocol Buffer Kullanımı (Google Runtime)",
name: "Mert Simsek",
job: "Software Developer",
eventTime: "12 Ağustos Perşembe Saat 21:00",
outputImage: "mert-simsek-template1.png",
twitterName: "mertingen",
githubName: "mertingen",
})
requests = append(requests, request{
fileName: "avatar4.png",
template: "1",
topic: "Go ile Http Client Paketi Geliştirme ve Test Süreçleri\n",
name: "Erhan Yakut",
job: "Senior Software Architect at Binalyze",
eventTime: "30 Temmuz Cuma 21:00",
outputImage: "erkan-template1.png",
})
requests = append(requests, request{
fileName: "avatar4.png",
template: "2",
topic: "Go ile Http Client Paketi Geliştirme ve Test Süreçleri\n",
name: "Erhan Yakut",
job: "Senior Software Architect at Binalyze",
eventTime: "30 Temmuz Cuma 21:00",
outputImage: "erkan-template2.png",
twitterName: "yakuter",
})
requests = append(requests, request{
fileName: "avatar3.png",
template: "1",
topic: "Go Compilerına Tilde (~) Operatorü Eklemek",
name: "Furkan Türkal",
job: "Backend Developer at Trendyol",
eventTime: "4 Haziran Cuma 21:00",
outputImage: "furkan-template1.png",
})
requests = append(requests, request{
fileName: "avatar3.png",
template: "2",
topic: "Go Compilerına Tilde (~) Operatorü Eklemek",
name: "Furkan Türkal",
job: "Backend Developer at Trendyol",
eventTime: "4 Haziran Cuma 21:00",
outputImage: "furkan-template2.png",
})
requests = append(requests, request{
fileName: "avatar.jpeg",
template: "1",
topic: "Go+Vue.js ile Resim Hatırlatma Uygulaması Yapmak",
name: "Abdulsamet İleri",
job: "Full Stack Developer at Modanisa",
eventTime: "17 Haziran Perşembe 21:00",
outputImage: "abdulsamet-template1.png",
})
requests = append(requests, request{
fileName: "avatar.jpeg",
template: "2",
topic: "Go+Vue.js ile Resim Hatırlatma Uygulaması Yapmak",
name: "Abdulsamet İleri",
job: "Full Stack Developer at Modanisa",
eventTime: "17 Haziran Perşembe 21:00",
outputImage: "abdulsamet-template2.png",
})
requests = append(requests, request{
fileName: "avatar2.jpeg",
template: "1",
topic: "Go İle Network Programlama",
name: "Oğuzhan Yılmaz",
job: "CTO at Masomo Games",
eventTime: "26 Haziran Cumartesi 21:00",
outputImage: "oguzhan-template1.png",
})
requests = append(requests, request{
fileName: "avatar2.jpeg",
template: "2",
topic: "Go İle Network Programlama",
name: "Oğuzhan Yılmaz",
job: "CTO at Masomo Games",
eventTime: "26 Haziran Cumartesi 21:00",
outputImage: "oguzhan-template2.png",
})
return requests
}
func Test_CreateCoverImage(t *testing.T) {
t.Run("When avatar is not specified", func(t *testing.T) {
res, req := createHttpReq(http.MethodGet, "/api/v1/categories", nil)
e := echo.New()
echoTextContext := e.NewContext(req, res)
err := createCoverImage(echoTextContext)
require.NoError(t, err)
var mfc map[string]interface{}
errJson := json.Unmarshal(res.Body.Bytes(), &mfc)
require.NoError(t, errJson)
require.Equal(t, "request Content-Type isn't multipart/form-data", mfc["ErrorString"])
})
t.Run("All event template samples are generated successfully?", func(t *testing.T) {
for _, r := range initTestData() {
body, contentType := fileUploadRequest(r.fileName)
res, req := createHttpReq(http.MethodPost, "/create", body)
req.Header.Add("Content-Type", contentType)
req.Form = url.Values{}
req.Form.Set("template", r.template)
req.Form.Set("topic", r.topic)
req.Form.Set("name", r.name)
req.Form.Set("job", r.job)
req.Form.Set("eventTime", r.eventTime)
req.Form.Set("putTwitterInfo", strconv.FormatBool(r.twitterName != ""))
req.Form.Set("twitterName", r.twitterName)
req.Form.Set("putGithubInfo", strconv.FormatBool(r.githubName != ""))
req.Form.Set("githubName", r.githubName)
e := echo.New()
echoTextContext := e.NewContext(req, res)
templateMap = initTemplateMap()
templateToProps = initializeTemplateToProps()
err := createCoverImage(echoTextContext)
require.NoError(t, err)
err = ioutil.WriteFile(
fmt.Sprintf("output/%s", r.outputImage),
res.Body.Bytes(),
0777,
)
require.NoError(t, err)
}
})
}
func createHttpReq(method string, endpoint string, body *bytes.Buffer) (w *httptest.ResponseRecorder, req *http.Request) {
if body == nil {
body = bytes.NewBuffer(make([]byte, 512))
}
req = httptest.NewRequest(method, endpoint, body)
rec := httptest.NewRecorder()
return rec, req
}
func fileUploadRequest(fileName string) (body *bytes.Buffer, contentType string) {
file, err := os.Open(fileName)
if err != nil {
fmt.Println(err)
}
defer file.Close()
body = new(bytes.Buffer)
writer := multipart.NewWriter(body)
part, err := writer.CreateFormFile("avatar", "avatar")
if err != nil {
fmt.Println(err)
}
_, err = io.Copy(part, file)
if err != nil {
fmt.Println(err)
}
err = writer.Close()
if err != nil {
fmt.Println(err)
}
return body, writer.FormDataContentType()
}