我正在使用xcodebuild运行xctests
并需要传入一些environment variables
。
在下面的示例ACCOUNT_ID
和HOST_URL
。
我尝试将变量作为环境变量传递,并使用getenv ("ACCOUNT_ID")
从测试中访问它们
xcodebuild -project CalculatorTestClient.xcodeproj -scheme CalculatorTestClient -destination '%s' ACCOUNT_ID=%s HOST_URL=%s test"
将其传递到user defaults
并使用[[NSUserDefaults standardUserDefaults] valueForKey:@"HOST_URL"];
访问它们
xcodebuild -project CalculatorTestClient.xcodeproj -scheme CalculatorTestClient -destination '%s' ACCOUNT_ID=%s HOST_URL=%s test"
这两种方法都不适用于我。 从命令行传递用户定义变量的最简单方法是什么?
答案 0 :(得分:26)
与@Paul Young类似,我可以通过对该方案进行一些修改来实现这一目标。这是我的解决方案:
对于Xcode中的Scheme(Xcode>您的Scheme> Edit Scheme> Test> Arguments选项卡> Environment Variables):
Name Value
ACCOUNT_ID $(ACCOUNT_ID)
HOST_URL $(HOST_URL)
在Code(Swift 3)中:
let accountID = ProcessInfo.processInfo.environment["ACCOUNT_ID"]!
let hostURL = ProcessInfo.processInfo.environment["HOST_URL"]!
在命令行上:
$ xcodebuild -project YourProject.xcodeproj \
-scheme "Your Scheme" \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 7,OS=10.2' \
-derivedDataPath './output' \
ACCOUNT_ID='An Account ID' \
HOST_URL='www.hosturl.com' \
test
答案 1 :(得分:1)
到目前为止,我只能使这种方法起作用:
$ ACCOUNT_ID=foo HOST_URL=bar xcodebuild -project CalculatorTestClient.xcodeproj -scheme CalculatorTestClient clean test
并通过以下方式访问它们:
NSDictionary *environment = [[NSProcessInfo processInfo] environment];
NSString *accountID = [environment objectForKey:@"ACCOUNT_ID"];
NSString *hostUrl = [environment objectForKey:@"HOST_URL"];
答案 2 :(得分:1)
我为我的案例做的是使用xcodebuild build-for-testing
命令并创建xctestrun
文件,然后使用xcodebuild test-without-building
运行测试。在这种情况下,您可以在运行测试之前更改其plist中包含环境变量的xctestrun
文件。
因此您需要使用PlistBuddy
来更改plist环境键来运行脚本。例如,添加一个键:
/usr/libexec/PlistBuddy -c "add :APPNAME-TARGETNAME:EnvironmentVariables:KEYNAME string 'VALUE'" "(Path to XCTestRun file)"