mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-26 17:09:11 -06:00
71 lines
3.5 KiB
JavaScript
71 lines
3.5 KiB
JavaScript
require('../spec_helper')
|
|
|
|
const Promise = require('bluebird')
|
|
const plugins = require(`${root}lib/plugins`)
|
|
const task = require(`${root}lib/task`)
|
|
|
|
describe('lib/task', () => {
|
|
beforeEach(function () {
|
|
this.pluginsFile = 'cypress/plugins'
|
|
sinon.stub(plugins, 'execute').resolves('result')
|
|
|
|
return sinon.stub(plugins, 'has').returns(true)
|
|
})
|
|
|
|
it('executes the \'task\' plugin', function () {
|
|
return task.run(this.pluginsFile, { task: 'some:task', arg: 'some:arg', timeout: 1000 }).then(() => {
|
|
expect(plugins.execute).to.be.calledWith('task', 'some:task', 'some:arg')
|
|
})
|
|
})
|
|
|
|
it('resolves the result of the \'task\' plugin', function () {
|
|
return task.run(this.pluginsFile, { task: 'some:task', arg: 'some:arg', timeout: 1000 }).then((result) => {
|
|
expect(result).to.equal('result')
|
|
})
|
|
})
|
|
|
|
it('throws if \'task\' event is not registered', function () {
|
|
plugins.has.returns(false)
|
|
|
|
return task.run(this.pluginsFile, { timeout: 1000 }).catch((err) => {
|
|
expect(err.message).to.equal(`The 'task' event has not been registered in the plugins file. You must register it before using cy.task()\n\nFix this in your plugins file here:\n${this.pluginsFile}\n\nhttps://on.cypress.io/api/task`)
|
|
})
|
|
})
|
|
|
|
it('throws if \'task\' event resolves __cypress_unhandled__', function () {
|
|
plugins.execute.withArgs('task').resolves('__cypress_unhandled__')
|
|
plugins.execute.withArgs('_get:task:keys').resolves(['foo', 'bar'])
|
|
|
|
return task.run(this.pluginsFile, { task: 'some:task', arg: 'some:arg', timeout: 1000 }).catch((err) => {
|
|
expect(err.message).to.equal(`The task 'some:task' was not handled in the plugins file. The following tasks are registered: foo, bar\n\nFix this in your plugins file here:\n${this.pluginsFile}\n\nhttps://on.cypress.io/api/task`)
|
|
})
|
|
})
|
|
|
|
it('throws if \'task\' event resolves undefined', function () {
|
|
plugins.execute.withArgs('task').resolves(undefined)
|
|
plugins.execute.withArgs('_get:task:body').resolves('function () {}')
|
|
|
|
return task.run(this.pluginsFile, { task: 'some:task', arg: 'some:arg', timeout: 1000 }).catch((err) => {
|
|
expect(err.message).to.equal(`The task 'some:task' returned undefined. You must return a value, null, or a promise that resolves to a value or null to indicate that the task was handled.\n\nThe task handler was:\n\nfunction () {}\n\nFix this in your plugins file here:\n${this.pluginsFile}\n\nhttps://on.cypress.io/api/task`)
|
|
})
|
|
})
|
|
|
|
it('throws if \'task\' event resolves undefined - without task body', function () {
|
|
plugins.execute.withArgs('task').resolves(undefined)
|
|
plugins.execute.withArgs('_get:task:body').resolves('')
|
|
|
|
return task.run(this.pluginsFile, { task: 'some:task', arg: 'some:arg', timeout: 1000 }).catch((err) => {
|
|
expect(err.message).to.equal(`The task 'some:task' returned undefined. You must return a value, null, or a promise that resolves to a value or null to indicate that the task was handled.\n\nFix this in your plugins file here:\n${this.pluginsFile}\n\nhttps://on.cypress.io/api/task`)
|
|
})
|
|
})
|
|
|
|
it('throws if it times out', function () {
|
|
plugins.execute.withArgs('task').resolves(Promise.delay(250))
|
|
plugins.execute.withArgs('_get:task:body').resolves('function () {}')
|
|
|
|
return task.run(this.pluginsFile, { task: 'some:task', arg: 'some:arg', timeout: 10 }).catch((err) => {
|
|
expect(err.message).to.equal(`The task handler was:\n\nfunction () {}\n\nFix this in your plugins file here:\n${this.pluginsFile}\n\nhttps://on.cypress.io/api/task`)
|
|
})
|
|
})
|
|
})
|