mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-18 05:50:16 -05:00
184 lines
5.4 KiB
JavaScript
184 lines
5.4 KiB
JavaScript
require('../../spec_helper')
|
|
|
|
const _ = require('lodash')
|
|
const os = require('os')
|
|
const electron = require('electron')
|
|
const savedState = require(`${root}../lib/saved_state`)
|
|
const menu = require(`${root}../lib/gui/menu`)
|
|
const Events = require(`${root}../lib/gui/events`)
|
|
const Windows = require(`${root}../lib/gui/windows`)
|
|
const interactiveMode = require(`${root}../lib/modes/interactive-e2e`)
|
|
|
|
describe('gui/interactive', () => {
|
|
context('.isMac', () => {
|
|
it('returns true if os.platform is darwin', () => {
|
|
sinon.stub(os, 'platform').returns('darwin')
|
|
|
|
expect(interactiveMode.isMac()).to.be.true
|
|
})
|
|
|
|
it('returns false if os.platform isnt darwin', () => {
|
|
sinon.stub(os, 'platform').returns('linux64')
|
|
|
|
expect(interactiveMode.isMac()).to.be.false
|
|
})
|
|
})
|
|
|
|
context('.getWindowArgs', () => {
|
|
it('quits app when onClose is called', () => {
|
|
electron.app.quit = sinon.stub()
|
|
interactiveMode.getWindowArgs({}).onClose()
|
|
|
|
expect(electron.app.quit).to.be.called
|
|
})
|
|
|
|
it('tracks state properties', () => {
|
|
const { trackState } = interactiveMode.getWindowArgs({})
|
|
|
|
const args = _.pick(trackState, 'width', 'height', 'x', 'y', 'devTools')
|
|
|
|
expect(args).to.deep.eq({
|
|
width: 'appWidth',
|
|
height: 'appHeight',
|
|
x: 'appX',
|
|
y: 'appY',
|
|
devTools: 'isAppDevToolsOpen',
|
|
})
|
|
})
|
|
|
|
it('renders with saved width if it exists', () => {
|
|
expect(interactiveMode.getWindowArgs({ appWidth: 1 }).width).to.equal(1)
|
|
})
|
|
|
|
it('renders with default width if no width saved', () => {
|
|
expect(interactiveMode.getWindowArgs({}).width).to.equal(800)
|
|
})
|
|
|
|
it('renders with saved height if it exists', () => {
|
|
expect(interactiveMode.getWindowArgs({ appHeight: 2 }).height).to.equal(2)
|
|
})
|
|
|
|
it('renders with default height if no height saved', () => {
|
|
expect(interactiveMode.getWindowArgs({}).height).to.equal(550)
|
|
})
|
|
|
|
it('renders with saved x if it exists', () => {
|
|
expect(interactiveMode.getWindowArgs({ appX: 3 }).x).to.equal(3)
|
|
})
|
|
|
|
it('renders with no x if no x saved', () => {
|
|
expect(interactiveMode.getWindowArgs({}).x).to.be.undefined
|
|
})
|
|
|
|
it('renders with saved y if it exists', () => {
|
|
expect(interactiveMode.getWindowArgs({ appY: 4 }).y).to.equal(4)
|
|
})
|
|
|
|
it('renders with no y if no y saved', () => {
|
|
expect(interactiveMode.getWindowArgs({}).y).to.be.undefined
|
|
})
|
|
|
|
describe('on window focus', () => {
|
|
beforeEach(() => {
|
|
sinon.stub(menu, 'set')
|
|
})
|
|
|
|
it('calls menu.set withDevTools: true when in dev env', () => {
|
|
const env = process.env['CYPRESS_INTERNAL_ENV']
|
|
|
|
process.env['CYPRESS_INTERNAL_ENV'] = 'development'
|
|
interactiveMode.getWindowArgs({}).onFocus()
|
|
expect(menu.set.lastCall.args[0].withDevTools).to.be.true
|
|
process.env['CYPRESS_INTERNAL_ENV'] = env
|
|
})
|
|
|
|
it('calls menu.set withDevTools: false when not in dev env', () => {
|
|
const env = process.env['CYPRESS_INTERNAL_ENV']
|
|
|
|
process.env['CYPRESS_INTERNAL_ENV'] = 'production'
|
|
interactiveMode.getWindowArgs({}).onFocus()
|
|
expect(menu.set.lastCall.args[0].withDevTools).to.be.false
|
|
process.env['CYPRESS_INTERNAL_ENV'] = env
|
|
})
|
|
})
|
|
})
|
|
|
|
context('.ready', () => {
|
|
beforeEach(function () {
|
|
this.win = {}
|
|
this.state = {}
|
|
|
|
sinon.stub(menu, 'set')
|
|
sinon.stub(Events, 'start')
|
|
sinon.stub(Windows, 'open').resolves(this.win)
|
|
sinon.stub(Windows, 'trackState')
|
|
|
|
const state = savedState.create()
|
|
|
|
sinon.stub(state, 'get').resolves(this.state)
|
|
})
|
|
|
|
it('calls Events.start with options, adding env, onFocusTests, and os', () => {
|
|
sinon.stub(os, 'platform').returns('someOs')
|
|
const opts = {}
|
|
|
|
return interactiveMode.ready(opts).then(() => {
|
|
expect(Events.start).to.be.called
|
|
expect(Events.start.lastCall.args[0].onFocusTests).to.be.a('function')
|
|
|
|
expect(Events.start.lastCall.args[0].os).to.equal('someOs')
|
|
})
|
|
})
|
|
|
|
it('calls menu.set', () => {
|
|
return interactiveMode.ready({}).then(() => {
|
|
expect(menu.set).to.be.calledOnce
|
|
})
|
|
})
|
|
|
|
it('calls menu.set withDevTools: true when in dev env', () => {
|
|
const env = process.env['CYPRESS_INTERNAL_ENV']
|
|
|
|
process.env['CYPRESS_INTERNAL_ENV'] = 'development'
|
|
|
|
return interactiveMode.ready({}).then(() => {
|
|
expect(menu.set.lastCall.args[0].withDevTools).to.be.true
|
|
process.env['CYPRESS_INTERNAL_ENV'] = env
|
|
})
|
|
})
|
|
|
|
it('calls menu.set withDevTools: false when not in dev env', () => {
|
|
const env = process.env['CYPRESS_INTERNAL_ENV']
|
|
|
|
process.env['CYPRESS_INTERNAL_ENV'] = 'production'
|
|
|
|
return interactiveMode.ready({}).then(() => {
|
|
expect(menu.set.lastCall.args[0].withDevTools).to.be.false
|
|
process.env['CYPRESS_INTERNAL_ENV'] = env
|
|
})
|
|
})
|
|
|
|
it('resolves with win', function () {
|
|
return interactiveMode.ready({}).then((win) => {
|
|
expect(win).to.eq(this.win)
|
|
})
|
|
})
|
|
})
|
|
|
|
context('.run', () => {
|
|
beforeEach(() => {
|
|
sinon.stub(electron.app, 'whenReady').resolves()
|
|
})
|
|
|
|
it('calls ready with options', () => {
|
|
sinon.stub(interactiveMode, 'ready')
|
|
|
|
const opts = {}
|
|
|
|
return interactiveMode.run(opts).then(() => {
|
|
expect(interactiveMode.ready).to.be.calledWith(opts)
|
|
})
|
|
})
|
|
})
|
|
})
|