Balmer

Cucumber_Groovy_http_check

Oct 29th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.01 KB | None | 0 0
  1. package blueprintservice
  2.  
  3. import groovyx.net.http.HTTPBuilder
  4. import groovyx.net.http.RESTClient
  5. import static groovyx.net.http.ContentType.*
  6.  
  7. this.metaClass.mixin(cucumber.api.groovy.Hooks)
  8. this.metaClass.mixin(cucumber.api.groovy.EN)
  9.  
  10. def responceCode = ""
  11.  
  12. Given(~/^An "([^"]*)" user opens the browser$/) { String user ->
  13.    testUsername = user
  14. }
  15.  
  16.  
  17. Given(~/^provides "([^"]*)" password$/) { String password ->
  18.    testPass = password
  19.  
  20. }
  21.  
  22.  
  23. When(~/^he opens the "([^"]*)" link with path "([^"]*)"$/) { String url, String uri->
  24.     testUrl = url
  25.     testUri = uri
  26. }
  27.  
  28.  
  29. Then(~/^He will get a respond with status (\d+)$/) { int httpcode ->
  30.     try {
  31.         def http = new RESTClient(testUrl)
  32.         http.auth.basic testUsername, testPass
  33.         http.get(path: testUri ) { resp ->
  34.             responceCode = resp.statusLine.statusCode
  35.             assert httpcode == responceCode
  36.         }
  37.     } catch (groovyx.net.http.HttpResponseException ex) {
  38.         responceCode = ex.getStatusCode()
  39.         assert httpcode == responceCode
  40.     }
  41.  
  42. }
Advertisement