2013-09-18 05:58:41 +04:00
|
|
|
require '../src/window'
|
2013-06-27 01:21:01 +04:00
|
|
|
window.setUpEnvironment('spec')
|
2013-10-18 19:43:02 +04:00
|
|
|
atom.restoreDimensions()
|
2013-02-20 23:44:39 +04:00
|
|
|
|
2013-09-17 22:33:56 +04:00
|
|
|
require '../vendor/jasmine-jquery'
|
2013-09-04 04:01:35 +04:00
|
|
|
path = require 'path'
|
2013-09-20 00:51:53 +04:00
|
|
|
{_, $, File, RootView, fs} = require 'atom'
|
2013-09-18 05:58:41 +04:00
|
|
|
Keymap = require '../src/keymap'
|
|
|
|
Config = require '../src/config'
|
2013-07-03 01:40:43 +04:00
|
|
|
{Point} = require 'telepath'
|
2013-09-18 05:58:41 +04:00
|
|
|
Project = require '../src/project'
|
|
|
|
Editor = require '../src/editor'
|
|
|
|
TokenizedBuffer = require '../src/tokenized-buffer'
|
2013-04-07 12:18:08 +04:00
|
|
|
pathwatcher = require 'pathwatcher'
|
2013-10-12 01:09:17 +04:00
|
|
|
platform = require './spec-helper-platform'
|
2013-05-22 22:57:31 +04:00
|
|
|
clipboard = require 'clipboard'
|
2013-09-04 23:38:20 +04:00
|
|
|
|
2013-10-12 01:09:17 +04:00
|
|
|
platform.generateEvilFiles()
|
|
|
|
|
2013-09-25 19:39:16 +04:00
|
|
|
atom.themes.loadBaseStylesheets()
|
|
|
|
atom.themes.requireStylesheet '../static/jasmine'
|
2013-09-04 23:38:20 +04:00
|
|
|
|
2013-09-18 01:54:33 +04:00
|
|
|
fixturePackagesPath = path.resolve(__dirname, './fixtures/packages')
|
2013-10-08 01:52:30 +04:00
|
|
|
atom.packages.packageDirPaths.unshift(fixturePackagesPath)
|
2013-10-02 03:11:08 +04:00
|
|
|
atom.keymap.loadBundledKeymaps()
|
2013-01-04 02:10:11 +04:00
|
|
|
[bindingSetsToRestore, bindingSetsByFirstKeystrokeToRestore] = []
|
2012-12-19 06:47:20 +04:00
|
|
|
|
2013-02-20 23:44:50 +04:00
|
|
|
$(window).on 'core:close', -> window.close()
|
2013-06-27 01:21:01 +04:00
|
|
|
$(window).on 'unload', ->
|
|
|
|
atom.windowMode = 'spec'
|
2013-10-03 04:16:19 +04:00
|
|
|
atom.getWindowState().set('dimensions', atom.getDimensions())
|
2013-06-27 01:21:01 +04:00
|
|
|
atom.saveWindowState()
|
2013-02-20 23:44:50 +04:00
|
|
|
$('html,body').css('overflow', 'auto')
|
|
|
|
|
|
|
|
jasmine.getEnv().addEqualityTester(_.isEqual) # Use underscore's definition of equality for toEqual assertions
|
2013-02-21 04:28:05 +04:00
|
|
|
jasmine.getEnv().defaultTimeoutInterval = 5000
|
2013-02-20 23:44:50 +04:00
|
|
|
|
2013-10-11 00:03:44 +04:00
|
|
|
specPackageName = null
|
|
|
|
specPackagePath = null
|
2013-10-14 22:15:40 +04:00
|
|
|
specProjectPath = null
|
2013-10-11 00:03:44 +04:00
|
|
|
|
|
|
|
if specDirectory = atom.getLoadSettings().specDirectory
|
|
|
|
specPackagePath = path.resolve(specDirectory, '..')
|
|
|
|
try
|
|
|
|
specPackageName = fs.readObjectSync(path.join(specPackagePath, 'package.json'))?.name
|
2013-10-14 22:15:40 +04:00
|
|
|
specProjectPath = path.join(specDirectory, 'fixtures')
|
2013-09-26 23:19:02 +04:00
|
|
|
|
2012-08-28 02:36:36 +04:00
|
|
|
beforeEach ->
|
2013-09-18 05:58:41 +04:00
|
|
|
$.fx.off = true
|
2013-10-14 22:15:40 +04:00
|
|
|
if specProjectPath
|
|
|
|
atom.project = new Project(specProjectPath)
|
|
|
|
else
|
|
|
|
atom.project = new Project(path.join(@specDirectory, 'fixtures'))
|
2013-10-02 03:11:08 +04:00
|
|
|
window.project = atom.project
|
2013-02-28 05:50:37 +04:00
|
|
|
|
2012-08-28 02:36:36 +04:00
|
|
|
window.resetTimeouts()
|
2013-09-30 23:14:30 +04:00
|
|
|
atom.packages.packageStates = {}
|
2013-06-21 00:10:36 +04:00
|
|
|
spyOn(atom, 'saveWindowState')
|
2013-10-02 03:11:08 +04:00
|
|
|
atom.syntax.clearGrammarOverrides()
|
|
|
|
atom.syntax.clearProperties()
|
2012-08-28 02:36:36 +04:00
|
|
|
|
2013-10-31 02:44:18 +04:00
|
|
|
spy = spyOn(atom.packages, 'resolvePackagePath').andCallFake (packageName) ->
|
|
|
|
if specPackageName and packageName is specPackageName
|
|
|
|
resolvePackagePath(specPackagePath)
|
|
|
|
else
|
|
|
|
resolvePackagePath(packageName)
|
|
|
|
resolvePackagePath = _.bind(spy.originalValue, atom.packages)
|
2013-10-11 00:03:44 +04:00
|
|
|
|
2013-01-04 02:10:11 +04:00
|
|
|
# used to reset keymap after each spec
|
2013-10-30 01:15:07 +04:00
|
|
|
bindingSetsToRestore = _.clone(atom.keymap.bindingSets)
|
|
|
|
bindingSetsByFirstKeystrokeToRestore = _.clone(atom.keymap.bindingSetsByFirstKeystroke)
|
2013-01-04 02:10:11 +04:00
|
|
|
|
2013-10-09 03:23:34 +04:00
|
|
|
# prevent specs from modifying Atom's menus
|
|
|
|
spyOn(atom.menu, 'sendToBrowserProcess')
|
|
|
|
|
2013-01-04 02:10:11 +04:00
|
|
|
# reset config before each spec; don't load or save from/to `config.json`
|
2013-10-08 02:28:00 +04:00
|
|
|
config = new Config
|
|
|
|
resourcePath: window.resourcePath
|
|
|
|
configDirPath: atom.getConfigDirPath()
|
2012-12-12 23:40:09 +04:00
|
|
|
spyOn(config, 'load')
|
2012-12-13 03:46:30 +04:00
|
|
|
spyOn(config, 'save')
|
2013-11-11 21:29:29 +04:00
|
|
|
config.set "editor.fontFamily", "Courier"
|
|
|
|
config.set "editor.fontSize", 16
|
|
|
|
config.set "editor.autoIndent", false
|
|
|
|
config.set "core.disabledPackages", ["package-that-throws-an-exception",
|
2013-10-11 22:56:12 +04:00
|
|
|
"package-with-broken-package-json", "package-with-broken-keymap"]
|
2013-11-11 21:29:29 +04:00
|
|
|
config.save.reset()
|
2013-10-02 03:11:08 +04:00
|
|
|
atom.config = config
|
|
|
|
window.config = config
|
2012-12-13 03:23:36 +04:00
|
|
|
|
2012-11-15 00:13:57 +04:00
|
|
|
# make editor display updates synchronous
|
|
|
|
spyOn(Editor.prototype, 'requestDisplayUpdate').andCallFake -> @updateDisplay()
|
2013-02-22 05:22:55 +04:00
|
|
|
spyOn(RootView.prototype, 'setTitle').andCallFake (@title) ->
|
2012-11-17 04:13:08 +04:00
|
|
|
spyOn(window, "setTimeout").andCallFake window.fakeSetTimeout
|
|
|
|
spyOn(window, "clearTimeout").andCallFake window.fakeClearTimeout
|
2012-11-20 00:15:35 +04:00
|
|
|
spyOn(File.prototype, "detectResurrectionAfterDelay").andCallFake -> @detectResurrection()
|
2012-11-15 00:13:57 +04:00
|
|
|
|
2012-11-21 19:22:13 +04:00
|
|
|
# make tokenization synchronous
|
|
|
|
TokenizedBuffer.prototype.chunkSize = Infinity
|
|
|
|
spyOn(TokenizedBuffer.prototype, "tokenizeInBackground").andCallFake -> @tokenizeNextChunk()
|
|
|
|
|
2013-01-10 22:56:55 +04:00
|
|
|
pasteboardContent = 'initial pasteboard content'
|
2013-05-22 22:57:31 +04:00
|
|
|
spyOn(clipboard, 'writeText').andCallFake (text) -> pasteboardContent = text
|
|
|
|
spyOn(clipboard, 'readText').andCallFake -> pasteboardContent
|
2013-01-10 22:56:55 +04:00
|
|
|
|
2013-03-07 23:04:17 +04:00
|
|
|
addCustomMatchers(this)
|
|
|
|
|
2012-08-28 02:36:36 +04:00
|
|
|
afterEach ->
|
2013-10-30 01:15:07 +04:00
|
|
|
atom.keymap.bindingSets = bindingSetsToRestore
|
|
|
|
atom.keymap.bindingSetsByFirstKeystroke = bindingSetsByFirstKeystrokeToRestore
|
2013-03-26 01:37:11 +04:00
|
|
|
atom.deactivatePackages()
|
2013-10-18 22:34:19 +04:00
|
|
|
atom.menu.template = []
|
2013-10-03 02:50:47 +04:00
|
|
|
|
|
|
|
window.rootView?.remove?()
|
|
|
|
atom.rootView?.remove?() if atom.rootView isnt window.rootView
|
|
|
|
window.rootView = null
|
|
|
|
atom.rootView = null
|
|
|
|
|
|
|
|
window.project?.destroy?()
|
|
|
|
atom.project?.destroy?() if atom.project isnt window.project
|
|
|
|
window.project = null
|
|
|
|
atom.project = null
|
|
|
|
|
2013-06-26 23:43:00 +04:00
|
|
|
$('#jasmine-content').empty() unless window.debugContent
|
2013-06-28 14:23:12 +04:00
|
|
|
delete atom.windowState
|
2013-06-21 00:10:36 +04:00
|
|
|
jasmine.unspy(atom, 'saveWindowState')
|
2012-11-29 04:16:15 +04:00
|
|
|
ensureNoPathSubscriptions()
|
2013-11-11 20:53:52 +04:00
|
|
|
atom.syntax.off()
|
2012-11-29 04:16:15 +04:00
|
|
|
waits(0) # yield to ui thread to make screen update more frequently
|
2012-11-29 00:40:37 +04:00
|
|
|
|
2012-08-28 02:36:36 +04:00
|
|
|
ensureNoPathSubscriptions = ->
|
2013-04-07 12:18:08 +04:00
|
|
|
watchedPaths = pathwatcher.getWatchedPaths()
|
|
|
|
pathwatcher.closeAllWatchers()
|
2012-11-29 04:16:15 +04:00
|
|
|
if watchedPaths.length > 0
|
|
|
|
throw new Error("Leaking subscriptions for paths: " + watchedPaths.join(", "))
|
2012-08-28 02:36:36 +04:00
|
|
|
|
|
|
|
emitObject = jasmine.StringPrettyPrinter.prototype.emitObject
|
|
|
|
jasmine.StringPrettyPrinter.prototype.emitObject = (obj) ->
|
|
|
|
if obj.inspect
|
|
|
|
@append obj.inspect()
|
|
|
|
else
|
|
|
|
emitObject.call(this, obj)
|
|
|
|
|
2012-11-17 04:12:04 +04:00
|
|
|
jasmine.unspy = (object, methodName) ->
|
|
|
|
throw new Error("Not a spy") unless object[methodName].originalValue?
|
|
|
|
object[methodName] = object[methodName].originalValue
|
|
|
|
|
2013-03-07 23:04:17 +04:00
|
|
|
addCustomMatchers = (spec) ->
|
|
|
|
spec.addMatchers
|
|
|
|
toBeInstanceOf: (expected) ->
|
|
|
|
notText = if @isNot then " not" else ""
|
|
|
|
this.message = => "Expected #{jasmine.pp(@actual)} to#{notText} be instance of #{expected.name} class"
|
|
|
|
@actual instanceof expected
|
|
|
|
|
|
|
|
toHaveLength: (expected) ->
|
2013-09-09 20:28:36 +04:00
|
|
|
if not @actual?
|
|
|
|
this.message = => "Expected object #{@actual} has no length method"
|
|
|
|
false
|
|
|
|
else
|
|
|
|
notText = if @isNot then " not" else ""
|
|
|
|
this.message = => "Expected object with length #{@actual.length} to#{notText} have length #{expected}"
|
|
|
|
@actual.length == expected
|
2013-03-07 23:04:17 +04:00
|
|
|
|
2013-03-13 03:55:28 +04:00
|
|
|
toExistOnDisk: (expected) ->
|
|
|
|
notText = this.isNot and " not" or ""
|
|
|
|
@message = -> return "Expected path '" + @actual + "'" + notText + " to exist."
|
2013-11-01 00:43:44 +04:00
|
|
|
fs.existsSync(@actual)
|
2013-03-13 03:55:28 +04:00
|
|
|
|
2012-08-28 02:36:36 +04:00
|
|
|
window.keyIdentifierForKey = (key) ->
|
|
|
|
if key.length > 1 # named key
|
|
|
|
key
|
|
|
|
else
|
|
|
|
charCode = key.toUpperCase().charCodeAt(0)
|
|
|
|
"U+00" + charCode.toString(16)
|
|
|
|
|
|
|
|
window.keydownEvent = (key, properties={}) ->
|
2013-02-09 02:56:55 +04:00
|
|
|
properties = $.extend({originalEvent: { keyIdentifier: keyIdentifierForKey(key) }}, properties)
|
|
|
|
$.Event("keydown", properties)
|
2012-08-28 02:36:36 +04:00
|
|
|
|
|
|
|
window.mouseEvent = (type, properties) ->
|
|
|
|
if properties.point
|
|
|
|
{point, editor} = properties
|
|
|
|
{top, left} = @pagePixelPositionForPoint(editor, point)
|
|
|
|
properties.pageX = left + 1
|
|
|
|
properties.pageY = top + 1
|
|
|
|
properties.originalEvent ?= {detail: 1}
|
|
|
|
$.Event type, properties
|
|
|
|
|
|
|
|
window.clickEvent = (properties={}) ->
|
|
|
|
window.mouseEvent("click", properties)
|
|
|
|
|
|
|
|
window.mousedownEvent = (properties={}) ->
|
|
|
|
window.mouseEvent('mousedown', properties)
|
|
|
|
|
|
|
|
window.mousemoveEvent = (properties={}) ->
|
|
|
|
window.mouseEvent('mousemove', properties)
|
|
|
|
|
|
|
|
window.waitsForPromise = (args...) ->
|
|
|
|
if args.length > 1
|
2013-09-24 03:44:59 +04:00
|
|
|
{ shouldReject, timeout } = args[0]
|
2012-08-28 02:36:36 +04:00
|
|
|
else
|
|
|
|
shouldReject = false
|
|
|
|
fn = _.last(args)
|
|
|
|
|
2013-09-24 03:44:59 +04:00
|
|
|
window.waitsFor timeout, (moveOn) ->
|
2012-08-28 02:36:36 +04:00
|
|
|
promise = fn()
|
|
|
|
if shouldReject
|
|
|
|
promise.fail(moveOn)
|
|
|
|
promise.done ->
|
|
|
|
jasmine.getEnv().currentSpec.fail("Expected promise to be rejected, but it was resolved")
|
|
|
|
moveOn()
|
|
|
|
else
|
|
|
|
promise.done(moveOn)
|
|
|
|
promise.fail (error) ->
|
|
|
|
jasmine.getEnv().currentSpec.fail("Expected promise to be resolved, but it was rejected with #{jasmine.pp(error)}")
|
|
|
|
moveOn()
|
|
|
|
|
|
|
|
window.resetTimeouts = ->
|
|
|
|
window.now = 0
|
|
|
|
window.timeoutCount = 0
|
|
|
|
window.timeouts = []
|
|
|
|
|
2012-11-17 04:13:08 +04:00
|
|
|
window.fakeSetTimeout = (callback, ms) ->
|
2012-08-28 02:36:36 +04:00
|
|
|
id = ++window.timeoutCount
|
|
|
|
window.timeouts.push([id, window.now + ms, callback])
|
|
|
|
id
|
|
|
|
|
2012-11-17 04:13:08 +04:00
|
|
|
window.fakeClearTimeout = (idToClear) ->
|
2012-08-28 02:36:36 +04:00
|
|
|
window.timeouts = window.timeouts.filter ([id]) -> id != idToClear
|
|
|
|
|
|
|
|
window.advanceClock = (delta=1) ->
|
|
|
|
window.now += delta
|
2012-11-20 03:50:07 +04:00
|
|
|
callbacks = []
|
|
|
|
|
2012-08-28 02:36:36 +04:00
|
|
|
window.timeouts = window.timeouts.filter ([id, strikeTime, callback]) ->
|
|
|
|
if strikeTime <= window.now
|
2012-11-20 03:50:07 +04:00
|
|
|
callbacks.push(callback)
|
2012-08-28 02:36:36 +04:00
|
|
|
false
|
|
|
|
else
|
|
|
|
true
|
|
|
|
|
2012-11-20 03:50:07 +04:00
|
|
|
callback() for callback in callbacks
|
|
|
|
|
2012-08-28 02:36:36 +04:00
|
|
|
window.pagePixelPositionForPoint = (editor, point) ->
|
|
|
|
point = Point.fromObject point
|
|
|
|
top = editor.renderedLines.offset().top + point.row * editor.lineHeight
|
|
|
|
left = editor.renderedLines.offset().left + point.column * editor.charWidth - editor.renderedLines.scrollLeft()
|
|
|
|
{ top, left }
|
|
|
|
|
|
|
|
window.tokensText = (tokens) ->
|
|
|
|
_.pluck(tokens, 'value').join('')
|
|
|
|
|
|
|
|
window.setEditorWidthInChars = (editor, widthInChars, charWidth=editor.charWidth) ->
|
2012-09-25 23:27:46 +04:00
|
|
|
editor.width(charWidth * widthInChars + editor.gutter.outerWidth())
|
2012-08-28 02:36:36 +04:00
|
|
|
$(window).trigger 'resize' # update width of editor's on-screen lines
|
|
|
|
|
|
|
|
window.setEditorHeightInLines = (editor, heightInChars, charHeight=editor.lineHeight) ->
|
|
|
|
editor.height(charHeight * heightInChars + editor.renderedLines.position().top)
|
|
|
|
$(window).trigger 'resize' # update editor's on-screen lines
|
|
|
|
|
|
|
|
$.fn.resultOfTrigger = (type) ->
|
|
|
|
event = $.Event(type)
|
|
|
|
this.trigger(event)
|
|
|
|
event.result
|
|
|
|
|
|
|
|
$.fn.enableKeymap = ->
|
2013-10-30 01:15:07 +04:00
|
|
|
@on 'keydown', (e) => atom.keymap.handleKeyEvent(e)
|
2012-08-28 02:36:36 +04:00
|
|
|
|
|
|
|
$.fn.attachToDom = ->
|
2013-06-26 21:39:12 +04:00
|
|
|
@appendTo($('#jasmine-content'))
|
2012-08-28 02:36:36 +04:00
|
|
|
|
|
|
|
$.fn.simulateDomAttachment = ->
|
|
|
|
$('<html>').append(this)
|
|
|
|
|
|
|
|
$.fn.textInput = (data) ->
|
|
|
|
this.each ->
|
|
|
|
event = document.createEvent('TextEvent')
|
|
|
|
event.initTextEvent('textInput', true, true, window, data)
|
2013-09-18 05:58:41 +04:00
|
|
|
event = $.event.fix(event)
|
2012-08-28 02:36:36 +04:00
|
|
|
$(this).trigger(event)
|