123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- //
- // ServerProfileTests.swift
- // ShadowsocksX-NG
- //
- // Created by Rainux Luo on 07/01/2017.
- // Copyright © 2017 qiuyuzhou. All rights reserved.
- //
- import XCTest
- @testable import ShadowsocksX_NG
- class ServerProfileTests: XCTestCase {
- var profile: ServerProfile!
- override func setUp() {
- super.setUp()
- profile = ServerProfile.fromDictionary(["ServerHost": "example.com",
- "ServerPort": 8388,
- "Method": "aes-256-cfb",
- "Password": "password",
- "Remark": "Protoss Prism",
- "OTA": true])
- XCTAssertNotNil(profile)
- }
- override func tearDown() {
- // Put teardown code here. This method is called after the invocation of each test method in the class.
- super.tearDown()
- }
- func testInitWithSelfGeneratedURL() {
- let newProfile = ServerProfile.init(url: profile.URL()!)
- XCTAssertEqual(newProfile?.serverHost, profile.serverHost)
- XCTAssertEqual(newProfile?.serverPort, profile.serverPort)
- XCTAssertEqual(newProfile?.method, profile.method)
- XCTAssertEqual(newProfile?.password, profile.password)
- XCTAssertEqual(newProfile?.remark, profile.remark)
- }
- func testInitWithBase64EncodedURL() {
- // "ss://aes-256-cfb:password@example.com:8388"
- let url = URL(string: "ss://YWVzLTI1Ni1jZmI6cGFzc3dvcmRAZXhhbXBsZS5jb206ODM4OA")!
- let profile = ServerProfile(url: url)
- XCTAssertNotNil(profile)
- XCTAssertEqual(profile?.serverHost, "example.com")
- XCTAssertEqual(profile?.serverPort, 8388)
- XCTAssertEqual(profile?.method, "aes-256-cfb")
- XCTAssertEqual(profile?.password, "password")
- XCTAssertEqual(profile?.remark, "")
- }
- func testInitWithBase64EncodedURLandQuery() {
- // "ss://aes-256-cfb:password@example.com:8388?Remark=Prism&OTA=true"
- let url = URL(string: "ss://YWVzLTI1Ni1jZmI6cGFzc3dvcmRAZXhhbXBsZS5jb206ODM4OD9SZW1hcms9UHJpc20mT1RBPXRydWU")!
- let profile = ServerProfile(url: url)
- XCTAssertNotNil(profile)
- XCTAssertEqual(profile?.serverHost, "example.com")
- XCTAssertEqual(profile?.serverPort, 8388)
- XCTAssertEqual(profile?.method, "aes-256-cfb")
- XCTAssertEqual(profile?.password, "password")
- XCTAssertEqual(profile?.remark, "Prism")
- }
-
- func testInitWithLegacyBase64EncodedURLWithTag() {
- let url = URL(string: "ss://YmYtY2ZiOnRlc3RAMTkyLjE2OC4xMDAuMTo4ODg4Cg#example-server")!
-
- let profile = ServerProfile(url: url)
-
- XCTAssertNotNil(profile)
- XCTAssertEqual(profile?.remark, "example-server")
- }
-
- func testInitWithLegacyBase64EncodedURLWithSymboInPassword() {
- // Note that the legacy URI doesn't follow RFC3986. It means the password here
- // should be plain text, not percent-encoded.
- // Ref: https://shadowsocks.org/en/config/quick-guide.html
- // `ss://bf-cfb:test/!@#:@192.168.100.1:8888`
- let url = URL(string: "ss://YmYtY2ZiOnRlc3QvIUAjOkAxOTIuMTY4LjEwMC4xOjg4ODg#example")!
-
- let profile = ServerProfile(url: url)
-
- XCTAssertNotNil(profile)
- XCTAssertEqual(profile?.password, "test/!@#:")
- }
-
- func testInitWithLegacyURLWithEscapedChineseRemark() {
- let url = URL(string: "ss://YmYtY2ZiOnRlc3RAMTkyLjE2OC4xMDAuMTo4ODg4#%e4%bd%a0%e5%a5%bd")!
- let profile = ServerProfile(url: url)
- XCTAssertNotNil(profile)
- XCTAssertEqual(profile?.remark, "你好")
- }
- func testInitWithEmptyURL() {
- let url = URL(string: "ss://")!
- let profile = ServerProfile(url: url)
- XCTAssertNil(profile)
- }
- func testInitWithBase64EncodedInvalidURL() {
- // "ss://invalid url"
- let url = URL(string: "ss://aW52YWxpZCB1cmw")!
- let profile = ServerProfile(url: url)
- XCTAssertNil(profile)
- }
- func testInitWithSIP002URL() {
- // "ss://aes-256-cfb:password@example.com:8388?Remark=Prism&OTA=true"
- let url = URL(string: "ss://YWVzLTI1Ni1jZmI6cGFzc3dvcmQ=@example.com:8388/?Remark=Prism&OTA=true")!
- let profile = ServerProfile(url: url)
- XCTAssertNotNil(profile)
- XCTAssertEqual(profile?.serverHost, "example.com")
- XCTAssertEqual(profile?.serverPort, 8388)
- XCTAssertEqual(profile?.method, "aes-256-cfb")
- XCTAssertEqual(profile?.password, "password")
- XCTAssertEqual(profile?.remark, "Prism")
- }
- func testInitWithSIP002URLProfileName() {
- let url = URL(string: "ss://YWVzLTI1Ni1jZmI6cGFzc3dvcmQ=@example.com:8388/#Name")!
- let profile = ServerProfile(url: url)
- XCTAssertNotNil(profile)
- XCTAssertEqual(profile?.remark, "Name")
- }
- func testInitWithSIP002URLProfileNameOverride() {
- let url = URL(string: "ss://YWVzLTI1Ni1jZmI6cGFzc3dvcmQ=@example.com:8388/?Remark=Name#Overriden")!
- let profile = ServerProfile(url: url)
- XCTAssertNotNil(profile)
- XCTAssertEqual(profile?.remark, "Overriden")
- }
-
- func testInitWithSIP002URLProfileWithSIP003PluginNoPluginOpts() {
- let url = URL(string: "ss://YWVzLTI1Ni1jZmI6cGFzc3dvcmQ=@134.209.56.100:8088/?plugin=v2ray-plugin;#moon-v2ray")!
-
- let profile = ServerProfile(url: url)
-
- XCTAssertNotNil(profile)
- XCTAssertEqual(profile?.plugin, "v2ray-plugin")
- }
-
- func testInitWithSIP002URLProfileWithSIP003Plugin() {
- let url = URL(string: "ss://YWVzLTI1Ni1jZmI6cGFzc3dvcmQ=@134.209.56.100:8088/?plugin=v2ray-plugin;tls#moon-v2ray")!
-
- let profile = ServerProfile(url: url)
-
- XCTAssertNotNil(profile)
- XCTAssertEqual(profile?.plugin, "v2ray-plugin")
- }
- func testPerformanceExample() {
- // This is an example of a performance test case.
- self.measure {
- // Put the code you want to measure the time of here.
- }
- }
-
- }
|