/service/handlers_test.go

https://bitbucket.org/rick-chang/user.service · Go · 209 lines · 180 code · 21 blank · 8 comment · 9 complexity · f33ada746ab8daa48d0db41f2109d7df MD5 · raw file

  1. package service
  2. import (
  3. "encoding/json"
  4. "io/ioutil"
  5. "math/rand"
  6. "net/http"
  7. "net/http/httptest"
  8. "net/url"
  9. "strings"
  10. "testing"
  11. "user.server/models"
  12. "bytes"
  13. "time"
  14. . "github.com/smartystreets/goconvey/convey"
  15. "github.com/tidwall/gjson"
  16. )
  17. func TestGetAllUsers(t *testing.T) {
  18. req := httptest.NewRequest(http.MethodGet, "/user/all", nil)
  19. rw := httptest.NewRecorder()
  20. NewRouter().ServeHTTP(rw, req)
  21. b, err := ioutil.ReadAll(rw.Body)
  22. if err != nil {
  23. t.Fatal("read response body failed")
  24. }
  25. code := gjson.Get(string(b), "code").Int()
  26. if code != 0 {
  27. t.Fail()
  28. }
  29. }
  30. func TestGetOneUser(t *testing.T) {
  31. // 测试正常响应
  32. Convey("Given a http request for /user/1", t, func() {
  33. req := httptest.NewRequest(http.MethodGet, "/user/1", nil)
  34. resp := httptest.NewRecorder()
  35. Convey("When request is handled by router", func() {
  36. NewRouter().ServeHTTP(resp, req)
  37. Convey("The result code should be 0", func() {
  38. b, _ := ioutil.ReadAll(resp.Body)
  39. code := gjson.Get(string(b), "code").Int()
  40. So(code, ShouldEqual, SuccessResponseCode)
  41. })
  42. })
  43. })
  44. // 测试错误响应
  45. Convey("Given a http request for /user/0", t, func() {
  46. req := httptest.NewRequest(http.MethodGet, "/user/0", nil)
  47. resp := httptest.NewRecorder()
  48. Convey("When request is handled by router", func() {
  49. NewRouter().ServeHTTP(resp, req)
  50. Convey("The result code should be 1000", func() {
  51. b, _ := ioutil.ReadAll(resp.Body)
  52. code := gjson.Get(string(b), "code").Int()
  53. So(code, ShouldEqual, ErrorResponseCode)
  54. })
  55. })
  56. })
  57. }
  58. func TestAddUser(t *testing.T) {
  59. // username 为空的情况
  60. Convey("Given a http request for /user/add with empty username", t, func() {
  61. form := make(url.Values)
  62. form.Add("name", "")
  63. req := httptest.NewRequest(http.MethodPost, "/user/add", strings.NewReader(form.Encode()))
  64. req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
  65. resp := httptest.NewRecorder()
  66. Convey("When the request handled by router", func() {
  67. NewRouter().ServeHTTP(resp, req)
  68. Convey("The result code should be 1000", func() {
  69. b, _ := ioutil.ReadAll(resp.Body)
  70. code := gjson.Get(string(b), "code").Int()
  71. So(code, ShouldEqual, ErrorResponseCode)
  72. })
  73. })
  74. })
  75. // password 为空的情况
  76. Convey("Given a http request for /user/add with empty password", t, func() {
  77. form := make(url.Values)
  78. form.Add("name", "rand_name"+randomString(3))
  79. form.Add("password", "")
  80. req := httptest.NewRequest(http.MethodPost, "/user/add", strings.NewReader(form.Encode()))
  81. req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
  82. resp := httptest.NewRecorder()
  83. Convey("When the request handled by router", func() {
  84. NewRouter().ServeHTTP(resp, req)
  85. Convey("The result code should be 1000", func() {
  86. b, _ := ioutil.ReadAll(resp.Body)
  87. code := gjson.Get(string(b), "code").Int()
  88. So(code, ShouldEqual, ErrorResponseCode)
  89. })
  90. })
  91. })
  92. // status错误的情况
  93. Convey("Given a http request for /user/add with invalid status", t, func() {
  94. form := make(url.Values)
  95. form.Add("name", "rand_name"+randomString(3))
  96. form.Add("password", "111111")
  97. form.Add("status", "2")
  98. req := httptest.NewRequest(http.MethodPost, "/user/add", strings.NewReader(form.Encode()))
  99. req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
  100. resp := httptest.NewRecorder()
  101. Convey("When the request handled by router", func() {
  102. NewRouter().ServeHTTP(resp, req)
  103. Convey("The result code should be 1000", func() {
  104. b, _ := ioutil.ReadAll(resp.Body)
  105. code := gjson.Get(string(b), "code").Int()
  106. So(code, ShouldEqual, ErrorResponseCode)
  107. })
  108. })
  109. })
  110. // 正常创建
  111. Convey("Given a http request for /user/add", t, func() {
  112. form := make(url.Values)
  113. form.Add("name", "rand_name_"+time.Now().Format("20060102150405"))
  114. form.Add("password", "tttttt")
  115. form.Add("status", "1")
  116. req := httptest.NewRequest(http.MethodPost, "/user/add", strings.NewReader(form.Encode()))
  117. req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
  118. resp := httptest.NewRecorder()
  119. Convey("When the request is handled by router", func() {
  120. NewRouter().ServeHTTP(resp, req)
  121. Convey("The result code should be 0", func() {
  122. b, _ := ioutil.ReadAll(resp.Body)
  123. code := gjson.Get(string(b), "code").Int()
  124. So(code, ShouldEqual, SuccessResponseCode)
  125. })
  126. })
  127. })
  128. }
  129. func TestDeleteUser(t *testing.T) {
  130. Convey("Given a http request for /user/delete/1000", t, func() {
  131. req := httptest.NewRequest(http.MethodDelete, "/user/delete/1000", nil)
  132. resp := httptest.NewRecorder()
  133. Convey("When request handled by router", func() {
  134. NewRouter().ServeHTTP(resp, req)
  135. Convey("The result code should be 0", func() {
  136. b, _ := ioutil.ReadAll(resp.Body)
  137. code := gjson.Get(string(b), "code").Int()
  138. So(code, ShouldEqual, SuccessResponseCode)
  139. })
  140. })
  141. })
  142. }
  143. func randomString(n int) string {
  144. letterBytes := "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  145. b := make([]byte, n)
  146. for i := range b {
  147. b[i] = letterBytes[rand.Intn(len(letterBytes))]
  148. }
  149. return string(b)
  150. }
  151. func TestUpdateUser(t *testing.T) {
  152. // test empty username
  153. Convey("Given a http for /user/update", t, func() {
  154. user := models.User{Id: 1, Name: "", Password: "nnnnn", Status: 1}
  155. data, err := json.Marshal(user)
  156. if err != nil {
  157. t.Fatal(err)
  158. }
  159. req, _ := http.NewRequest(http.MethodPost, "/user/update", bytes.NewReader(data))
  160. resp := httptest.NewRecorder()
  161. Convey("When request handled by router", func() {
  162. NewRouter().ServeHTTP(resp, req)
  163. Convey("result code should be 1000", func() {
  164. b, _ := ioutil.ReadAll(resp.Body)
  165. code := gjson.Get(string(b), "code").Int()
  166. So(code, ShouldEqual, ErrorResponseCode)
  167. })
  168. })
  169. })
  170. // normal test
  171. Convey("Given a http request for /user/update", t, func() {
  172. user := models.User{Id: 1, Name: "tomN...", Password: "nnnnn", Status: 1}
  173. data, err := json.Marshal(user)
  174. if err != nil {
  175. t.Fatal(err)
  176. }
  177. req, _ := http.NewRequest(http.MethodPost, "/user/update", bytes.NewReader(data))
  178. resp := httptest.NewRecorder()
  179. Convey("When request handled by router", func() {
  180. NewRouter().ServeHTTP(resp, req)
  181. Convey("result code should be 0", func() {
  182. b, _ := ioutil.ReadAll(resp.Body)
  183. code := gjson.Get(string(b), "code").Int()
  184. So(code, ShouldEqual, SuccessResponseCode)
  185. })
  186. })
  187. })
  188. }