Giter Site home page Giter Site logo

Comments (2)

oliyh avatar oliyh commented on May 30, 2024

Hi,

The code on the test readme looks like this:

(-> (martian/bootstrap-swagger "https://api.com" user-api-swagger-definition)
      (martian-test/respond-with-generated {:load-user :success}))

The respond-with-generated looks for and replaces the perform-request interceptor that comes from the various martian-http packages and also removes body (de)serialisation, so it should not matter if you use martian-http or martian.core from that perspective.

Could you share some code and tell me about the behaviour / errors you are seeing?

Cheers

from martian.

MutableR avatar MutableR commented on May 30, 2024

The primary issue is that my client doesn't use Swagger, and I rely on routes for my API. Is there a way to test this scenario, or does the library not support it?

This situation is not unique to my current project; in fact, many of my projects lack Swagger, and I employ this approach.

Code examples:

(defn bootstrap
  [token store & {:keys []}]
  (martian-http/bootstrap
   (base-url store)
   (routes/prepare-routes)
   {:credentials {:token token}
    :interceptors (concat martian/default-interceptors
                          [(add-auth-headers)
                           (ignore-invalid-cookies)
                           interceptors/default-encode-body
                           (decode-body)
                           martian-http/perform-request])}))
(ns shopify.impl.routes
  (:require
   [schema.core :as s]))


(def orders
  [{:route-name :get-orders
    :method :get
    :path-parts ["/orders.json"]
    :query-schema {(s/optional-key :page_info) s/Str
                   (s/optional-key :financial_status) s/Str
                   (s/optional-key :status) s/Str
                   (s/optional-key :limit) s/Int
                   (s/optional-key :created_at_min) s/Str
                   (s/optional-key :created_at_max) s/Str
                   (s/optional-key :order) s/Str}}])


(def fulfillment
  [{:route-name :get:fulfillment-order!
    :method :get
    :path-parts ["/orders/" :order-id "/fulfillment_orders.json"]
    :path-schema {:order-id s/Int}}
   {:route-name :create-fulfillment
    :method :post
    :path-parts ["/fulfillments.json"]
    :body-schema {:body {:fulfillment {:message                         s/Str
                                       :notify_customer                 s/Bool
                                       :tracking_info                   {:number  s/Str
                                                                         :url     s/Str}
                                       :line_items_by_fulfillment_order [{:fulfillment_order_id s/Int}]}}}}])


(def routes
  [orders fulfillment])

(defn prepare-routes
  []
  (reduce into [] routes))

I'm not encountering any errors (just get nil because haven't Swagger I think), but I'm struggling to grasp how to implement this for my specific situation.

I would greatly appreciate your assistance

from martian.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.