Giter Site home page Giter Site logo

parleycl / sails-factory-multitenant Goto Github PK

View Code? Open in Web Editor NEW

This project forked from zand3rs/sails-factory

1.0 2.0 0.0 127 KB

Sails Factory Multitenant

License: MIT License

Makefile 2.31% JavaScript 97.69%
multitenant multitenancy factory sails testing testing-tools sailsjs

sails-factory-multitenant's Introduction

logo

Sails Multitenant Factory is a simple model factory for Sails.js 1.X with multitenancy features. This project is based on sails-factory. This project use sails-hook-multitenancy to provide with multitenancy features.

This project is inspired on Factory-girl and other factory testing tools.

Installation

npm install sails-factory-multitenant --save

Usage

Defining factories

Define a factory by giving it a name and an optional model name. The factory name will be the default model name if model name is not provided.

  var factory = require("sails-factory-multitenant");

  factory.define("user")
    .attr("first_name", "First Name")
    .attr("last_name", "Last Name")
    .attr("random_id", function() { return Math.random(); });

  factory.define("active_user").parent("user")
    .attr("active", true);

  factory.define("admin_user", "Admin").parent("user");

Using factories

  var active_user = factory.build("active_user");
  // active_user: non-persistent "active_user" instance
  // {
  //    first_name: "First Name",
  //    last_name: "Last Name",
  //    random_id: <number>,
  //    active: true
  // }

  var user = factory.build("user", {first_name: "Hello", last_name: function() { return "World"; }});
  // user: non-persistent "user" instance
  // {
  //    first_name: "Hello",
  //    last_name: "World",
  //    random_id: <number>
  // }

  //-- asynchronous
  factory.build("active_user", function(active_user) {
    // active_user: non-persistent "active_user" instance
    // {
    //    first_name: "First Name",
    //    last_name: "Last Name",
    //    random_id: <number>,
    //    active: true
    // }
  });

  factory.build("user", {first_name: "Hello", last_name: function() { return "World"; }}, function(user) {
    // user: non-persistent "user" instance
    // {
    //    first_name: "Hello",
    //    last_name: "World",
    //    random_id: <number>
    // }
  });

  factory.create("active_user", function(active_user) {
    // active_user: sails User model instance
    // {
    //    id: <id>,
    //    first_name: "First Name",
    //    last_name: "Last Name",
    //    random_id: <number>,
    //    active: true,
    //    createdAt: <date>,
    //    updatedAt: <date>
    // }
  });

Auto increment attributes

Attributes can have an auto_increment option. By default, sequence will increment by 1, otherwise it will increment by whatever value the auto_increment option is set to. Counting starts at the initial value given. Sequence is shared among parent and children.

  factory.define("user")
    .attr("id", 0, {auto_increment: true})
    .attr("first_name", "First Name - ", {auto_increment: 5});

  // OR with %d number character template.

  factory.define("user")
    .attr("id", 0, {auto_increment: true})
    .attr("first_name", "First Name - %d", {auto_increment: 5});


  factory.define("other_user").parent("user");

  factory.build("user", function(user) {
    // user:
    // {
    //    id: 1,
    //    first_name: "First Name - 5",
    //    ...
    // }
  });

  factory.create("user", function(user) {
    // user:
    // {
    //    id: 2,
    //    first_name: "First Name - 10",
    //    ...
    // }
  });

  factory.build("other_user", function(other_user) {
    // other_user:
    // {
    //    id: 3,
    //    first_name: "First Name - 15",
    //    ...
    // }
  });

Loading factories

Calling .load() without parameter will try to load factory definitions from test/factories folder. By default, the model name will be set to factory file name if not provided on define parameters.

  // api/models/User.js
  module.exports = {
    attributes: {
      first_name: "string",
      last_name: "string",
      random_id: "integer",
      active: "boolean"
    }
  };

  // test/factories/User.js
  module.exports = function(factory) {
    factory.define("user")
      .attr("first_name", "First Name")
      .attr("last_name", "Last Name")
      .attr("random_id", function() { return Math.random(); });

    factory.define("active_user").parent("user")
      .attr("active", true);
  };

  // test/bootstrap.js
  before(function(done) {
    require("sails").lift({
      log: {
        level: "error"
      }
    }, function(err, sails) {
      if (sails) {
        //-- load factory definition files from test/factories
        require("sails-factory-multitenant").load();
      }
      done(err);
    });
  });

To load factory files from different folder:

  factory.load("/path/to/factories");

To get the total number of loaded factory files:

  factory.load(function(count) {
    // count is the total number of loaded files
  });

Test

To run test of this library, please follow next command

npm test
...
33 passing

9. Contributors

This project is based on sails-factory project wrote by Alexander Magtipon.

Knownledge is power, share the Knownledge.

10. License

This project is develop by Parley for free use by the community, under MIT license.

Made with โค in Chile

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.