Fixtures for Waterline ORM
Provides an easy way to initialize data fixtures using Waterline ORM. Most of the code here comes from sails-fixtures. Fixtures are generally read from JSON files into Waterline collections.
How-to
- Define your fixtures
- Initialize Waterline
- Load fixtures
Simply call the module's init(configuration, callback)
method once Waterline is ready. callback
is a standard async callback function to which an error may be passed as a first argument. configuration
is an object using the following key-value pairs:
collections
is an object containing extended Waterline collections (see example).collections
is required.fixtures
is filled with JSON fixtures, adhering to the data format specified in the section below. This is optional.dir
specifies a directory in which to look for JSON fixtures. It is used with thepattern
option.dir
andpattern
are optional.pattern
specifies a glob pattern to match files within the directory specified bydir
. The matched files should contain JSON fixtures, adhering to the data format specified in the section below.dir
andpattern
are optional.
Example
var Waterline = ;var waterlineFixtures = ; var ORM = ; // Load Waterline collections here and setup configuration for Waterlinevar waterlineConfig = {}; // Initialize WaterlineORM;
Data Format
Fixtures are loaded in parallel. Their contents are loaded in series in specified order.