-
Notifications
You must be signed in to change notification settings - Fork 62
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
Add geo types sync integration tests. #1533
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
d0466aa
Some changes
clementetb 79c5f3e
Add sync tests
clementetb 0bf348e
Linting
clementetb ad224cf
PR change requests
clementetb 6837be7
Cherry-pick 449189daf0e488c9e320133de3b827b5d57f9c8b
clementetb f6aef6c
Fix tests
3016b09
More schema fixes
a37b38b
Fix test
92b3ffe
Disable update test
clementetb 5ace8e9
Fix spatial test
clementetb dab5551
Add comment
clementetb e2c5f49
Bump core and baas
clementetb 6b7cd1c
Bump baas
clementetb 05eca72
Update schema definitions from rebase
clementetb 45b5ff1
Merge branch 'main' into ct/geo-sync-tests
clementetb 43870d6
Merge branch 'main' into ct/geo-sync-tests
clementetb 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 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
58 changes: 58 additions & 0 deletions
58
packages/test-base/src/commonMain/kotlin/io/realm/kotlin/entities/GeoEntities.kt
This file contains 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,58 @@ | ||
/* | ||
* Copyright 2023 Realm Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.realm.kotlin.entities | ||
|
||
import io.realm.kotlin.ext.realmListOf | ||
import io.realm.kotlin.types.EmbeddedRealmObject | ||
import io.realm.kotlin.types.RealmList | ||
import io.realm.kotlin.types.RealmObject | ||
import io.realm.kotlin.types.annotations.Ignore | ||
|
||
class Restaurant : RealmObject { | ||
var location: Location? = null | ||
} | ||
|
||
// Custom embedded model class for storing GeoPoints in Realm. | ||
class Location : EmbeddedRealmObject { | ||
constructor(latitude: Double, longitude: Double) { | ||
coordinates.apply { | ||
add(longitude) | ||
add(latitude) | ||
} | ||
} | ||
constructor() : this(0.0, 0.0) // Empty constructor required by Realm. Should not be used. | ||
|
||
// Name and type required by Realm | ||
var coordinates: RealmList<Double> = realmListOf() | ||
|
||
// Name and type by Realm | ||
@Suppress("UnusedPrivateMember") | ||
private var type: String = "Point" | ||
|
||
@Ignore | ||
var latitude: Double | ||
get() = coordinates[1] | ||
set(value) { | ||
coordinates[1] = value | ||
} | ||
|
||
@Ignore | ||
var longitude: Double | ||
get() = coordinates[0] | ||
set(value) { | ||
coordinates[0] = value | ||
} | ||
} |
This file contains 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
29 changes: 29 additions & 0 deletions
29
packages/test-sync/src/commonMain/kotlin/io/realm/kotlin/entities/sync/SyncRestaurant.kt
This file contains 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,29 @@ | ||
/* | ||
* Copyright 2023 Realm Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.realm.kotlin.entities.sync | ||
|
||
import io.realm.kotlin.entities.Location | ||
import io.realm.kotlin.types.RealmObject | ||
import io.realm.kotlin.types.annotations.PrimaryKey | ||
import org.mongodb.kbson.ObjectId | ||
|
||
class SyncRestaurant : RealmObject { | ||
@PrimaryKey | ||
@Suppress("VariableNaming") | ||
var _id = ObjectId() | ||
var section: ObjectId? = null | ||
var location: Location? = null | ||
} |
This file contains 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 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 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.
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.
Talking to JS, we should deprecate this method as it doesn't really make sense anymore and instead point people towards
user.identities
.