generated from element-hq/.github
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #225 - Use a properly defined user agent
* Set a proper user agent * Add fallback when UA comes out nil * Remove unused Bundle extension * Return nil when asciification fails * Add whitespace handling and further emoji test case * Explicitly check if string is already in ASCII * Rename factory to builder * Use allSatisfy instead of reduce * Use key path syntax
- Loading branch information
Showing
12 changed files
with
306 additions
and
57 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// | ||
// Copyright 2022 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. | ||
// | ||
|
||
import Foundation | ||
import UIKit | ||
|
||
#if !os(OSX) | ||
import DeviceKit | ||
#endif | ||
|
||
final class UserAgentBuilder { | ||
class func makeASCIIUserAgent() -> String? { | ||
makeUserAgent()?.asciified() | ||
} | ||
|
||
private class func makeUserAgent() -> String? { | ||
let clientName = ElementInfoPlist.cfBundleDisplayName | ||
let clientVersion = ElementInfoPlist.cfBundleShortVersionString | ||
|
||
#if os(iOS) | ||
return String( | ||
format: "%@/%@ (%@; iOS %@; Scale/%0.2f)", | ||
clientName, | ||
clientVersion, | ||
Device.current.safeDescription, | ||
UIDevice.current.systemVersion, | ||
UIScreen.main.scale | ||
) | ||
#elseif os(tvOS) | ||
return String( | ||
format: "%@/%@ (%@; tvOS %@; Scale/%0.2f)", | ||
clientName, | ||
clientVersion, | ||
Device.current.safeDescription, | ||
UIDevice.current.systemVersion, | ||
UIScreen.main.scale | ||
) | ||
#elseif os(watchOS) | ||
return String( | ||
format: "%@/%@ (%@; watchOS %@; Scale/%0.2f)", | ||
clientName, | ||
clientVersion, | ||
Device.current.safeDescription, | ||
WKInterfaceDevice.current.systemVersion, | ||
WKInterfaceDevice.currentDevice.screenScale | ||
) | ||
#elseif os(OSX) | ||
return String( | ||
format: "%@/%@ (Mac; Mac OS X %@)", | ||
clientName, | ||
clientVersion, | ||
NSProcessInfo.processInfo.operatingSystemVersionString | ||
) | ||
#else | ||
return nil | ||
#endif | ||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// | ||
// Copyright 2022 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. | ||
// | ||
|
||
import XCTest | ||
|
||
@testable import ElementX | ||
|
||
class StringTests: XCTestCase { | ||
func testEmptyIsAscii() { | ||
XCTAssertTrue("".isASCII) | ||
} | ||
|
||
func testSpaceIsAscii() { | ||
XCTAssertTrue("".isASCII) | ||
} | ||
|
||
func testJohnnyIsAscii() { | ||
XCTAssertTrue("johnny".isASCII) | ||
} | ||
|
||
func testJöhnnyIsNotAscii() { | ||
XCTAssertFalse("jöhnny".isASCII) | ||
} | ||
|
||
func testJ🅾️hnnyIsNotAscii() { | ||
XCTAssertFalse("j🅾️hnny".isASCII) | ||
} | ||
|
||
func testAsciiStaysAscii() { | ||
XCTAssertEqual("johnny".asciified(), "johnny") | ||
} | ||
|
||
func testÖBecomesO() { | ||
XCTAssertEqual("jöhnny".asciified(), "johnny") | ||
} | ||
|
||
func testÅBecomesA() { | ||
XCTAssertEqual("jåhnny".asciified(), "jahnny") | ||
} | ||
|
||
func test1️⃣2️⃣3️⃣Becomes123() { | ||
XCTAssertEqual("1️⃣2️⃣3️⃣".asciified(), "123") | ||
} | ||
|
||
func testStripsTheHeartbreakHotel() { | ||
XCTAssertEqual("Heartbreak Hotel 🏩".asciified(), "Heartbreak Hotel") | ||
} | ||
} |
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,35 @@ | ||
// | ||
// Copyright 2022 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. | ||
// | ||
|
||
import XCTest | ||
|
||
@testable import ElementX | ||
|
||
class UserAgentBuilderTests: XCTestCase { | ||
func testIsNotNil() { | ||
XCTAssertNotNil(UserAgentBuilder.makeASCIIUserAgent()) | ||
} | ||
|
||
func testContainsClientName() { | ||
let userAgent = UserAgentBuilder.makeASCIIUserAgent() | ||
XCTAssert(userAgent?.contains(ElementInfoPlist.cfBundleDisplayName) == true, "\(userAgent ?? "nil") does not contain client name") | ||
} | ||
|
||
func testContainsClientVersion() { | ||
let userAgent = UserAgentBuilder.makeASCIIUserAgent() | ||
XCTAssert(userAgent?.contains(ElementInfoPlist.cfBundleShortVersionString) == true, "\(userAgent ?? "nil") does not contain client version") | ||
} | ||
} |
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 @@ | ||
Set a proper user agent |
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