Skip to content

lucetius/meteor-coverage

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Coverage Status

meteor-coverage

A meteor package that allows you to get the statement, line, function and branch coverage of Meteor project and package.
This package uses the istanbuljs/istanbul-api package for coverage report and meteorhacks:picker for server side routing.
It's a debug only package, so it does not affect your production build.

Installation

In your Meteor app directory, enter:

$ meteor add lmieulet:meteor-coverage
$ COVERAGE=1 \
COVERAGE_VERBOSE=1 \
COVERAGE_APP_FOLDER=/path/to/your/meteor/app/ meteor

And open this page to see the report:

http://localhost:3000/coverage

If you have internal packages inside your app and you want to hook their server side js, open the file .meteor/packages and move the line lmieulet:meteor-coverage to be above these packages.

If you have packages used by your project (ex: aldeed:simple-schema) or libraries on your client side (ex: OpenLayers, Jquery), you can hide the coverage of these files of your report. See config file

Global environment variable

You need to set up these environment variables:

  • COVERAGE=1 to enable coverage
  • COVERAGE_APP_FOLDER=/path/to/your/meteor/app/
    • Used to see if you have a customized .coverage.json file
    • Used by istanbul in reports if the file has source map
    • Needs to end with a trailing slash
    • Used when importing or exporting coverage reports
  • COVERAGE_VERBOSE=1 to see logs (optional)

Client API

See the .travis.yml of this package to see a real example of a test runner that save the coverage into lcovonly format and send it to coveralls.

Meteor.sendCoverage(callback)

Run the following command in your browser and the client coverage will be saved into the server

    Meteor.sendCoverage(function(stats,err) {console.log(stats,err);});

Meteor.exportCoverage(type, callback)

  • type: the type of report you want to create inside your COVERAGE_APP_FOLDER
    • Default: coverage, used to dump the coverage object in a file because when there are several types of test, we want to merge results, and the server reloads between each one.
    • Allowed values: cobertura, html, json, json-summary, lcov, none, teamcity, text, text-lcov, text-summary, lcovonly, coverage
    • Working values: lcovonly, coverage
    • Except for coverage, the file generation is handled by istanbuljs/istanbul-reports
    • PR welcome
    Meteor.exportCoverage(null, function(err) {console.log(err)})

Meteor.importCoverage(callback)

Import a coverage export.

Meteor.importCoverage(function(err) {console.log(err)})

Config file

You can specify which files will not be covered in reports in a .coverage.json file inside the COVERAGE_APP_FOLDER folder.

{
  "ignore": {
    "clientside": {
      "inapp": [

      ],
      "public": [
      ]
    },
    "serverside": [
    ]
  }
}

If you do not have this file, this package will use the default one (conf/default-coverage.json).

To create your custom config file, run the project with COVERAGE_VERBOSE=1 env variable and use logs to see which filenames were hooked or hidden. PR welcome.

Limitation(s) / open issues

  • The current version of Meteor does not create a source maps for every js file during a local build. Sadness when you cannot see the coverage of your local package.
  • Error with web report: Unable to lookup source
    • HTML templates are processed into js files, and currently we have no way to detect and remove these files from coverage because they look like any other js file. That's why a template foo.html will exists in report as template.foo.js.

Contributing

Anyone is welcome to contribute.
Fork, make and then submit a pull request.

About

Server and client coverage for Meteor

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 87.0%
  • CSS 13.0%