- Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathTestProcessInfo.swift
126 lines (108 loc) · 4.46 KB
/
TestProcessInfo.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
#if canImport(SwiftFoundation) && !DEPLOYMENT_RUNTIME_OBJC
@testableimport SwiftFoundation
#else
@testableimport Foundation
#endif
#endif
classTestProcessInfo:XCTestCase{
func test_operatingSystemVersion(){
letprocessInfo=ProcessInfo.processInfo
letversionString= processInfo.operatingSystemVersionString
XCTAssertFalse(versionString.isEmpty)
#if os(Linux)
// Since the list of supported distros tends to change, at least check that it used os-release (if it's there).
iflet distroId =try?String(contentsOf:URL(fileURLWithPath:"/etc/os-release", isDirectory:false)),
distroId.contains("PRETTY_NAME")
{
XCTAssertTrue(distroId.contains(versionString))
}else{
XCTAssertTrue(versionString.contains("Linux"))
}
#elseif os(Windows)
XCTAssertTrue(versionString.hasPrefix("Windows"))
#endif
letversion= processInfo.operatingSystemVersion
XCTAssert(version.majorVersion !=0)
#if canImport(Darwin) || os(Linux) || os(Windows)
letminVersion=OperatingSystemVersion(majorVersion:1, minorVersion:0, patchVersion:0)
XCTAssertTrue(processInfo.isOperatingSystemAtLeast(minVersion))
#endif
}
func test_processName(){
letprocessInfo=ProcessInfo.processInfo
letoriginalProcessName= processInfo.processName
XCTAssertEqual(originalProcessName,"swift-corelibs-foundationPackageTests.xctest")
// Try assigning a new process name.
letnewProcessName="TestProcessName"
processInfo.processName = newProcessName
XCTAssertEqual(processInfo.processName, newProcessName)
// Assign back to the original process name.
processInfo.processName = originalProcessName
XCTAssertEqual(processInfo.processName, originalProcessName)
}
func test_globallyUniqueString(){
letuuid=ProcessInfo.processInfo.globallyUniqueString
letparts= uuid.components(separatedBy:"-")
XCTAssertEqual(parts.count,7)
XCTAssertEqual(parts[0].utf16.count,8)
XCTAssertEqual(parts[1].utf16.count,4)
XCTAssertEqual(parts[2].utf16.count,4)
XCTAssertEqual(parts[3].utf16.count,4)
XCTAssertEqual(parts[4].utf16.count,12)
}
func test_environment(){
#if os(Windows)
func setenv(_ key:String, _ value:String, _ overwrite:Int)->Int32{
assert(overwrite ==1)
guard !key.contains("=")else{
errno = EINVAL
return-1
}
return_putenv("\(key)=\(value)")
}
#endif
letpreset=ProcessInfo.processInfo.environment["test"]
setenv("test","worked",1)
letpostset=ProcessInfo.processInfo.environment["test"]
XCTAssertNil(preset)
XCTAssertEqual(postset,"worked")
// Bad values that wont be stored
XCTAssertEqual(setenv("","",1),-1)
XCTAssertEqual(setenv("bad1=","",1),-1)
XCTAssertEqual(setenv("bad2=","1",1),-1)
XCTAssertEqual(setenv("bad3=","=2",1),-1)
// Good values that will be, check splitting on '='
XCTAssertEqual(setenv("var1","",1),0)
XCTAssertEqual(setenv("var2","=",1),0)
XCTAssertEqual(setenv("var3","=x",1),0)
XCTAssertEqual(setenv("var4","x=",1),0)
XCTAssertEqual(setenv("var5","=x=",1),0)
letenv=ProcessInfo.processInfo.environment
XCTAssertNil(env[""])
XCTAssertNil(env["bad1"])
XCTAssertNil(env["bad1="])
XCTAssertNil(env["bad2"])
XCTAssertNil(env["bad2="])
XCTAssertNil(env["bad3"])
XCTAssertNil(env["bad3="])
#if os(Windows)
// On Windows, adding an empty environment variable removes it from the environment
XCTAssertNil(env["var1"])
#else
XCTAssertEqual(env["var1"],"")
#endif
XCTAssertEqual(env["var2"],"=")
XCTAssertEqual(env["var3"],"=x")
XCTAssertEqual(env["var4"],"x=")
XCTAssertEqual(env["var5"],"=x=")
}
}