Skip to content

Commit 5264a78

Browse files
authored
Fix issue where accounts:lookup is case-sensitive for emails (#8351)
1 parent ee2e8b5 commit 5264a78

File tree

3 files changed

+51
-1
lines changed

3 files changed

+51
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
- Fix bug where functions:artifacts:setpolicy command's --none option didn't work as expected (#8330)
2+
- Fix bug in Auth emulator where accounts:lookup is case-sensitive for emails (#8344)

src/emulator/auth/misc.spec.ts

+48
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,54 @@ describeAuthEmulator("createSessionCookie", ({ authApi }) => {
339339
});
340340

341341
describeAuthEmulator("accounts:lookup", ({ authApi }) => {
342+
it("should return user by email when privileged", async () => {
343+
const { email } = await registerUser(authApi(), {
344+
345+
password: "password",
346+
});
347+
348+
await authApi()
349+
.post(`/identitytoolkit.googleapis.com/v1/projects/${PROJECT_ID}/accounts:lookup`)
350+
.set("Authorization", "Bearer owner")
351+
.send({ email: [email] })
352+
.then((res) => {
353+
expectStatusCode(200, res);
354+
expect(res.body.users).to.have.length(1);
355+
expect(res.body.users[0].email).to.equal(email);
356+
});
357+
});
358+
359+
it("should return user by email even when uppercased", async () => {
360+
const { email } = await registerUser(authApi(), {
361+
362+
password: "password",
363+
});
364+
const caplitalizedEmail = email.toUpperCase();
365+
366+
await authApi()
367+
.post(`/identitytoolkit.googleapis.com/v1/projects/${PROJECT_ID}/accounts:lookup`)
368+
.set("Authorization", "Bearer owner")
369+
.send({ email: [caplitalizedEmail] })
370+
.then((res) => {
371+
console.log(res.body.users);
372+
expectStatusCode(200, res);
373+
expect(res.body.users).to.have.length(1);
374+
expect(res.body.users[0].email).to.equal(email);
375+
});
376+
});
377+
378+
it("should return empty result when email is not found", async () => {
379+
await authApi()
380+
.post(`/identitytoolkit.googleapis.com/v1/projects/${PROJECT_ID}/accounts:lookup`)
381+
.set("Authorization", "Bearer owner")
382+
.send({ email: ["[email protected]"] })
383+
.then((res) => {
384+
console.log(res.body.users);
385+
expectStatusCode(200, res);
386+
expect(res.body).not.to.have.property("users");
387+
});
388+
});
389+
342390
it("should return user by localId when privileged", async () => {
343391
const { localId } = await registerAnonUser(authApi());
344392

src/emulator/auth/operations.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,8 @@ function lookup(
300300
tryAddUser(state.getUserByLocalId(localId));
301301
}
302302
for (const email of reqBody.email ?? []) {
303-
tryAddUser(state.getUserByEmail(email));
303+
const canonicalizedEmail = canonicalizeEmailAddress(email);
304+
tryAddUser(state.getUserByEmail(canonicalizedEmail));
304305
}
305306
for (const phoneNumber of reqBody.phoneNumber ?? []) {
306307
tryAddUser(state.getUserByPhoneNumber(phoneNumber));

0 commit comments

Comments
 (0)