Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Database once() should only fire once #4864

Merged
merged 4 commits into from
May 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/many-turtles-try.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@firebase/database": patch
---

Fixed an issue that could cause `once()` to fire more than once if the value was modified inside its callback.
2 changes: 1 addition & 1 deletion packages/database/src/api/Reference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export class Query implements Compat<ExpQuery> {
validateCallback('Query.once', 'callback', callback, true);

const ret = Query.getCancelAndContextArgs_(
'Query.on',
'Query.once',
failureCallbackOrContext,
context
);
Expand Down
2 changes: 1 addition & 1 deletion packages/database/src/exp/Reference_impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -959,8 +959,8 @@ function addEventListener(
if (options && options.onlyOnce) {
const userCallback = callback;
const onceCallback: UserCallback = (dataSnapshot, previousChildName) => {
userCallback(dataSnapshot, previousChildName);
repoRemoveEventCallbackForQuery(query._repo, query, container);
userCallback(dataSnapshot, previousChildName);
};
onceCallback.userCallback = callback.userCallback;
onceCallback.context = callback.context;
Expand Down
17 changes: 17 additions & 0 deletions packages/database/test/helpers/EventAccumulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,23 @@ export const EventAccumulatorFactory = {
count++;
});
return ea;
},
waitsForExactCount: maxCount => {
let count = 0;
const condition = () => {
if (count > maxCount) {
throw new Error('Received more events than expected');
}
return count === maxCount;
};
const ea = new EventAccumulator(condition);
ea.onReset(() => {
count = 0;
});
ea.onEvent(() => {
count++;
});
return ea;
}
};

Expand Down
26 changes: 26 additions & 0 deletions packages/database/test/query.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2330,6 +2330,32 @@ describe('Query Tests', () => {
await ea.promise;
});

it('Query.once() only fires once', async () => {
const node = getRandomNode() as Reference;

let count = 1;
node.set(count);

const valueEvent = EventAccumulatorFactory.waitsForCount(3);
node.on('value', () => {
if (count < 3) {
++count;
node.set(count);
}
valueEvent.addEvent();
});

const onceEvent = EventAccumulatorFactory.waitsForExactCount(1);
node.once('value', () => {
++count;
node.set(count);
onceEvent.addEvent();
});

await valueEvent.promise;
await onceEvent.promise;
});

it('Ensure on() returns callback function.', () => {
const node = getRandomNode() as Reference;
const callback = function () {};
Expand Down