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

notif: Use live value for app ID on registering APNs token #1451

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

AhmedTareek
Copy link

@AhmedTareek AhmedTareek commented Mar 31, 2025

Fixes #407

Changes made:

  • Replaced the hardcoded app bundle ID with packageInfo.packageName.
  • Added a null check for packageInfo with an assert for debugging.

This change caused the "token initially unknown" test in store_test.dart to fail due to the added asynchronous call to ZulipBinding.instance.packageInfo, which delayed the completion of registerToken.

To resolve this, a Future.delayed(Duration.zero) was added after await startFuture in the test to ensure _registerNotificationToken completes before the test checks for the request.

await startFuture;
// This delay is needed to allow the listener callback to `store._registerNotificationToken()`
// that occurs as a side effect of `startFuture` setting the token value to complete.
await Future<void>.delayed(Duration.zero);
if (defaultTargetPlatform == TargetPlatform.android) {
  checkLastRequestFcm(token: '012abc');
} else {
  checkLastRequestApns(token: '012abc', appid: 'com.zulip.flutter');
}

This minimal delay ensures the asynchronous operations within the test complete in the expected order, resolving the test failure.

@AhmedTareek AhmedTareek marked this pull request as ready for review April 1, 2025 13:04
@gnprice
Copy link
Member

gnprice commented Apr 2, 2025

Thanks for the contribution!

Before we can review this in detail, it will need tests. See the guidance in our README file about writing tests.

@gnprice gnprice added the maintainer review PR ready for review by Zulip maintainers label Apr 2, 2025
`await ZulipBinding.instance.packageInfo` was added to get the
packageName, making `registerToken` take longer to complete.
Previously, in "token initially unknown" test in the
UpdateMachine.registerNotificationToken `start()` and
`_registerNotificationToken()` finished in sync with the test’s
expectations. Now, a delay is added to ensure that the listener
callback `_registerNotificationToken()` finishes its async work
before continuing the test.

Fixes zulip#407
@AhmedTareek
Copy link
Author

Tests are added.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
maintainer review PR ready for review by Zulip maintainers
Projects
None yet
Development

Successfully merging this pull request may close these issues.

notif: Use live value for app ID on registering APNs token
3 participants