forked from mozilla-mobile/firefox-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTabTests.swift
30 lines (25 loc) · 1.09 KB
/
TabTests.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import XCTest
@testable import Client
class TabTests: XCTestCase {
func testWithoutMobilePrefixRemovesMobilePrefixes() {
let url = URL(string: "https://m.wikipedia.org/wiki/Firefox")!
let newUrl = url.withoutMobilePrefix()
XCTAssertEqual(newUrl.host, "wikipedia.org")
}
func testWithoutMobilePrefixRemovesMobile() {
let url = URL(string: "https://en.mobile.wikipedia.org/wiki/Firefox")!
let newUrl = url.withoutMobilePrefix()
XCTAssertEqual(newUrl.host, "en.wikipedia.org")
}
func testWithoutMobilePrefixOnlyRemovesMobileSubdomains() {
var url = URL(string: "https://plum.com")!
var newUrl = url.withoutMobilePrefix()
XCTAssertEqual(newUrl.host, "plum.com")
url = URL(string: "https://mobile.co.uk")!
newUrl = url.withoutMobilePrefix()
XCTAssertEqual(newUrl.host, "mobile.co.uk")
}
}