mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-11 13:59:13 +00:00

* Add navigation to expaneded map * Add MapLibreMapView.Options * Add AppActivityView * Add ShareToMapsAppActivity * Add share sheet presentation * Add localisations * Cleanup * Fix UT build errors * Revert breaking change * Fix UIView setup * Add support for location’s description * Show popover on iPad * Restore assets * More cleanup
91 lines
3.3 KiB
Swift
91 lines
3.3 KiB
Swift
//
|
|
// Copyright 2023 New Vector Ltd
|
|
//
|
|
// 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.
|
|
//
|
|
|
|
@testable import ElementX
|
|
import XCTest
|
|
|
|
final class GeoURITests: XCTestCase {
|
|
func testValidPositiveCoordinates() throws {
|
|
let string = "geo:53.9980310155285,8.25347900390625;u=10.123"
|
|
let uri = try XCTUnwrap(GeoURI(string: string))
|
|
XCTAssertEqual(uri.latitude, 53.9980310155285)
|
|
XCTAssertEqual(uri.longitude, 8.25347900390625)
|
|
XCTAssertEqual(uri.uncertainty, 10.123)
|
|
XCTAssertEqual(uri.string, string)
|
|
}
|
|
|
|
func testValidNegativeCoordinates() throws {
|
|
let string = "geo:-53.9980310155285,-8.25347900390625;u=10"
|
|
let uri = try XCTUnwrap(GeoURI(string: string))
|
|
XCTAssertEqual(uri.latitude, -53.9980310155285)
|
|
XCTAssertEqual(uri.longitude, -8.25347900390625)
|
|
XCTAssertEqual(uri.uncertainty, 10)
|
|
XCTAssertEqual(uri.string, string)
|
|
}
|
|
|
|
func testValidMixedCoordinates() throws {
|
|
let string = "geo:53.9980310155285,-8.25347900390625;u=10"
|
|
let uri = try XCTUnwrap(GeoURI(string: string))
|
|
XCTAssertEqual(uri.latitude, 53.9980310155285)
|
|
XCTAssertEqual(uri.longitude, -8.25347900390625)
|
|
XCTAssertEqual(uri.uncertainty, 10)
|
|
XCTAssertEqual(uri.string, string)
|
|
}
|
|
|
|
func testValidCoordinatesNoUncertainty() throws {
|
|
let string = "geo:53.9980310155285,-8.25347900390625"
|
|
let uri = try XCTUnwrap(GeoURI(string: string))
|
|
XCTAssertEqual(uri.latitude, 53.9980310155285)
|
|
XCTAssertEqual(uri.longitude, -8.25347900390625)
|
|
XCTAssertNil(uri.uncertainty)
|
|
XCTAssertEqual(uri.string, string)
|
|
}
|
|
|
|
func testValidIntegerCoordinates() throws {
|
|
let string = "geo:53,-8;u=35"
|
|
let uri = try XCTUnwrap(GeoURI(string: string))
|
|
XCTAssertEqual(uri.latitude, 53)
|
|
XCTAssertEqual(uri.longitude, -8)
|
|
XCTAssertEqual(uri.uncertainty, 35)
|
|
XCTAssertEqual(uri.string, "geo:53,-8;u=35")
|
|
}
|
|
|
|
func testFormattingExponentialNotation() throws {
|
|
let uri = GeoURI(latitude: 1e2, longitude: -1e-2, uncertainty: 1e-4)
|
|
XCTAssertEqual(uri.string, "geo:100,-0.01;u=0.0001")
|
|
}
|
|
|
|
func testInvalidURI1() {
|
|
let string = "geo:53.99803101552848,-8.25347900390625;" // final ; without a u=number
|
|
XCTAssertNil(GeoURI(string: string))
|
|
}
|
|
|
|
func testInvalidURI2() {
|
|
let string = "geo:53.99803101552848, -8.25347900390625;" // spaces in the middle
|
|
XCTAssertNil(GeoURI(string: string))
|
|
}
|
|
|
|
func testInvalidURI3() {
|
|
let string = "geo:+53.99803101552848,-8.25347900390625" // '+' before a number
|
|
XCTAssertNil(GeoURI(string: string))
|
|
}
|
|
|
|
func testInvalidURI4() {
|
|
let string = "geo:53.99803101552848,-8.25347900390625;u=-20" // u is negative
|
|
XCTAssertNil(GeoURI(string: string))
|
|
}
|
|
}
|