-
Notifications
You must be signed in to change notification settings - Fork 376
Feat: Detect for timezone changes and update the user #2378
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
dedab04
Detect timezone changes on new sessions
nan-li 6018f4d
No longer hydrate timezone from the server
nan-li e433a4f
Let UserManager refresh timezone changes on focus
nan-li f225c32
tests: pass application service
nan-li a4a6d5e
Add tests for timezone
nan-li 14b5d76
nit: remove extraneous non-null assert
nan-li File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| package com.onesignal.user.internal.operations.impl.executors | ||
|
|
||
| import com.onesignal.common.NetworkUtils | ||
| import com.onesignal.common.TimeUtils | ||
| import com.onesignal.common.exceptions.BackendException | ||
| import com.onesignal.common.modeling.ModelChangeTags | ||
| import com.onesignal.core.internal.config.ConfigModelStore | ||
|
|
@@ -89,9 +90,8 @@ internal class RefreshUserOperationExecutor( | |
| } | ||
| } | ||
|
|
||
| if (response.properties.timezoneId != null) { | ||
| propertiesModel.timezone = response.properties.timezoneId | ||
| } | ||
| // No longer hydrate timezone from remote, set locally | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same with this. |
||
| propertiesModel.timezone = TimeUtils.getTimeZoneId() | ||
|
|
||
| val subscriptionModels = mutableListOf<SubscriptionModel>() | ||
| for (subscription in response.subscriptions) { | ||
|
|
||
48 changes: 48 additions & 0 deletions
48
OneSignalSDK/onesignal/core/src/test/java/com/onesignal/common/TimeUtilsTest.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| package com.onesignal.common | ||
|
|
||
| import android.os.Build | ||
| import br.com.colman.kotest.android.extensions.robolectric.RobolectricTest | ||
| import io.kotest.core.spec.style.FunSpec | ||
| import io.kotest.matchers.shouldBe | ||
| import io.kotest.matchers.shouldNotBe | ||
| import io.kotest.matchers.string.shouldNotBeEmpty | ||
| import io.kotest.matchers.string.shouldNotContain | ||
| import java.time.ZoneId | ||
| import java.util.TimeZone | ||
|
|
||
| @RobolectricTest | ||
| class TimeUtilsTest : FunSpec({ | ||
|
|
||
| test("getTimeZoneId returns correct time zone id") { | ||
| // Given | ||
| val expected = | ||
| if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { | ||
| ZoneId.systemDefault().id | ||
| } else { | ||
| TimeZone.getDefault().id | ||
| } | ||
|
|
||
| // When | ||
| val actual = TimeUtils.getTimeZoneId() | ||
|
|
||
| // Then | ||
| actual shouldBe expected | ||
| actual.shouldNotBeEmpty() | ||
| } | ||
|
|
||
| test("getTimeZoneId returns valid timezone format") { | ||
| // When | ||
| val timeZoneId = TimeUtils.getTimeZoneId() | ||
|
|
||
| // Then | ||
| timeZoneId.shouldNotBeEmpty() | ||
| timeZoneId shouldNotBe "" | ||
|
|
||
| // Valid timezone IDs follow IANA format patterns: | ||
| // - Continental zones: "America/New_York", "Europe/London" | ||
| // - UTC variants: "UTC", "GMT" | ||
| // - Offset formats: "GMT+05:30", "UTC-08:00" | ||
| // Should not contain spaces or invalid characters | ||
| timeZoneId.shouldNotContain(" ") | ||
| } | ||
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you want to pass TimeUtils into this class? so that you can mock it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also please make sure to write tests