Skip to content

Commit eb47b25

Browse files
committed
fix: unique constraint on user email
1 parent 306078d commit eb47b25

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/__tests__/users.ts

+7
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ describe('Register user', () => {
3232
.expect(400, /required/i)
3333
})
3434

35+
test('[SAD] Email already exists', () => {
36+
return rq
37+
.post('/register')
38+
.send({ email: '[email protected]', password: 'azerty123' })
39+
.expect(400, /already/i)
40+
})
41+
3542
test('Alternative routes', async () => {
3643
const signupRes = await rq.post('/signup')
3744
expect(signupRes.notFound).toBe(false)

src/users.ts

+7
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ const create: RequestHandler = (req, res, next) => {
5757
throw Error('You must bind the router db to the app')
5858
}
5959

60+
// prettier-ignore
61+
const existingUser = db.get('users').find({ email }).value()
62+
if (existingUser) {
63+
res.status(400).jsonp('Email already exists')
64+
return
65+
}
66+
6067
bcrypt
6168
.hash(password, SALT_LENGTH)
6269
.then((hash) => {

0 commit comments

Comments
 (0)