1139 lines
32 KiB
JavaScript
1139 lines
32 KiB
JavaScript
describe('auth()', () => {
|
|
beforeEach(async () => {
|
|
if (firebase.auth().currentUser) await firebase.auth().signOut();
|
|
});
|
|
|
|
describe('applyActionCode()', () => {
|
|
it('errors on invalid code', async () => {
|
|
try {
|
|
await firebase.auth().applyActionCode('fooby shooby dooby');
|
|
} catch (e) {
|
|
e.message.should.containEql('code is invalid');
|
|
}
|
|
});
|
|
|
|
xit('accepts a valid code', async () => {
|
|
// todo not sure how to generate a code yet - maybe via admin sdk?
|
|
});
|
|
});
|
|
|
|
describe('checkActionCode()', () => {
|
|
it('errors on invalid code', async () => {
|
|
try {
|
|
await firebase.auth().checkActionCode('fooby shooby dooby');
|
|
} catch (e) {
|
|
e.message.should.containEql('code is invalid');
|
|
}
|
|
});
|
|
|
|
xit('accepts a valid code', async () => {
|
|
// todo not sure how to generate a code yet - maybe via admin sdk?
|
|
});
|
|
});
|
|
|
|
describe('verifyPasswordResetCode()', () => {
|
|
it('errors on invalid code', async () => {
|
|
try {
|
|
await firebase.auth().verifyPasswordResetCode('fooby shooby dooby');
|
|
} catch (e) {
|
|
e.message.should.containEql('code is invalid');
|
|
}
|
|
});
|
|
|
|
xit('accepts a valid code', async () => {
|
|
// todo not sure how to generate a code yet - maybe via admin sdk?
|
|
});
|
|
});
|
|
|
|
describe('confirmPasswordReset()', () => {
|
|
it('errors on invalid code', async () => {
|
|
try {
|
|
await firebase
|
|
.auth()
|
|
.confirmPasswordReset('fooby shooby dooby', 'passwordthing');
|
|
} catch (e) {
|
|
e.message.should.containEql('code is invalid');
|
|
}
|
|
});
|
|
|
|
xit('accepts a valid code', async () => {
|
|
// todo not sure how to generate a code yet - maybe via admin sdk?
|
|
});
|
|
});
|
|
|
|
describe('signInWithCustomToken()', () => {
|
|
it('signs in with a admin sdk created custom auth token', async () => {
|
|
const customUID = `custom${randomString(12, '#aA')}`;
|
|
const token = await firebaseAdmin.auth().createCustomToken(customUID);
|
|
const user = await firebase.auth().signInWithCustomToken(token);
|
|
user.uid.should.equal(customUID);
|
|
firebase.auth().currentUser.uid.should.equal(customUID);
|
|
|
|
await firebase.auth().signOut();
|
|
const {
|
|
user: user2,
|
|
} = await firebase.auth().signInAndRetrieveDataWithCustomToken(token);
|
|
|
|
user2.uid.should.equal(customUID);
|
|
firebase.auth().currentUser.uid.should.equal(customUID);
|
|
});
|
|
});
|
|
|
|
describe('onAuthStateChanged()', () => {
|
|
it('calls callback with the current user and when auth state changes', async () => {
|
|
await firebase.auth().signInAnonymouslyAndRetrieveData();
|
|
|
|
// Test
|
|
const callback = sinon.spy();
|
|
|
|
let unsubscribe;
|
|
await new Promise(resolve => {
|
|
unsubscribe = firebase.auth().onAuthStateChanged(user => {
|
|
callback(user);
|
|
resolve();
|
|
});
|
|
});
|
|
|
|
callback.should.be.calledWith(firebase.auth().currentUser);
|
|
callback.should.be.calledOnce();
|
|
|
|
// Sign out
|
|
|
|
await firebase.auth().signOut();
|
|
|
|
await new Promise(resolve => {
|
|
setTimeout(() => resolve(), 5);
|
|
});
|
|
|
|
// Assertions
|
|
|
|
callback.should.be.calledWith(null);
|
|
callback.should.be.calledTwice();
|
|
|
|
// Tear down
|
|
|
|
unsubscribe();
|
|
});
|
|
|
|
it('stops listening when unsubscribed', async () => {
|
|
await firebase.auth().signInAnonymouslyAndRetrieveData();
|
|
|
|
// Test
|
|
const callback = sinon.spy();
|
|
|
|
let unsubscribe;
|
|
await new Promise(resolve => {
|
|
unsubscribe = firebase.auth().onAuthStateChanged(user => {
|
|
callback(user);
|
|
resolve();
|
|
});
|
|
});
|
|
|
|
callback.should.be.calledWith(firebase.auth().currentUser);
|
|
callback.should.be.calledOnce();
|
|
|
|
// Sign out
|
|
|
|
await firebase.auth().signOut();
|
|
|
|
await new Promise(resolve => {
|
|
setTimeout(() => resolve(), 5);
|
|
});
|
|
|
|
// Assertions
|
|
|
|
callback.should.be.calledWith(null);
|
|
callback.should.be.calledTwice();
|
|
|
|
// Unsubscribe
|
|
|
|
unsubscribe();
|
|
|
|
// Sign back in
|
|
|
|
await firebase.auth().signInAnonymouslyAndRetrieveData();
|
|
|
|
// Assertions
|
|
|
|
callback.should.be.calledTwice();
|
|
|
|
// Tear down
|
|
|
|
await firebase.auth().signOut();
|
|
});
|
|
});
|
|
|
|
describe('onIdTokenChanged()', () => {
|
|
it('calls callback with the current user and when auth state changes', async () => {
|
|
await firebase.auth().signInAnonymouslyAndRetrieveData();
|
|
|
|
// Test
|
|
const callback = sinon.spy();
|
|
|
|
let unsubscribe;
|
|
await new Promise(resolve => {
|
|
unsubscribe = firebase.auth().onIdTokenChanged(user => {
|
|
callback(user);
|
|
resolve();
|
|
});
|
|
});
|
|
|
|
callback.should.be.calledWith(firebase.auth().currentUser);
|
|
callback.should.be.calledOnce();
|
|
|
|
// Sign out
|
|
|
|
await firebase.auth().signOut();
|
|
|
|
await new Promise(resolve => {
|
|
setTimeout(() => resolve(), 5);
|
|
});
|
|
|
|
// Assertions
|
|
|
|
callback.should.be.calledWith(null);
|
|
callback.should.be.calledTwice();
|
|
|
|
// Tear down
|
|
|
|
unsubscribe();
|
|
});
|
|
|
|
it('stops listening when unsubscribed', async () => {
|
|
await firebase.auth().signInAnonymouslyAndRetrieveData();
|
|
|
|
// Test
|
|
const callback = sinon.spy();
|
|
|
|
let unsubscribe;
|
|
await new Promise(resolve => {
|
|
unsubscribe = firebase.auth().onIdTokenChanged(user => {
|
|
callback(user);
|
|
resolve();
|
|
});
|
|
});
|
|
|
|
callback.should.be.calledWith(firebase.auth().currentUser);
|
|
callback.should.be.calledOnce();
|
|
|
|
// Sign out
|
|
|
|
await firebase.auth().signOut();
|
|
|
|
await new Promise(resolve => {
|
|
setTimeout(() => resolve(), 5);
|
|
});
|
|
|
|
// Assertions
|
|
|
|
callback.should.be.calledWith(null);
|
|
callback.should.be.calledTwice();
|
|
|
|
// Unsubscribe
|
|
|
|
unsubscribe();
|
|
|
|
// Sign back in
|
|
|
|
await firebase.auth().signInAnonymouslyAndRetrieveData();
|
|
|
|
// Assertions
|
|
|
|
callback.should.be.calledTwice();
|
|
|
|
// Tear down
|
|
|
|
await firebase.auth().signOut();
|
|
});
|
|
});
|
|
|
|
describe('onUserChanged()', () => {
|
|
it('calls callback with the current user and when auth state changes', async () => {
|
|
await firebase.auth().signInAnonymouslyAndRetrieveData();
|
|
|
|
// Test
|
|
const callback = sinon.spy();
|
|
|
|
let unsubscribe;
|
|
await new Promise(resolve => {
|
|
unsubscribe = firebase.auth().onUserChanged(user => {
|
|
callback(user);
|
|
resolve();
|
|
});
|
|
});
|
|
|
|
callback.should.be.calledWith(firebase.auth().currentUser);
|
|
callback.should.be.calledOnce();
|
|
|
|
// Sign out
|
|
|
|
await firebase.auth().signOut();
|
|
|
|
await new Promise(resolve => {
|
|
setTimeout(() => resolve(), 5);
|
|
});
|
|
|
|
// Assertions
|
|
|
|
callback.should.be.calledWith(null);
|
|
// Because of the way onUserChanged works, it will be called double
|
|
// - once for onAuthStateChanged
|
|
// - once for onIdTokenChanged
|
|
callback.should.have.callCount(4);
|
|
|
|
// Tear down
|
|
|
|
unsubscribe();
|
|
});
|
|
|
|
it('stops listening when unsubscribed', async () => {
|
|
await firebase.auth().signInAnonymouslyAndRetrieveData();
|
|
|
|
// Test
|
|
const callback = sinon.spy();
|
|
|
|
let unsubscribe;
|
|
await new Promise(resolve => {
|
|
unsubscribe = firebase.auth().onUserChanged(user => {
|
|
callback(user);
|
|
resolve();
|
|
});
|
|
});
|
|
|
|
callback.should.be.calledWith(firebase.auth().currentUser);
|
|
callback.should.be.calledOnce();
|
|
|
|
// Sign out
|
|
|
|
await firebase.auth().signOut();
|
|
|
|
await new Promise(resolve => {
|
|
setTimeout(() => resolve(), 5);
|
|
});
|
|
|
|
// Assertions
|
|
|
|
callback.should.be.calledWith(null);
|
|
// Because of the way onUserChanged works, it will be called double
|
|
// - once for onAuthStateChanged
|
|
// - once for onIdTokenChanged
|
|
callback.should.have.callCount(4);
|
|
|
|
// Unsubscribe
|
|
|
|
unsubscribe();
|
|
|
|
// Sign back in
|
|
|
|
await firebase.auth().signInAnonymouslyAndRetrieveData();
|
|
|
|
// Assertions
|
|
|
|
callback.should.have.callCount(4);
|
|
|
|
// Tear down
|
|
|
|
await firebase.auth().signOut();
|
|
});
|
|
});
|
|
|
|
describe('signInAnonymously()', () => {
|
|
it('it should sign in anonymously', () => {
|
|
const successCb = currentUser => {
|
|
currentUser.should.be.an.Object();
|
|
currentUser.uid.should.be.a.String();
|
|
currentUser.toJSON().should.be.an.Object();
|
|
should.equal(currentUser.toJSON().email, null);
|
|
currentUser.isAnonymous.should.equal(true);
|
|
currentUser.providerId.should.equal('firebase');
|
|
|
|
currentUser.should.equal(firebase.auth().currentUser);
|
|
|
|
return firebase.auth().signOut();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInAnonymously()
|
|
.then(successCb);
|
|
});
|
|
});
|
|
|
|
describe('signInAnonymouslyAndRetrieveData()', () => {
|
|
it('it should sign in anonymously', () => {
|
|
const successCb = currentUserCredential => {
|
|
const currentUser = currentUserCredential.user;
|
|
currentUser.should.be.an.Object();
|
|
currentUser.uid.should.be.a.String();
|
|
currentUser.toJSON().should.be.an.Object();
|
|
should.equal(currentUser.toJSON().email, null);
|
|
currentUser.isAnonymous.should.equal(true);
|
|
currentUser.providerId.should.equal('firebase');
|
|
currentUser.should.equal(firebase.auth().currentUser);
|
|
|
|
const { additionalUserInfo } = currentUserCredential;
|
|
additionalUserInfo.should.be.an.Object();
|
|
|
|
return firebase.auth().signOut();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInAnonymouslyAndRetrieveData()
|
|
.then(successCb);
|
|
});
|
|
});
|
|
|
|
describe('signInWithEmailAndPassword()', () => {
|
|
it('it should login with email and password', () => {
|
|
const email = 'test@test.com';
|
|
const pass = 'test1234';
|
|
|
|
const successCb = currentUser => {
|
|
currentUser.should.be.an.Object();
|
|
currentUser.uid.should.be.a.String();
|
|
currentUser.toJSON().should.be.an.Object();
|
|
currentUser.toJSON().email.should.eql('test@test.com');
|
|
currentUser.isAnonymous.should.equal(false);
|
|
currentUser.providerId.should.equal('firebase');
|
|
currentUser.should.equal(firebase.auth().currentUser);
|
|
|
|
return firebase.auth().signOut();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInWithEmailAndPassword(email, pass)
|
|
.then(successCb);
|
|
});
|
|
|
|
it('it should error on login if user is disabled', () => {
|
|
const email = 'disabled@account.com';
|
|
const pass = 'test1234';
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/user-disabled');
|
|
error.message.should.equal(
|
|
'The user account has been disabled by an administrator.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on login if password incorrect', () => {
|
|
const email = 'test@test.com';
|
|
const pass = 'test1234666';
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/wrong-password');
|
|
error.message.should.equal(
|
|
'The password is invalid or the user does not have a password.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on login if user not found', () => {
|
|
const email = 'randomSomeone@fourOhFour.com';
|
|
const pass = 'test1234';
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/user-not-found');
|
|
error.message.should.equal(
|
|
'There is no user record corresponding to this identifier. The user may have been deleted.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
});
|
|
|
|
describe('signInAndRetrieveDataWithEmailAndPassword()', () => {
|
|
it('it should login with email and password', () => {
|
|
const email = 'test@test.com';
|
|
const pass = 'test1234';
|
|
|
|
const successCb = currentUserCredential => {
|
|
const currentUser = currentUserCredential.user;
|
|
currentUser.should.be.an.Object();
|
|
currentUser.uid.should.be.a.String();
|
|
currentUser.toJSON().should.be.an.Object();
|
|
currentUser.toJSON().email.should.eql('test@test.com');
|
|
currentUser.isAnonymous.should.equal(false);
|
|
currentUser.providerId.should.equal('firebase');
|
|
currentUser.should.equal(firebase.auth().currentUser);
|
|
|
|
const { additionalUserInfo } = currentUserCredential;
|
|
additionalUserInfo.should.be.an.Object();
|
|
additionalUserInfo.isNewUser.should.equal(false);
|
|
|
|
return firebase.auth().signOut();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInAndRetrieveDataWithEmailAndPassword(email, pass)
|
|
.then(successCb);
|
|
});
|
|
|
|
it('it should error on login if user is disabled', () => {
|
|
const email = 'disabled@account.com';
|
|
const pass = 'test1234';
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/user-disabled');
|
|
error.message.should.equal(
|
|
'The user account has been disabled by an administrator.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInAndRetrieveDataWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on login if password incorrect', () => {
|
|
const email = 'test@test.com';
|
|
const pass = 'test1234666';
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/wrong-password');
|
|
error.message.should.equal(
|
|
'The password is invalid or the user does not have a password.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInAndRetrieveDataWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on login if user not found', () => {
|
|
const email = 'randomSomeone@fourOhFour.com';
|
|
const pass = 'test1234';
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/user-not-found');
|
|
error.message.should.equal(
|
|
'There is no user record corresponding to this identifier. The user may have been deleted.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInAndRetrieveDataWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
});
|
|
|
|
describe('signInWithCredential()', () => {
|
|
it('it should login with email and password', () => {
|
|
const credential = firebase.auth.EmailAuthProvider.credential(
|
|
'test@test.com',
|
|
'test1234'
|
|
);
|
|
|
|
const successCb = currentUser => {
|
|
currentUser.should.be.an.Object();
|
|
currentUser.uid.should.be.a.String();
|
|
currentUser.toJSON().should.be.an.Object();
|
|
currentUser.toJSON().email.should.eql('test@test.com');
|
|
currentUser.isAnonymous.should.equal(false);
|
|
currentUser.providerId.should.equal('firebase');
|
|
currentUser.should.equal(firebase.auth().currentUser);
|
|
|
|
return firebase.auth().signOut();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInWithCredential(credential)
|
|
.then(successCb);
|
|
});
|
|
|
|
it('it should error on login if user is disabled', () => {
|
|
const credential = firebase.auth.EmailAuthProvider.credential(
|
|
'disabled@account.com',
|
|
'test1234'
|
|
);
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/user-disabled');
|
|
error.message.should.equal(
|
|
'The user account has been disabled by an administrator.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInWithCredential(credential)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on login if password incorrect', () => {
|
|
const credential = firebase.auth.EmailAuthProvider.credential(
|
|
'test@test.com',
|
|
'test1234666'
|
|
);
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/wrong-password');
|
|
error.message.should.equal(
|
|
'The password is invalid or the user does not have a password.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInWithCredential(credential)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on login if user not found', () => {
|
|
const credential = firebase.auth.EmailAuthProvider.credential(
|
|
'randomSomeone@fourOhFour.com',
|
|
'test1234'
|
|
);
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/user-not-found');
|
|
error.message.should.equal(
|
|
'There is no user record corresponding to this identifier. The user may have been deleted.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInWithCredential(credential)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
});
|
|
|
|
describe('signInAndRetrieveDataWithCredential()', () => {
|
|
it('it should login with email and password', () => {
|
|
const credential = firebase.auth.EmailAuthProvider.credential(
|
|
'test@test.com',
|
|
'test1234'
|
|
);
|
|
|
|
const successCb = currentUserCredential => {
|
|
const currentUser = currentUserCredential.user;
|
|
currentUser.should.be.an.Object();
|
|
currentUser.uid.should.be.a.String();
|
|
currentUser.toJSON().should.be.an.Object();
|
|
currentUser.toJSON().email.should.eql('test@test.com');
|
|
currentUser.isAnonymous.should.equal(false);
|
|
currentUser.providerId.should.equal('firebase');
|
|
currentUser.should.equal(firebase.auth().currentUser);
|
|
|
|
const { additionalUserInfo } = currentUserCredential;
|
|
additionalUserInfo.should.be.an.Object();
|
|
additionalUserInfo.isNewUser.should.equal(false);
|
|
|
|
return firebase.auth().signOut();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInAndRetrieveDataWithCredential(credential)
|
|
.then(successCb);
|
|
});
|
|
|
|
it('it should error on login if user is disabled', () => {
|
|
const credential = firebase.auth.EmailAuthProvider.credential(
|
|
'disabled@account.com',
|
|
'test1234'
|
|
);
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/user-disabled');
|
|
error.message.should.equal(
|
|
'The user account has been disabled by an administrator.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInAndRetrieveDataWithCredential(credential)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on login if password incorrect', () => {
|
|
const credential = firebase.auth.EmailAuthProvider.credential(
|
|
'test@test.com',
|
|
'test1234666'
|
|
);
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/wrong-password');
|
|
error.message.should.equal(
|
|
'The password is invalid or the user does not have a password.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInAndRetrieveDataWithCredential(credential)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on login if user not found', () => {
|
|
const credential = firebase.auth.EmailAuthProvider.credential(
|
|
'randomSomeone@fourOhFour.com',
|
|
'test1234'
|
|
);
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/user-not-found');
|
|
error.message.should.equal(
|
|
'There is no user record corresponding to this identifier. The user may have been deleted.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signInAndRetrieveDataWithCredential(credential)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
});
|
|
|
|
describe('createUserWithEmailAndPassword()', () => {
|
|
it('it should create a user with an email and password', () => {
|
|
const random = randomString(12, '#aA');
|
|
const email = `${random}@${random}.com`;
|
|
const pass = random;
|
|
|
|
const successCb = newUser => {
|
|
newUser.uid.should.be.a.String();
|
|
newUser.email.should.equal(email.toLowerCase());
|
|
newUser.emailVerified.should.equal(false);
|
|
newUser.isAnonymous.should.equal(false);
|
|
newUser.providerId.should.equal('firebase');
|
|
newUser.should.equal(firebase.auth().currentUser);
|
|
newUser.metadata.should.be.an.Object();
|
|
should.equal(newUser.phoneNumber, null);
|
|
|
|
return newUser.delete();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.createUserWithEmailAndPassword(email, pass)
|
|
.then(successCb);
|
|
});
|
|
|
|
it('it should error on create with invalid email', () => {
|
|
const random = randomString(12, '#aA');
|
|
const email = `${random}${random}.com.boop.shoop`;
|
|
const pass = random;
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/invalid-email');
|
|
error.message.should.equal('The email address is badly formatted.');
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.createUserWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on create if email in use', () => {
|
|
const email = 'test@test.com';
|
|
const pass = 'test123456789';
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/email-already-in-use');
|
|
error.message.should.equal(
|
|
'The email address is already in use by another account.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.createUserWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on create if password weak', () => {
|
|
const email = 'testy@testy.com';
|
|
const pass = '123';
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/weak-password');
|
|
// cannot test this message - it's different on the web client than ios/android return
|
|
// error.message.should.equal('The given password is invalid.');
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.createUserWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
});
|
|
|
|
describe('createUserAndRetrieveDataWithEmailAndPassword()', () => {
|
|
it('it should create a user with an email and password', () => {
|
|
const random = randomString(12, '#aA');
|
|
const email = `${random}@${random}.com`;
|
|
const pass = random;
|
|
|
|
const successCb = newUserCredential => {
|
|
const newUser = newUserCredential.user;
|
|
newUser.uid.should.be.a.String();
|
|
newUser.email.should.equal(email.toLowerCase());
|
|
newUser.emailVerified.should.equal(false);
|
|
newUser.isAnonymous.should.equal(false);
|
|
newUser.providerId.should.equal('firebase');
|
|
newUser.should.equal(firebase.auth().currentUser);
|
|
const { additionalUserInfo } = newUserCredential;
|
|
additionalUserInfo.should.be.an.Object();
|
|
additionalUserInfo.isNewUser.should.equal(true);
|
|
|
|
return newUser.delete();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.createUserAndRetrieveDataWithEmailAndPassword(email, pass)
|
|
.then(successCb);
|
|
});
|
|
|
|
it('it should error on create with invalid email', () => {
|
|
const random = randomString(12, '#aA');
|
|
const email = `${random}${random}.com.boop.shoop`;
|
|
const pass = random;
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/invalid-email');
|
|
error.message.should.equal('The email address is badly formatted.');
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.createUserAndRetrieveDataWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on create if email in use', () => {
|
|
const email = 'test@test.com';
|
|
const pass = 'test123456789';
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/email-already-in-use');
|
|
error.message.should.equal(
|
|
'The email address is already in use by another account.'
|
|
);
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.createUserAndRetrieveDataWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
|
|
it('it should error on create if password weak', () => {
|
|
const email = 'testy@testy.com';
|
|
const pass = '123';
|
|
|
|
const successCb = () => Promise.reject(new Error('Did not error.'));
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/weak-password');
|
|
// cannot test this message - it's different on the web client than ios/android return
|
|
// error.message.should.equal('The given password is invalid.');
|
|
return Promise.resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.createUserAndRetrieveDataWithEmailAndPassword(email, pass)
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
});
|
|
});
|
|
|
|
describe('fetchProvidersForEmail()', () => {
|
|
it('it should return password provider for an email address', () =>
|
|
new Promise((resolve, reject) => {
|
|
const successCb = providers => {
|
|
providers.should.be.a.Array();
|
|
providers.should.containEql('password');
|
|
resolve();
|
|
};
|
|
|
|
const failureCb = () => {
|
|
reject(new Error('Should not have an error.'));
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.fetchProvidersForEmail('test@test.com')
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
}));
|
|
|
|
it('it should return an empty array for a not found email', () =>
|
|
new Promise((resolve, reject) => {
|
|
const successCb = providers => {
|
|
providers.should.be.a.Array();
|
|
providers.should.be.empty();
|
|
resolve();
|
|
};
|
|
|
|
const failureCb = () => {
|
|
reject(new Error('Should not have an error.'));
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.fetchProvidersForEmail('test@i-do-not-exist.com')
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
}));
|
|
|
|
it('it should return an error for a bad email address', () =>
|
|
new Promise((resolve, reject) => {
|
|
const successCb = () => {
|
|
reject(new Error('Should not have successfully resolved.'));
|
|
};
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/invalid-email');
|
|
error.message.should.equal('The email address is badly formatted.');
|
|
resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.fetchProvidersForEmail('foobar')
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
}));
|
|
});
|
|
|
|
describe('signOut()', () => {
|
|
it('it should reject signOut if no currentUser', () =>
|
|
new Promise((resolve, reject) => {
|
|
if (firebase.auth().currentUser) {
|
|
return reject(
|
|
new Error(
|
|
`A user is currently signed in. ${
|
|
firebase.auth().currentUser.uid
|
|
}`
|
|
)
|
|
);
|
|
}
|
|
|
|
const successCb = () => {
|
|
reject(new Error('No signOut error returned'));
|
|
};
|
|
|
|
const failureCb = error => {
|
|
error.code.should.equal('auth/no-current-user');
|
|
error.message.should.equal('No user currently signed in.');
|
|
resolve();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.signOut()
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
}));
|
|
});
|
|
|
|
describe('delete()', () => {
|
|
it('should delete a user', () => {
|
|
const random = randomString(12, '#aA');
|
|
const email = `${random}@${random}.com`;
|
|
const pass = random;
|
|
|
|
const successCb = newUser => {
|
|
newUser.uid.should.be.a.String();
|
|
newUser.email.should.equal(email.toLowerCase());
|
|
newUser.emailVerified.should.equal(false);
|
|
newUser.isAnonymous.should.equal(false);
|
|
newUser.providerId.should.equal('firebase');
|
|
return firebase.auth().currentUser.delete();
|
|
};
|
|
|
|
return firebase
|
|
.auth()
|
|
.createUserWithEmailAndPassword(email, pass)
|
|
.then(successCb);
|
|
});
|
|
});
|
|
|
|
describe('languageCode', () => {
|
|
it('it should change the language code', () => {
|
|
// eslint-disable-next-line no-param-reassign
|
|
firebase.auth().languageCode = 'en';
|
|
if (firebase.auth().languageCode !== 'en') {
|
|
throw new Error('Expected language code to be "en".');
|
|
}
|
|
// eslint-disable-next-line no-param-reassign
|
|
firebase.auth().languageCode = 'fr';
|
|
if (firebase.auth().languageCode !== 'fr') {
|
|
throw new Error('Expected language code to be "fr".');
|
|
}
|
|
// eslint-disable-next-line no-param-reassign
|
|
firebase.auth().languageCode = 'en';
|
|
});
|
|
});
|
|
|
|
describe('getRedirectResult()', () => {
|
|
it('should throw an unsupported error', () => {
|
|
(() => {
|
|
firebase.auth().getRedirectResult();
|
|
}).should.throw(
|
|
'firebase.auth().getRedirectResult() is unsupported by the native Firebase SDKs.'
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('setPersistence()', () => {
|
|
it('should throw an unsupported error', () => {
|
|
(() => {
|
|
firebase.auth().setPersistence();
|
|
}).should.throw(
|
|
'firebase.auth().setPersistence() is unsupported by the native Firebase SDKs.'
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('signInWithPopup', () => {
|
|
it('should throw an unsupported error', () => {
|
|
(() => {
|
|
firebase.auth().signInWithPopup();
|
|
}).should.throw(
|
|
'firebase.auth().signInWithPopup() is unsupported by the native Firebase SDKs.'
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('sendPasswordResetEmail()', () => {
|
|
it('should not error', async () => {
|
|
const random = randomString(12, '#aA');
|
|
const email = `${random}@${random}.com`;
|
|
const pass = random;
|
|
|
|
await firebase
|
|
.auth()
|
|
.createUserAndRetrieveDataWithEmailAndPassword(email, pass);
|
|
|
|
try {
|
|
await firebase.auth().sendPasswordResetEmail(email);
|
|
await firebase.auth().currentUser.delete();
|
|
} catch (error) {
|
|
// Reject
|
|
await firebase.auth().currentUser.delete();
|
|
Promise.reject(
|
|
new Error('sendPasswordResetEmail() caused an error', error)
|
|
);
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('signInWithRedirect()', () => {
|
|
it('should throw an unsupported error', () => {
|
|
(() => {
|
|
firebase.auth().signInWithRedirect();
|
|
}).should.throw(
|
|
'firebase.auth().signInWithRedirect() is unsupported by the native Firebase SDKs.'
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('useDeviceLanguage()', () => {
|
|
it('should throw an unsupported error', () => {
|
|
(() => {
|
|
firebase.auth().useDeviceLanguage();
|
|
}).should.throw(
|
|
'firebase.auth().useDeviceLanguage() is unsupported by the native Firebase SDKs.'
|
|
);
|
|
});
|
|
});
|
|
});
|