2015-05-22 09:08:29 +08:00
|
|
|
_ = require 'underscore'
|
fix(spec): add support for async specs and disable misbehaving ones
More spec fixes
replace process.nextTick with setTimeout(fn, 0) for specs
Also added an unspy in the afterEach
Temporarily disable specs
fix(spec): start fixing specs
Summary:
This is the WIP fix to our spec runner.
Several tests have been completely commented out that will require
substantially more work to fix. These have been added to our sprint
backlog.
Other tests have been fixed to update to new APIs or to deal with genuine
bugs that were introduced without our knowing!
The most common non-trivial change relates to observing the `NylasAPI` and
`NylasAPIRequest`. We used to observe the arguments to `makeRequest`.
Unfortunately `NylasAPIRequest.run` is argumentless. Instead you can do:
`NylasAPIRequest.prototype.run.mostRecentCall.object.options` to get the
`options` passed into the object. the `.object` property grabs the context
of the spy when it was last called.
Fixing these tests uncovered several concerning issues with our test
runner. I spent a while tracking down why our participant-text-field-spec
was failling every so often. I chose that spec because it was the first
spec to likely fail, thereby requiring looking at the least number of
preceding files. I tried binary searching, turning on and off, several
files beforehand only to realize that the failure rate was not determined
by a particular preceding test, but rather the existing and quantity of
preceding tests, AND the number of console.log statements I had. There is
some processor-dependent race condition going on that needs further
investigation.
I also discovered an issue with the file-download-spec. We were getting
errors about it accessing a file, which was very suspicious given the code
stubs out all fs access. This was caused due to a spec that called an
async function outside ot a `waitsForPromise` block or a `waitsFor` block.
The test completed, the spies were cleaned up, but the downstream async
chain was still running. By the time the async chain finished the runner
was already working on the next spec and the spies had been restored
(causing the real fs access to run).
Juan had an idea to kill the specs once one fails to prevent cascading
failures. I'll implement this in the next diff update
Test Plan: npm test
Reviewers: juan, halla, jackie
Differential Revision: https://phab.nylas.com/D3501
Disable other specs
Disable more broken specs
All specs turned off till passing state
Use async-safe versions of spec functions
Add async test spec
Remove unused package code
Remove canary spec
2016-12-13 04:12:20 +08:00
|
|
|
KeyManager = require('../../src/key-manager').default
|
|
|
|
AccountStore = require('../../src/flux/stores/account-store').default
|
2016-05-05 07:23:19 +08:00
|
|
|
Account = require('../../src/flux/models/account').default
|
2016-10-28 09:48:33 +08:00
|
|
|
Actions = require('../../src/flux/actions').default
|
2015-05-22 09:08:29 +08:00
|
|
|
|
2017-03-02 04:11:13 +08:00
|
|
|
describe "AccountStore", ->
|
2015-05-22 09:08:29 +08:00
|
|
|
beforeEach ->
|
2015-08-06 00:44:34 +08:00
|
|
|
@instance = null
|
feat(accounts): Kill namespaces, long live accounts
Summary:
This diff replaces the Namespace object with the Account object, and changes all references to namespace_id => account_id, etc. The endpoints are now `/threads` instead of `/n/<id>/threads`.
This diff also adds preliminary support for multiple accounts. When you log in, we now log you in to all the attached accounts on edgehill server. From the preferences panel, you can auth with / unlink additional accounts. Shockingly, this all seems to pretty much work.
When replying to a thread, you cannot switch from addresses. However, when creating a new message in a popout composer, you can change the from address and the SaveDraftTask will delete/re-root the draft on the new account.
Search bar doesn't need to do full refresh on clear if it never committed
Allow drafts to be switched to a different account when not in reply to an existing thread
Fix edge case where ChangeMailTask throws exception if no models are modified during performLocal
Show many dots for many accounts in long polling status bar
add/remove accounts from prefs
Spec fixes!
Test Plan: Run tests, none broken!
Reviewers: evan, dillon
Reviewed By: evan, dillon
Differential Revision: https://phab.nylas.com/D1928
2015-08-22 06:29:58 +08:00
|
|
|
@constructor = AccountStore.constructor
|
2016-03-15 06:14:08 +08:00
|
|
|
@keys = {}
|
2016-12-06 09:05:15 +08:00
|
|
|
spyOn(KeyManager, 'getPassword').andCallFake (account) =>
|
2016-03-15 06:14:08 +08:00
|
|
|
@keys[account]
|
2016-12-06 09:05:15 +08:00
|
|
|
spyOn(KeyManager, 'deletePassword').andCallFake (account) =>
|
2016-03-15 06:14:08 +08:00
|
|
|
delete @keys[account]
|
2016-12-06 09:05:15 +08:00
|
|
|
spyOn(KeyManager, 'replacePassword').andCallFake (account, pass) =>
|
2016-03-15 06:14:08 +08:00
|
|
|
@keys[account] = pass
|
2015-05-22 09:08:29 +08:00
|
|
|
|
2016-04-27 06:32:00 +08:00
|
|
|
@spyOnConfig = =>
|
2016-03-15 06:14:08 +08:00
|
|
|
@configVersion = 1
|
|
|
|
@configAccounts =
|
|
|
|
[{
|
|
|
|
"id": "A",
|
|
|
|
"client_id" : 'local-4f9d476a-c173',
|
|
|
|
"server_id" : 'A',
|
|
|
|
"email_address":"bengotow@gmail.com",
|
2017-06-28 02:39:43 +08:00
|
|
|
"__cls":"Account",
|
2017-03-30 05:53:40 +08:00
|
|
|
"aliases": ["Alias <alias@nylas.com>"]
|
2016-03-15 06:14:08 +08:00
|
|
|
},{
|
|
|
|
"id": "B",
|
|
|
|
"client_id" : 'local-4f9d476a-c175',
|
|
|
|
"server_id" : 'B',
|
|
|
|
"email_address":"ben@nylas.com",
|
2017-06-28 02:39:43 +08:00
|
|
|
"__cls":"Account",
|
2016-03-15 06:14:08 +08:00
|
|
|
}]
|
2015-05-22 09:08:29 +08:00
|
|
|
|
2016-03-15 06:14:08 +08:00
|
|
|
spyOn(NylasEnv.config, 'get').andCallFake (key) =>
|
2016-05-14 05:16:54 +08:00
|
|
|
return 'production' if key is 'env'
|
2016-03-15 06:14:08 +08:00
|
|
|
return @configAccounts if key is 'nylas.accounts'
|
|
|
|
return @configVersion if key is 'nylas.accountsVersion'
|
|
|
|
return null
|
2015-09-25 05:51:15 +08:00
|
|
|
|
2016-04-27 06:32:00 +08:00
|
|
|
afterEach ->
|
|
|
|
@instance.stopListeningToAll()
|
|
|
|
|
|
|
|
describe "initialization", ->
|
|
|
|
beforeEach ->
|
|
|
|
spyOn(NylasEnv.config, 'set')
|
|
|
|
@spyOnConfig()
|
|
|
|
|
2016-03-15 06:14:08 +08:00
|
|
|
it "should initialize the accounts and version from config", ->
|
|
|
|
@instance = new @constructor
|
|
|
|
expect(@instance._version).toEqual(@configVersion)
|
|
|
|
expect(@instance.accounts()).toEqual([
|
|
|
|
(new Account).fromJSON(@configAccounts[0]),
|
|
|
|
(new Account).fromJSON(@configAccounts[1])
|
|
|
|
])
|
|
|
|
|
2016-12-06 09:05:15 +08:00
|
|
|
it "should initialize tokens from KeyManager", ->
|
|
|
|
jasmine.unspy(KeyManager, 'getPassword')
|
|
|
|
spyOn(KeyManager, 'getPassword').andCallFake (account) =>
|
2016-12-02 05:50:31 +08:00
|
|
|
return 'AL-TOKEN' if account is 'bengotow@gmail.com.localSync'
|
|
|
|
return 'AC-TOKEN' if account is 'bengotow@gmail.com.n1Cloud'
|
|
|
|
return 'BL-TOKEN' if account is 'ben@nylas.com.localSync'
|
|
|
|
return 'BC-TOKEN' if account is 'ben@nylas.com.n1Cloud'
|
2016-03-15 06:14:08 +08:00
|
|
|
return null
|
|
|
|
@instance = new @constructor
|
2016-12-02 05:50:31 +08:00
|
|
|
expect(@instance.tokensForAccountId('A')).toEqual({localSync: 'AL-TOKEN', n1Cloud: 'AC-TOKEN'})
|
|
|
|
expect(@instance.tokensForAccountId('B')).toEqual({localSync: 'BL-TOKEN', n1Cloud: 'BC-TOKEN'})
|
2015-10-01 01:12:12 +08:00
|
|
|
|
2016-02-07 16:39:11 +08:00
|
|
|
describe "accountForEmail", ->
|
|
|
|
beforeEach ->
|
|
|
|
@instance = new @constructor
|
|
|
|
@ac1 = new Account emailAddress: 'juan@nylas.com', aliases: []
|
|
|
|
@ac2 = new Account emailAddress: 'juan@gmail.com', aliases: ['Juan <juanchis@gmail.com>']
|
|
|
|
@ac3 = new Account emailAddress: 'jackie@columbia.edu', aliases: ['Jackie Luo <jacqueline.luo@columbia.edu>']
|
|
|
|
@instance._accounts = [@ac1, @ac2, @ac3]
|
|
|
|
|
|
|
|
it 'returns correct account when no alises present', ->
|
|
|
|
expect(@instance.accountForEmail('juan@nylas.com')).toEqual @ac1
|
|
|
|
|
|
|
|
it 'returns correct account when alias is used', ->
|
|
|
|
expect(@instance.accountForEmail('juanchis@gmail.com')).toEqual @ac2
|
|
|
|
expect(@instance.accountForEmail('jacqueline.luo@columbia.edu')).toEqual @ac3
|
|
|
|
|
2015-10-01 01:12:12 +08:00
|
|
|
describe "adding account from json", ->
|
|
|
|
beforeEach ->
|
|
|
|
@json =
|
2016-03-15 06:14:08 +08:00
|
|
|
"id": "B",
|
2015-10-01 01:12:12 +08:00
|
|
|
"client_id" : 'local-4f9d476a-c175',
|
2016-03-15 06:14:08 +08:00
|
|
|
"server_id" : 'B',
|
2015-10-01 01:12:12 +08:00
|
|
|
"email_address":"ben@nylas.com",
|
2015-10-06 07:22:22 +08:00
|
|
|
"provider":"gmail",
|
2017-06-27 14:48:55 +08:00
|
|
|
"__cls":"Account",
|
2015-10-01 01:12:12 +08:00
|
|
|
@instance = new @constructor
|
2016-04-27 06:32:00 +08:00
|
|
|
spyOn(NylasEnv.config, "set")
|
2015-10-01 01:12:12 +08:00
|
|
|
spyOn(@instance, "trigger")
|
2016-12-02 05:50:31 +08:00
|
|
|
@instance.addAccountFromJSON(@json, "LOCAL_TOKEN", "CLOUD_TOKEN")
|
2015-10-01 01:12:12 +08:00
|
|
|
|
2016-12-06 09:05:15 +08:00
|
|
|
it "saves the token to KeyManager and to the loaded tokens cache", ->
|
2016-12-02 05:50:31 +08:00
|
|
|
expect(@instance._tokens["B"]).toEqual({n1Cloud: "CLOUD_TOKEN", localSync: "LOCAL_TOKEN"})
|
2016-12-06 09:05:15 +08:00
|
|
|
expect(KeyManager.replacePassword).toHaveBeenCalledWith("ben@nylas.com.localSync", "LOCAL_TOKEN")
|
|
|
|
expect(KeyManager.replacePassword).toHaveBeenCalledWith("ben@nylas.com.n1Cloud", "CLOUD_TOKEN")
|
2015-10-01 01:12:12 +08:00
|
|
|
|
2016-03-15 06:14:08 +08:00
|
|
|
it "saves the account to the accounts cache and saves", ->
|
2015-10-01 01:12:12 +08:00
|
|
|
account = (new Account).fromJSON(@json)
|
|
|
|
expect(@instance._accounts.length).toBe 1
|
|
|
|
expect(@instance._accounts[0]).toEqual account
|
2017-03-02 04:11:13 +08:00
|
|
|
expect(NylasEnv.config.set.calls.length).toBe 2
|
|
|
|
expect(NylasEnv.config.set.calls[0].args).toEqual(['nylas.accounts', [account.toJSON()]])
|
2016-05-17 05:38:46 +08:00
|
|
|
# Version must be updated last since it will trigger other windows to load nylas.accounts
|
2017-03-02 04:11:13 +08:00
|
|
|
expect(NylasEnv.config.set.calls[1].args).toEqual(['nylas.accountsVersion', 1])
|
2015-10-01 01:12:12 +08:00
|
|
|
|
|
|
|
it "triggers", ->
|
|
|
|
expect(@instance.trigger).toHaveBeenCalled()
|
2016-04-27 06:32:00 +08:00
|
|
|
|
|
|
|
describe "when an account with the same ID is already present", ->
|
|
|
|
it "should update it", ->
|
|
|
|
@json =
|
|
|
|
"id": "B",
|
|
|
|
"client_id" : 'local-4f9d476a-c175',
|
|
|
|
"server_id" : 'B',
|
|
|
|
"email_address":"ben@nylas.com",
|
|
|
|
"provider":"gmail",
|
2017-06-27 14:48:55 +08:00
|
|
|
"__cls":"Account"
|
2016-04-27 06:32:00 +08:00
|
|
|
@spyOnConfig()
|
|
|
|
@instance = new @constructor
|
|
|
|
spyOn(@instance, "trigger")
|
|
|
|
expect(@instance._accounts.length).toBe 2
|
2016-12-02 05:50:31 +08:00
|
|
|
@instance.addAccountFromJSON(@json, "B-NEW-LOCAL-TOKEN", "B-NEW-CLOUD-TOKEN")
|
2016-04-27 06:32:00 +08:00
|
|
|
expect(@instance._accounts.length).toBe 2
|
|
|
|
|
|
|
|
describe "when an account with the same email, but different ID, is already present", ->
|
|
|
|
it "should update it", ->
|
|
|
|
@json =
|
|
|
|
"id": "NEVER SEEN BEFORE",
|
|
|
|
"client_id" : 'local-4f9d476a-c175',
|
|
|
|
"server_id" : 'NEVER SEEN BEFORE',
|
|
|
|
"email_address":"ben@nylas.com",
|
|
|
|
"provider":"gmail",
|
2017-06-27 14:48:55 +08:00
|
|
|
"__cls":"Account"
|
2016-04-27 06:32:00 +08:00
|
|
|
@spyOnConfig()
|
|
|
|
@instance = new @constructor
|
|
|
|
spyOn(@instance, "trigger")
|
|
|
|
expect(@instance._accounts.length).toBe 2
|
2016-12-02 05:50:31 +08:00
|
|
|
@instance.addAccountFromJSON(@json, "B-NEW-LOCAL-TOKEN", "B-NEW-CLOUD-TOKEN")
|
2016-04-27 06:32:00 +08:00
|
|
|
expect(@instance._accounts.length).toBe 2
|
|
|
|
expect(@instance.accountForId('B')).toBe(undefined)
|
|
|
|
expect(@instance.accountForId('NEVER SEEN BEFORE')).not.toBe(undefined)
|
2017-03-02 04:11:13 +08:00
|
|
|
|
|
|
|
describe "handleAuthenticationFailure", ->
|
|
|
|
beforeEach ->
|
|
|
|
spyOn(NylasEnv.config, 'set')
|
|
|
|
@spyOnConfig()
|
|
|
|
@instance = new @constructor
|
|
|
|
spyOn(@instance, "trigger")
|
|
|
|
@instance._tokens =
|
|
|
|
"A":
|
|
|
|
localSync: 'token'
|
|
|
|
n1Cloud: 'token'
|
|
|
|
"B":
|
|
|
|
localSync: 'token'
|
|
|
|
n1Cloud: 'token'
|
|
|
|
|
|
|
|
it "should put the account in an `invalid` state", ->
|
|
|
|
spyOn(@instance, "_onUpdateAccount")
|
|
|
|
spyOn(AccountStore, 'tokensForAccountId').andReturn({localSync: 'token'})
|
|
|
|
@instance._onAPIAuthError(new Error(), auth: user: 'token')
|
|
|
|
expect(@instance._onUpdateAccount).toHaveBeenCalled()
|
|
|
|
expect(@instance._onUpdateAccount.callCount).toBe(1)
|
|
|
|
expect(@instance._onUpdateAccount.mostRecentCall.args).toEqual(['A', {syncState: 'invalid'}])
|
|
|
|
|
|
|
|
it "should put the N1 Cloud account in an `invalid` state", ->
|
|
|
|
spyOn(@instance, "_onUpdateAccount")
|
|
|
|
spyOn(AccountStore, 'tokensForAccountId').andReturn({n1Cloud: 'token'})
|
|
|
|
@instance._onAPIAuthError(new Error(), auth: user: 'token', 'N1CloudAPI')
|
|
|
|
expect(@instance._onUpdateAccount).toHaveBeenCalled()
|
|
|
|
expect(@instance._onUpdateAccount.mostRecentCall.args).toEqual(['A', {syncState: 'n1_cloud_auth_failed'}])
|
|
|
|
|
|
|
|
it "should not throw an exception if the account cannot be found", ->
|
|
|
|
spyOn(@instance, "_onUpdateAccount")
|
|
|
|
@instance._onAPIAuthError(new Error(), auth: user: 'not found')
|
|
|
|
expect(@instance._onUpdateAccount).not.toHaveBeenCalled()
|
|
|
|
|
2017-03-30 05:53:40 +08:00
|
|
|
describe "isMyEmail", ->
|
|
|
|
beforeEach ->
|
|
|
|
spyOn(NylasEnv.config, 'set')
|
|
|
|
@spyOnConfig()
|
|
|
|
@instance = new @constructor
|
|
|
|
|
|
|
|
it "works with account emails", ->
|
|
|
|
expect(@instance.isMyEmail("bengotow@gmail.com")).toBe(true)
|
|
|
|
expect(@instance.isMyEmail("ben@nylas.com")).toBe(true)
|
|
|
|
expect(@instance.isMyEmail("foo@bar.com")).toBe(false)
|
|
|
|
expect(@instance.isMyEmail("ben@gmail.com")).toBe(false)
|
|
|
|
|
|
|
|
it "works with multiple emails", ->
|
|
|
|
expect(@instance.isMyEmail(["bengotow@gmail.com", "ben@nylas.com"])).toBe(true)
|
|
|
|
expect(@instance.isMyEmail(["bengotow@gmail.com", "foo@bar.com"])).toBe(true)
|
|
|
|
expect(@instance.isMyEmail(["blah@gmail.com", "foo@bar.com"])).toBe(false)
|
|
|
|
|
|
|
|
it "works with aliases", ->
|
|
|
|
expect(@instance.isMyEmail("alias@nylas.com")).toBe(true)
|
|
|
|
expect(@instance.isMyEmail("foo@bar.com")).toBe(false)
|
|
|
|
|
|
|
|
it "works with miscased emails", ->
|
|
|
|
expect(@instance.isMyEmail("Bengotow@Gmail.com")).toBe(true)
|
|
|
|
expect(@instance.isMyEmail("Ben@Nylas.com ")).toBe(true)
|
|
|
|
|
|
|
|
it "works with plus aliases", ->
|
|
|
|
expect(@instance.isMyEmail("bengotow+stuff@gmail.com")).toBe(true)
|
|
|
|
expect(@instance.isMyEmail("ben+bar+baz@nylas.com")).toBe(true)
|
|
|
|
expect(@instance.isMyEmail("ben=stuff@nylas.com")).toBe(false)
|