WIP: rename all the specs, move them around, get it going!

This commit is contained in:
Brian Mann
2017-09-04 00:16:59 -04:00
parent 4842c9d6a4
commit 77ea4fc5c2
16 changed files with 137 additions and 131 deletions
+137
View File
@@ -0,0 +1,137 @@
require('../../spec_helper')
const verify = require(`${lib}/tasks/verify`)
const cli = require(`${lib}/cli`)
const spawn = require(`${lib}/exec/spawn`)
const run = require(`${lib}/exec/run`)
const snapshot = require('snap-shot-it')
const util = require(`${lib}/util`)
const logger = require(`${lib}/logger`)
describe('exec run', function () {
beforeEach(function () {
this.sandbox.stub(util, 'isInstalledGlobally').returns(true)
this.sandbox.stub(process, 'exit')
})
context('#processRunOptions', function () {
it('passes --browser option', () => {
const args = run.processRunOptions({
browser: 'test browser',
})
snapshot(args)
})
it('passes --record option', () => {
const args = run.processRunOptions({
record: 'my record id',
})
snapshot(args)
})
it('does not remove --record option when using --browser', () => {
const args = run.processRunOptions({
record: 'foo',
browser: 'test browser',
})
snapshot(args)
})
})
context('cli interface', function () {
beforeEach(function () {
this.sandbox.stub(run, 'start').resolves()
this.parse = (args) => cli.init().parse(`node test ${args}`.split(' '))
})
it('calls run with port', function () {
this.parse('run --port 7878')
expect(run.start).to.be.calledWith({ port: '7878' })
})
it('calls run with spec', function () {
this.parse('run --spec cypress/integration/foo_spec.js')
expect(run.start).to.be.calledWith({ spec: 'cypress/integration/foo_spec.js' })
})
it('calls run with port with -p arg', function () {
this.parse('run -p 8989')
expect(run.start).to.be.calledWith({ port: '8989' })
})
it('calls run with env variables', function () {
this.parse('run --env foo=bar,host=http://localhost:8888')
expect(run.start).to.be.calledWith({ env: 'foo=bar,host=http://localhost:8888' })
})
it('calls run with config', function () {
this.parse('run --config watchForFileChanges=false,baseUrl=localhost')
expect(run.start).to.be.calledWith({ config: 'watchForFileChanges=false,baseUrl=localhost' })
})
it('calls run with key', function () {
this.parse('run --key asdf')
expect(run.start).to.be.calledWith({ key: 'asdf' })
})
it('calls run with --record', function () {
this.parse('run --record')
expect(run.start).to.be.calledWith({ record: true })
})
it('calls run with --record false', function () {
this.parse('run --record false')
expect(run.start).to.be.calledWith({ record: false })
})
})
context('#start', function () {
beforeEach(function () {
this.sandbox.stub(spawn, 'start')
this.sandbox.stub(verify, 'verify').resolves()
this.log = this.sandbox.spy(logger, 'log')
})
it('verifies cypress', function () {
return run.start()
.then(() => {
expect(verify.verify).to.be.calledOnce
})
})
it('spawns with --key and xvfb', function () {
return run.start({ port: '1234' })
.then(() => {
expect(spawn.start).to.be.calledWith(['--run-project', process.cwd(), '--port', '1234'])
})
})
it('spawns with --env', function () {
return run.start({ env: 'host=http://localhost:1337,name=brian' })
.then(() => {
expect(spawn.start).to.be.calledWith(['--run-project', process.cwd(), '--env', 'host=http://localhost:1337,name=brian'])
})
})
it('spawns with --config', function () {
return run.start({ config: 'watchForFileChanges=false,baseUrl=localhost' })
.then(() => {
expect(spawn.start).to.be.calledWith(['--run-project', process.cwd(), '--config', 'watchForFileChanges=false,baseUrl=localhost'])
})
})
it('spawns with --record false', function () {
return run.start({ record: false })
.then(() => {
expect(spawn.start).to.be.calledWith(['--run-project', process.cwd(), '--record', false])
})
})
it('spawns with --output-path', function () {
return run.start({ outputPath: '/path/to/output' })
.then(() => {
expect(spawn.start).to.be.calledWith(['--run-project', process.cwd(), '--output-path', '/path/to/output'])
})
})
})
})