npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

js-facade

v0.5.1

Published

Front end testing helpers!

Downloads

1

Readme

Facade

Installation:

bower install facade

include facade and lodash scripts from bower in your test framework

The problem:

If you write a lot of angular tests, you probably have lots of similar whenGET's and whenPOST's, etc. sitting all over the place in your code. It's annoying, gross, and it discourages people from writing tests when there's a lot of boiler plate. Not to mention it makes it way harder to quickly understand the meaning of the tests, and honestly, you usually just don't care about that route, and you just want it to work.

The solution:

Put it in one place! Put up a Facade!

Your tests will go from...

  // In testFile1.js
  $httpBackend.whenGET('/api/provider/patients').respond([]);
  $httpBackend.whenGET('/api/provider/coupons?archived=false').respond([coupon]);
  $httpBackend.whenGET('/api/provider/plan').respond(plan);
  $httpBackend.whenGET('/api/provider/practitioners').respond([]);

  it("should show a coupon", function() {
    // do test things.
  })

  // And then in testFile2.js
  $httpBackend.whenGET('/api/provider/patients').respond([]);
  $httpBackend.whenGET('/api/provider/coupons?archived=false').respond([coupon]);
  $httpBackend.whenGET('/api/provider/plan').respond(plan);
  $httpBackend.whenGET('/api/provider/practitioners').respond([]);

  it("should show a plan", function() {
    // do test things.
  });

to simply...

  // In testFile1.js
  it("should show a coupon", function() {
    // do test things
  });

  // And then in testFile2.js
  it("should show a plan", function() {
    // do test things
  });

How to use:

1.) Include it in your karma conf file like so...
  files: [
    'bower_components/facade/dist/facade.min.js'
  ]
2.) Configure your standard backend only once!
  // in some test_mocks.js file
  // you set up the resources your app uses ('users', 'photos', 'patients', whatever)
  Facade.define(function() {
    Facade.addResource({
      name: 'patient',
      url: '/api/provider/patients';
    })
  });

And perhaps also set up the "database" with various mocks of your backend responses for those resources.

3.) Initialize Facade in your tests.
  // Somewhere in your test file, do something like...

  beforeEach(function() {
    var patients = Facade.resources.patient;
    patients.addItem(patientToTest);
    Facade.initialize();
  })

  afterEach(function() {
    // To keep tests running independently.
    Facade.clear();
  });

Basics:

Adding your resources (perhaps in a seperate mock file that you include with each test);

Facade.define(function() {
  var patientResource = Facade.resource({
    name: 'patient',
    url: 'api/provider/patients'
    createDefault: function(postData) {
      var default = {id: 1, name: 'default patient'};
      return _.extend({}, defaultPatient, postData);
    }
  });
})

By creating the resource, Facade will automatically make all standard REST routes (index, create, and then get/:id, put/:id, and delete/:id).

createDefault is the function that will be called when create routes (POST /resource) are hit.

Adding your responses

  var patient1 = {id: 'pat-2J8K', name: "New Patient"};
  patientResource.addItem(patient1);

When adding items, Facade automatically creates routes based on that items id.

For example, this item creates a route for '/api/provider/patients/pat-2J8K';

And when you hit that route, the response will be {id: 'pat-2J8K', name: "New Patient"}.

Using the 'database' After adding items, those items go into Facade's 'database'. You can access it like so.

var DB = Facade.db;
var patient = DB.patient.find('pat-2J8K');
// Note it's DB.patient because we set the name as "patient" when creating the resource.

Keeping tests Independent

Facade.clear();
// clear will actually just set the db/routes/resources to empty objects. Note, it also clears out the `.backend` definition. So you should also be setting $httpBackend in a beforeEach.

More power!

Nesting routes

You can take that resource you just made, and then nest another one under it, like so:

var patientChargesResource = patientResource.resource({
  name: 'charge',
  url: '/charges'
});

patientChargesResource.url // '/api/provider/patients/charges'

Adding custom routes If you need more than rest routes, it's easy to add whatever you like

  patientResource.addRoute({
    method:"POST",
    route:"/verify",
    callback: function(data, item, headers) {
      item.verified = true;
      // If the onItem flag was false, this function would be passed the collection,
      // and not the item.
      return [200, item, {}, 'OK'];
    },
    // this flag adds the route for every item in the db. eg. '/patients/1/verify'
    onItem: true
  });

notes about the addRoute options hash route: Can be either a string or regex. If it's a regex, it can't be set to "onItem".

onItem: If this flag is omitted, or set to false, it will create the route on the collection. eg. '/patients/verify';

callback: This is required and is meant to let you "perform the action" of the route. Very similar to whatever your real backend might do for this route. It also returns the response of the route. The response must be in standard angular form which is [status, data, headers, status_text]. The callback is passed the request data, the appropriate database object (which is the item if it's an item route (eg. patients/3/verify), or the collection if it's a colleciton route (eg. patients/verify)). It's also passed the request headers.

Creating Expectations! Facade provides convenience around HTTP expectations. Specifically, you can do,

  expectation = patientResource.expect('POST', '/verify');
  expectation.with({name: "Joe"});

the with method creates a normal $httpBackend.expect call, except with a couple extras: - It builds off of the resources url, so you can specify less path, or no path at all - The params you pass to with are recursively searched for in the request data. Thus, you only need to specify what you really care about, and don't need to care about extraneous details of the request.

Creating special responses (and errors) Facade lets you alter the response of any route as needed. Typical use of this would be for simulating errors.

Just find the route, and then do what you will!

  var indexRoute = Facade.findRoute("GET", patientResource.url)

  indexRoute.nextResponse(404, {message: "Not found"});

As you might expect the next time the route gets hit, it will return a 404 status with a JSON payload of {message: "Not found"}.

The next time that route is hit (after the error has been returned once), it will return it's original response;

Also, a note, you could do as many "nextResponses" on the indexRoute as you like. They get thrown into an array, and then shifted off one at a time as the route gets hit.

Getting the route from an item For a little convenience, you can pull an item from the DB that knows about it's URL. Specifically by doing...

var patient = DB.patient.find('pat-JF8K', {wrap: true});
patient.showUrl(); // '/api/provider/patients/pat-JF8K';