generated from element-hq/.github
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes: #225
- Loading branch information
Showing
15 changed files
with
291 additions
and
55 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
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 UserAgentFactory { | ||
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
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,37 @@ | ||
// | ||
// 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 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") | ||
} | ||
} |
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 UserAgentFactoryTests: XCTestCase { | ||
func testIsNotNil() { | ||
XCTAssertNotNil(UserAgentFactory.makeASCIIUserAgent()) | ||
} | ||
|
||
func testContainsClientName() { | ||
let userAgent = UserAgentFactory.makeASCIIUserAgent() | ||
XCTAssert(userAgent?.contains(ElementInfoPlist.cfBundleDisplayName) == true, "\(userAgent ?? "nil") does not contain client name") | ||
} | ||
|
||
func testContainsClientVersion() { | ||
let userAgent = UserAgentFactory.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