Giter Site home page Giter Site logo

hangar's Introduction

Hangar

Hangar is a Rails Engine that exposes your FactoryGirl factories with a REST API available in the test environment only

Install

Add Hangar to your application's Gemfile:

gem 'hangar', group: :test

Requirements

Your application must use FactoryGirl to manage its factories. Follow FactoryGirl's documentation to add factories to your application.

Configuration

Protecting tables from deletion

You may have special tables in your test database that should not be cleared by Hangar after a DELETE / request (see below in Usage). In this case, create an initializer in your app as follows:

# config/initializers/hangar.rb

Hangar.do_not_delete = %w(very_important_things valuable_bitcoin_keys spatial_ref_sys) if defined?(Hangar)

Specifying DatabaseCleaner deletion strategy

Not all ORMs support the deletion strategy, such as mongoid. You can override the clean strategy being used by the DELETE / request as follows:

# config/initializers/hangar.rb

Hangar.clean_strategy = :truncation

Usage

Hangar will create two factory routes for each factory registered with FactoryGirl. These routes mimic FactoryGirl's create and attributes_for methods, respectively:

POST /posts
GET /posts/new

Both will respond with a JSON representation of the object.

Hangar also provides a route to clean the database after each test:

DELETE /

This returns 204 No Content when successful.

Overriding Factory Attributes

You may override factory properties on your GET and POST requests using JSON as follows:

{ "post": { "title": "Dolor Sit Amet" } }

Specifying Traits

You may specify factory traits on your GET and POST requests using JSON as follows:

To specify traits POST the JSON as follows:

{ "traits": ["published"] }

Specifying Returned JSON Attributes

Specifying JSON attributes to return is the same as the ActiveModel::Serializer's as_json() include option. In the below examples, comments is a has_many association of our model.

To include associations POST the JSON as follows:

{ "include": "comments" }

To specify which attributes to include on associations, POST the JSON as follows: { "include": { "comments": { "only": "text" } } }

In this case, text is an attribute on our comments model.

Headers

You must include the following headers with your requests:

Accept: application/json; charset=utf-8
Content-Type: application/json    
Factory: hangar

Security

Hangar is designed to run in the test environment only. A warning will be displayed if it is loaded in any other environment.

Corporate support

Faraday logo

We use hangar for marketing analytics at Faraday.

Copyright

Copyright 2014 Andy Rossmeissl

hangar's People

Contributors

rossmeissl avatar ihough avatar michbert avatar seamusabshere avatar

Watchers

Jacob Gillespie avatar Jason Risch avatar Charlie Schwabacher avatar David Guthu avatar Colin Parsons avatar James Cloos avatar Kirill Gorin avatar Andy Hass avatar Leo Correa avatar Khal avatar Lily Zhang avatar Alexandra Hoefinger avatar Roberto Schneiders avatar  avatar Isha Kasliwal avatar Candi Engineering avatar Gavin Wachtel avatar Aneesh Devi avatar  avatar Molica Sin avatar  avatar Laura Sartor avatar  avatar Chris Carew avatar Eric avatar  avatar  avatar  avatar  avatar  avatar  avatar

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.