Mailspring/internal_packages/notification-update-available/spec/main-spec.coffee
Ben Gotow a94f9ad2a8 fix(autoupdater): Restore auto update functionality, this time with tests
Summary:
fix(autoupdater): Fix bizarrely broken code in autoupdater

fix(urls): Use nilas.com instead of inboxapp

fix(show-main-window): Cmd-1 is the mac standard

fix(autoupdater): TESTS

Test Plan: Run tests

Reviewers: evan

Reviewed By: evan

Differential Revision: https://review.inboxapp.com/D1199
2015-02-18 14:24:34 -08:00

75 lines
2.4 KiB
CoffeeScript

_ = require 'underscore-plus'
proxyquire = require 'proxyquire'
Reflux = require 'reflux'
{Actions} = require 'inbox-exports'
stubUpdaterState = null
stubUpdaterReleaseVersion = null
ipcSendArgs = null
PackageMain = proxyquire "../lib/main",
"ipc":
send: ->
ipcSendArgs = arguments
"remote":
getGlobal: (global) ->
autoUpdateManager:
releaseVersion: stubUpdaterReleaseVersion
getState: -> stubUpdaterState
fdescribe "NotificationUpdateAvailable", ->
beforeEach ->
stubUpdaterState = 'idle'
stubUpdaterReleaseVersion = undefined
ipcSendArgs = null
@package = PackageMain
afterEach ->
@package.deactivate()
describe "activate", ->
it "should display a notification immediately if one is available", ->
spyOn(@package, 'displayNotification')
stubUpdaterState = 'update-available'
@package.activate()
expect(@package.displayNotification).toHaveBeenCalled()
it "should not display a notification if no update is avialable", ->
spyOn(@package, 'displayNotification')
stubUpdaterState = 'no-update-available'
@package.activate()
expect(@package.displayNotification).not.toHaveBeenCalled()
it "should listen for `window:update-available`", ->
spyOn(atom.commands, 'add').andCallThrough()
@package.activate()
args = atom.commands.add.mostRecentCall.args
expect(args[0]).toEqual('atom-workspace')
expect(args[1]).toEqual('window:update-available')
describe "displayNotification", ->
beforeEach ->
@package.activate()
it "should fire a postNotification Action", ->
spyOn(Actions, 'postNotification')
@package.displayNotification()
expect(Actions.postNotification).toHaveBeenCalled()
it "should include the version if one is provided", ->
spyOn(Actions, 'postNotification')
version = '0.515.0-123123'
@package.displayNotification(version)
expect(Actions.postNotification).toHaveBeenCalled()
notifOptions = Actions.postNotification.mostRecentCall.args[0]
expect(notifOptions.message.indexOf(version) > 0).toBe(true)
describe "when the action is taken", ->
it "should fire the `application:install-update` IPC event", ->
Actions.notificationActionTaken({notification: {}, action: {id: 'release-bar:install-update'}})
expect(ipcSendArgs).toEqual(0: 'command', 1: 'application:install-update')