outpace / clj-http-fake

Helper for faking clj-http requests.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

clj-http-fake Build Status MIT License

Basically, fakeweb in Clojure, for clj-http.

Usage

In your project.clj file:

Clojars Project

In your namespace declaration:

(ns myapp.test.core
  (:require [clj-http.client :as c])
  (:use clj-http.fake))

Basic operations:

(with-fake-routes {
  ;; Exact string match:
  "http://google.com/apps" (fn [request] {:status 200 :headers {} :body "Hey, do I look like Google.com?"})
  ;; matches (c/get "http://google.com/apps")

  ;; Exact string match with query params:
  "http://google.com/?query=param" (fn [request] {:status 200 :headers {} :body "Nah, that can't be Google!"})
  ;; matches (c/get "http://google.com/" {:query-params {:query "param"}})

  ;; Regexp match:
  #"http://([a-z]+).floatboth.com" (fn [req] {:status 200 :headers {} :body "trololo"})
  ;; matches (c/get "http://labs.floatboth.com"), (c/get "http://ringfinger.floatboth.com") and so on, based on regexp.

  ;; Match based an HTTP method:
  "http://shmoogle.com/" {:get (fn [req] {:status 200 :headers {} :body "What is Scmoogle anyways?"})}
  ;; will match only (c/get "http://google.com/")

  ;; Match multiple HTTP methods:
  "http://doogle.com/" {:get    (fn [req] {:status 200 :headers {} :body "Nah, that can't be Google!"})
                        :delete (fn [req] {:status 401 :headers {} :body "Do you think you can delete me?!"})}

  ;; Match using query params as a map
   {:address "http://google.com/search"
    :query-params {:q "aardark"}} (fn [req] {:status 200 :headers {} :body "Searches have results"}
 }
 ;; Your tests with requests here
 )

License

Released under the MIT License.

Contributors

About

Helper for faking clj-http requests.


Languages

Language:Clojure 100.0%