123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /**
- * Module dependencies.
- */
- var Suite = require('../suite')
- , Test = require('../test')
- , utils = require('../utils');;
- /**
- * TDD-style interface:
- *
- * suite('Array', function(){
- * suite('#indexOf()', function(){
- * suiteSetup(function(){
- *
- * });
- *
- * test('should return -1 when not present', function(){
- *
- * });
- *
- * test('should return the index when present', function(){
- *
- * });
- *
- * suiteTeardown(function(){
- *
- * });
- * });
- * });
- *
- */
- module.exports = function(suite){
- var suites = [suite];
- suite.on('pre-require', function(context, file, mocha){
- /**
- * Execute before each test case.
- */
- context.setup = function(fn){
- suites[0].beforeEach(fn);
- };
- /**
- * Execute after each test case.
- */
- context.teardown = function(fn){
- suites[0].afterEach(fn);
- };
- /**
- * Execute before the suite.
- */
- context.suiteSetup = function(fn){
- suites[0].beforeAll(fn);
- };
- /**
- * Execute after the suite.
- */
- context.suiteTeardown = function(fn){
- suites[0].afterAll(fn);
- };
- /**
- * Describe a "suite" with the given `title`
- * and callback `fn` containing nested suites
- * and/or tests.
- */
- context.suite = function(title, fn){
- var suite = Suite.create(suites[0], title);
- suites.unshift(suite);
- fn.call(suite);
- suites.shift();
- return suite;
- };
- /**
- * Pending suite.
- */
- context.suite.skip = function(title, fn) {
- var suite = Suite.create(suites[0], title);
- suite.pending = true;
- suites.unshift(suite);
- fn.call(suite);
- suites.shift();
- };
- /**
- * Exclusive test-case.
- */
- context.suite.only = function(title, fn){
- var suite = context.suite(title, fn);
- mocha.grep(suite.fullTitle());
- };
- /**
- * Describe a specification or test-case
- * with the given `title` and callback `fn`
- * acting as a thunk.
- */
- context.test = function(title, fn){
- var suite = suites[0];
- if (suite.pending) var fn = null;
- var test = new Test(title, fn);
- suite.addTest(test);
- return test;
- };
- /**
- * Exclusive test-case.
- */
- context.test.only = function(title, fn){
- var test = context.test(title, fn);
- var reString = '^' + utils.escapeRegexp(test.fullTitle()) + '$';
- mocha.grep(new RegExp(reString));
- };
- /**
- * Pending test case.
- */
- context.test.skip = function(title){
- context.test(title);
- };
- });
- };
|