Coder Social home page Coder Social logo

stephane-ein / meteor-publication-collector Goto Github PK

View Code? Open in Web Editor NEW

This project forked from meteor-community-packages/meteor-publication-collector

0.0 2.0 0.0 32 KB

Test a Meteor publication by collecting its output.

Home Page: https://atmospherejs.com/johanbrook/publication-collector

License: MIT License

JavaScript 100.00%

meteor-publication-collector's Introduction

Publication Collector

CircleCI

This package makes testing publications in Meteor easier and nicer.

Instead of resorting to exporting or exposing your publication functions for doing testing, this package lets you "subscribe" to a given publication and assert its returned results.

This package works on the server side and must be only imported on the server side.

Installation

meteor add johanbrook:publication-collector

Usage

// In a typical BDD style test suite:

describe('Publication', function() {
  it('should publish 10 documents', function(done) {
    // Pass user context in constructor.
    const collector = new PublicationCollector({userId: Random.id()});

    // Collect documents from a subscription with 'collect(name, [arguments...], [callback])'
    collector.collect('publicationName', 'someArgument', (collections) => {
      assert.equal(collections.myCollection.length, 10);
      done();
    });
  });
});

An instance of PublicationCollector also is an EventEmitter, and emits a ready event when the publication is marked as ready.

Tests

Run tests once with

npm test

Run tests in watch mode (in console) with

npm run test:dev

History

This project was originally a part of MDG's Todos example Meteor app, but later extracted as a separate test package.

Based on https://github.com/stubailo/meteor-rest/blob/devel/packages/rest/http-subscription.js.

Releases

  • 1.0.7 - Fix compatibility with peerlibrary:reactive-publish's _isDeactivated function in publications (#20, thanks @jaskinn!).
  • 1.0.6 - Fix an issue with "ready" event being emitted more than once (#16). Thanks @nkahnfr!
  • 1.0.5 - Fix an issue when publish handlers are using default arguments (#15). Thanks @dmihal!
  • 1.0.4 - Don't try to operate on a document that doesn't exist in changed callback. Thanks @zenweasel, from #13!
  • 1.0.3 - Fix compatibility with peerlibrary:reactive-publish package (bug #3), fixed in #10. Thanks @hexsprite!
  • 1.0.2 - Fix bug where ready() wasn't called if there were no results from a publication handler.
  • 1.0.1
    • Fixes inconsistent results from publication collector (thanks @PhilippSpo in #2).
    • Return an empty array if there are no returned documents from a publication (#5).
    • Accept Mongo.ObjectID as _id attribute (#8).
  • 1.0.0 - First public release.

To do

  • Make tests pass.
  • More docs.
  • Support Promises.

meteor-publication-collector's People

Contributors

bastianplatz avatar brent-hoover avatar clemenshelm avatar dmihal avatar hexsprite avatar johanbrook avatar nkahnfr avatar stephane-ein avatar

Watchers

 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.