/vendor/github.com/Azure/go-autorest/autorest/client_test.go

https://bitbucket.org/afawkes/acs-engine · Go · 342 lines · 276 code · 66 blank · 0 comment · 45 complexity · 7dac940777eb989d0946fd40f17b585e MD5 · raw file

  1. package autorest
  2. import (
  3. "bytes"
  4. "fmt"
  5. "io/ioutil"
  6. "log"
  7. "math/rand"
  8. "net/http"
  9. "reflect"
  10. "testing"
  11. "time"
  12. "github.com/Azure/go-autorest/autorest/mocks"
  13. )
  14. func TestLoggingInspectorWithInspection(t *testing.T) {
  15. b := bytes.Buffer{}
  16. c := Client{}
  17. li := LoggingInspector{Logger: log.New(&b, "", 0)}
  18. c.RequestInspector = li.WithInspection()
  19. Prepare(mocks.NewRequestWithContent("Content"),
  20. c.WithInspection())
  21. if len(b.String()) <= 0 {
  22. t.Fatal("autorest: LoggingInspector#WithInspection did not record Request to the log")
  23. }
  24. }
  25. func TestLoggingInspectorWithInspectionEmitsErrors(t *testing.T) {
  26. b := bytes.Buffer{}
  27. c := Client{}
  28. r := mocks.NewRequestWithContent("Content")
  29. li := LoggingInspector{Logger: log.New(&b, "", 0)}
  30. c.RequestInspector = li.WithInspection()
  31. if _, err := Prepare(r,
  32. c.WithInspection()); err != nil {
  33. t.Error(err)
  34. }
  35. if len(b.String()) <= 0 {
  36. t.Fatal("autorest: LoggingInspector#WithInspection did not record Request to the log")
  37. }
  38. }
  39. func TestLoggingInspectorWithInspectionRestoresBody(t *testing.T) {
  40. b := bytes.Buffer{}
  41. c := Client{}
  42. r := mocks.NewRequestWithContent("Content")
  43. li := LoggingInspector{Logger: log.New(&b, "", 0)}
  44. c.RequestInspector = li.WithInspection()
  45. Prepare(r,
  46. c.WithInspection())
  47. s, _ := ioutil.ReadAll(r.Body)
  48. if len(s) <= 0 {
  49. t.Fatal("autorest: LoggingInspector#WithInspection did not restore the Request body")
  50. }
  51. }
  52. func TestLoggingInspectorByInspecting(t *testing.T) {
  53. b := bytes.Buffer{}
  54. c := Client{}
  55. li := LoggingInspector{Logger: log.New(&b, "", 0)}
  56. c.ResponseInspector = li.ByInspecting()
  57. Respond(mocks.NewResponseWithContent("Content"),
  58. c.ByInspecting())
  59. if len(b.String()) <= 0 {
  60. t.Fatal("autorest: LoggingInspector#ByInspection did not record Response to the log")
  61. }
  62. }
  63. func TestLoggingInspectorByInspectingEmitsErrors(t *testing.T) {
  64. b := bytes.Buffer{}
  65. c := Client{}
  66. r := mocks.NewResponseWithContent("Content")
  67. li := LoggingInspector{Logger: log.New(&b, "", 0)}
  68. c.ResponseInspector = li.ByInspecting()
  69. if err := Respond(r,
  70. c.ByInspecting()); err != nil {
  71. t.Fatal(err)
  72. }
  73. if len(b.String()) <= 0 {
  74. t.Fatal("autorest: LoggingInspector#ByInspection did not record Response to the log")
  75. }
  76. }
  77. func TestLoggingInspectorByInspectingRestoresBody(t *testing.T) {
  78. b := bytes.Buffer{}
  79. c := Client{}
  80. r := mocks.NewResponseWithContent("Content")
  81. li := LoggingInspector{Logger: log.New(&b, "", 0)}
  82. c.ResponseInspector = li.ByInspecting()
  83. Respond(r,
  84. c.ByInspecting())
  85. s, _ := ioutil.ReadAll(r.Body)
  86. if len(s) <= 0 {
  87. t.Fatal("autorest: LoggingInspector#ByInspecting did not restore the Response body")
  88. }
  89. }
  90. func TestNewClientWithUserAgent(t *testing.T) {
  91. ua := "UserAgent"
  92. c := NewClientWithUserAgent(ua)
  93. completeUA := fmt.Sprintf("%s %s", defaultUserAgent, ua)
  94. if c.UserAgent != completeUA {
  95. t.Fatalf("autorest: NewClientWithUserAgent failed to set the UserAgent -- expected %s, received %s",
  96. completeUA, c.UserAgent)
  97. }
  98. }
  99. func TestAddToUserAgent(t *testing.T) {
  100. ua := "UserAgent"
  101. c := NewClientWithUserAgent(ua)
  102. ext := "extension"
  103. err := c.AddToUserAgent(ext)
  104. if err != nil {
  105. t.Fatalf("autorest: AddToUserAgent returned error -- expected nil, received %s", err)
  106. }
  107. completeUA := fmt.Sprintf("%s %s %s", defaultUserAgent, ua, ext)
  108. if c.UserAgent != completeUA {
  109. t.Fatalf("autorest: AddToUserAgent failed to add an extension to the UserAgent -- expected %s, received %s",
  110. completeUA, c.UserAgent)
  111. }
  112. err = c.AddToUserAgent("")
  113. if err == nil {
  114. t.Fatalf("autorest: AddToUserAgent didn't return error -- expected %s, received nil",
  115. fmt.Errorf("Extension was empty, User Agent stayed as %s", c.UserAgent))
  116. }
  117. if c.UserAgent != completeUA {
  118. t.Fatalf("autorest: AddToUserAgent failed to not add an empty extension to the UserAgent -- expected %s, received %s",
  119. completeUA, c.UserAgent)
  120. }
  121. }
  122. func TestClientSenderReturnsHttpClientByDefault(t *testing.T) {
  123. c := Client{}
  124. if fmt.Sprintf("%T", c.sender()) != "*http.Client" {
  125. t.Fatal("autorest: Client#sender failed to return http.Client by default")
  126. }
  127. }
  128. func TestClientSenderReturnsSetSender(t *testing.T) {
  129. c := Client{}
  130. s := mocks.NewSender()
  131. c.Sender = s
  132. if c.sender() != s {
  133. t.Fatal("autorest: Client#sender failed to return set Sender")
  134. }
  135. }
  136. func TestClientDoInvokesSender(t *testing.T) {
  137. c := Client{}
  138. s := mocks.NewSender()
  139. c.Sender = s
  140. c.Do(&http.Request{})
  141. if s.Attempts() != 1 {
  142. t.Fatal("autorest: Client#Do failed to invoke the Sender")
  143. }
  144. }
  145. func TestClientDoSetsUserAgent(t *testing.T) {
  146. ua := "UserAgent"
  147. c := Client{UserAgent: ua}
  148. r := mocks.NewRequest()
  149. s := mocks.NewSender()
  150. c.Sender = s
  151. c.Do(r)
  152. if r.UserAgent() != ua {
  153. t.Fatalf("autorest: Client#Do failed to correctly set User-Agent header: %s=%s",
  154. http.CanonicalHeaderKey(headerUserAgent), r.UserAgent())
  155. }
  156. }
  157. func TestClientDoSetsAuthorization(t *testing.T) {
  158. r := mocks.NewRequest()
  159. s := mocks.NewSender()
  160. c := Client{Authorizer: mockAuthorizer{}, Sender: s}
  161. c.Do(r)
  162. if len(r.Header.Get(http.CanonicalHeaderKey(headerAuthorization))) <= 0 {
  163. t.Fatalf("autorest: Client#Send failed to set Authorization header -- %s=%s",
  164. http.CanonicalHeaderKey(headerAuthorization),
  165. r.Header.Get(http.CanonicalHeaderKey(headerAuthorization)))
  166. }
  167. }
  168. func TestClientDoInvokesRequestInspector(t *testing.T) {
  169. r := mocks.NewRequest()
  170. s := mocks.NewSender()
  171. i := &mockInspector{}
  172. c := Client{RequestInspector: i.WithInspection(), Sender: s}
  173. c.Do(r)
  174. if !i.wasInvoked {
  175. t.Fatal("autorest: Client#Send failed to invoke the RequestInspector")
  176. }
  177. }
  178. func TestClientDoInvokesResponseInspector(t *testing.T) {
  179. r := mocks.NewRequest()
  180. s := mocks.NewSender()
  181. i := &mockInspector{}
  182. c := Client{ResponseInspector: i.ByInspecting(), Sender: s}
  183. c.Do(r)
  184. if !i.wasInvoked {
  185. t.Fatal("autorest: Client#Send failed to invoke the ResponseInspector")
  186. }
  187. }
  188. func TestClientDoReturnsErrorIfPrepareFails(t *testing.T) {
  189. c := Client{}
  190. s := mocks.NewSender()
  191. c.Authorizer = mockFailingAuthorizer{}
  192. c.Sender = s
  193. _, err := c.Do(&http.Request{})
  194. if err == nil {
  195. t.Fatalf("autorest: Client#Do failed to return an error when Prepare failed")
  196. }
  197. }
  198. func TestClientDoDoesNotSendIfPrepareFails(t *testing.T) {
  199. c := Client{}
  200. s := mocks.NewSender()
  201. c.Authorizer = mockFailingAuthorizer{}
  202. c.Sender = s
  203. c.Do(&http.Request{})
  204. if s.Attempts() > 0 {
  205. t.Fatal("autorest: Client#Do failed to invoke the Sender")
  206. }
  207. }
  208. func TestClientAuthorizerReturnsNullAuthorizerByDefault(t *testing.T) {
  209. c := Client{}
  210. if fmt.Sprintf("%T", c.authorizer()) != "autorest.NullAuthorizer" {
  211. t.Fatal("autorest: Client#authorizer failed to return the NullAuthorizer by default")
  212. }
  213. }
  214. func TestClientAuthorizerReturnsSetAuthorizer(t *testing.T) {
  215. c := Client{}
  216. c.Authorizer = mockAuthorizer{}
  217. if fmt.Sprintf("%T", c.authorizer()) != "autorest.mockAuthorizer" {
  218. t.Fatal("autorest: Client#authorizer failed to return the set Authorizer")
  219. }
  220. }
  221. func TestClientWithAuthorizer(t *testing.T) {
  222. c := Client{}
  223. c.Authorizer = mockAuthorizer{}
  224. req, _ := Prepare(&http.Request{},
  225. c.WithAuthorization())
  226. if req.Header.Get(headerAuthorization) == "" {
  227. t.Fatal("autorest: Client#WithAuthorizer failed to return the WithAuthorizer from the active Authorizer")
  228. }
  229. }
  230. func TestClientWithInspection(t *testing.T) {
  231. c := Client{}
  232. r := &mockInspector{}
  233. c.RequestInspector = r.WithInspection()
  234. Prepare(&http.Request{},
  235. c.WithInspection())
  236. if !r.wasInvoked {
  237. t.Fatal("autorest: Client#WithInspection failed to invoke RequestInspector")
  238. }
  239. }
  240. func TestClientWithInspectionSetsDefault(t *testing.T) {
  241. c := Client{}
  242. r1 := &http.Request{}
  243. r2, _ := Prepare(r1,
  244. c.WithInspection())
  245. if !reflect.DeepEqual(r1, r2) {
  246. t.Fatal("autorest: Client#WithInspection failed to provide a default RequestInspector")
  247. }
  248. }
  249. func TestClientByInspecting(t *testing.T) {
  250. c := Client{}
  251. r := &mockInspector{}
  252. c.ResponseInspector = r.ByInspecting()
  253. Respond(&http.Response{},
  254. c.ByInspecting())
  255. if !r.wasInvoked {
  256. t.Fatal("autorest: Client#ByInspecting failed to invoke ResponseInspector")
  257. }
  258. }
  259. func TestClientByInspectingSetsDefault(t *testing.T) {
  260. c := Client{}
  261. r := &http.Response{}
  262. Respond(r,
  263. c.ByInspecting())
  264. if !reflect.DeepEqual(r, &http.Response{}) {
  265. t.Fatal("autorest: Client#ByInspecting failed to provide a default ResponseInspector")
  266. }
  267. }
  268. func randomString(n int) string {
  269. const chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
  270. r := rand.New(rand.NewSource(time.Now().UTC().UnixNano()))
  271. s := make([]byte, n)
  272. for i := range s {
  273. s[i] = chars[r.Intn(len(chars))]
  274. }
  275. return string(s)
  276. }