123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- #!/usr/bin/env python
- # Copyright (c) 2012 Google Inc. All rights reserved.
- # Use of this source code is governed by a BSD-style license that can be
- # found in the LICENSE file.
- """
- Verifies that app bundles are built correctly.
- """
- import TestGyp
- import os
- import plistlib
- import subprocess
- import sys
- def GetStdout(cmdlist):
- return subprocess.Popen(cmdlist,
- stdout=subprocess.PIPE).communicate()[0].rstrip('\n')
- def ExpectEq(expected, actual):
- if expected != actual:
- print >>sys.stderr, 'Expected "%s", got "%s"' % (expected, actual)
- test.fail_test()
- def ls(path):
- '''Returns a list of all files in a directory, relative to the directory.'''
- result = []
- for dirpath, _, files in os.walk(path):
- for f in files:
- result.append(os.path.join(dirpath, f)[len(path) + 1:])
- return result
- def XcodeVersion():
- stdout = subprocess.check_output(['xcodebuild', '-version'])
- version = stdout.splitlines()[0].split()[-1].replace('.', '')
- return (version + '0' * (3 - len(version))).zfill(4)
- if sys.platform == 'darwin':
- test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'])
- test.run_gyp('test.gyp', chdir='app-bundle')
- test.build('test.gyp', test.ALL, chdir='app-bundle')
- # Binary
- test.built_file_must_exist('Test App Gyp.app/Contents/MacOS/Test App Gyp',
- chdir='app-bundle')
- # Info.plist
- info_plist = test.built_file_path('Test App Gyp.app/Contents/Info.plist',
- chdir='app-bundle')
- test.must_exist(info_plist)
- test.must_contain(info_plist, 'com.google.Test-App-Gyp') # Variable expansion
- test.must_not_contain(info_plist, '${MACOSX_DEPLOYMENT_TARGET}');
- if test.format != 'make':
- # TODO: Synthesized plist entries aren't hooked up in the make generator.
- plist = plistlib.readPlist(info_plist)
- ExpectEq(GetStdout(['sw_vers', '-buildVersion']),
- plist['BuildMachineOSBuild'])
- # Prior to Xcode 5.0.0, SDKROOT (and thus DTSDKName) was only defined if
- # set in the Xcode project file. Starting with that version, it is always
- # defined.
- expected = ''
- if XcodeVersion() >= '0500':
- version = GetStdout(['xcodebuild', '-version', '-sdk', '', 'SDKVersion'])
- expected = 'macosx' + version
- ExpectEq(expected, plist['DTSDKName'])
- sdkbuild = GetStdout(
- ['xcodebuild', '-version', '-sdk', '', 'ProductBuildVersion'])
- if not sdkbuild:
- # Above command doesn't work in Xcode 4.2.
- sdkbuild = plist['BuildMachineOSBuild']
- ExpectEq(sdkbuild, plist['DTSDKBuild'])
- xcode, build = GetStdout(['xcodebuild', '-version']).splitlines()
- xcode = xcode.split()[-1].replace('.', '')
- xcode = (xcode + '0' * (3 - len(xcode))).zfill(4)
- build = build.split()[-1]
- ExpectEq(xcode, plist['DTXcode'])
- ExpectEq(build, plist['DTXcodeBuild'])
- # Resources
- strings_files = ['InfoPlist.strings', 'utf-16be.strings', 'utf-16le.strings']
- for f in strings_files:
- strings = test.built_file_path(
- os.path.join('Test App Gyp.app/Contents/Resources/English.lproj', f),
- chdir='app-bundle')
- test.must_exist(strings)
- # Xcodes writes UTF-16LE with BOM.
- contents = open(strings, 'rb').read()
- if not contents.startswith('\xff\xfe' + '/* Localized'.encode('utf-16le')):
- test.fail_test()
- test.built_file_must_exist(
- 'Test App Gyp.app/Contents/Resources/English.lproj/MainMenu.nib',
- chdir='app-bundle')
- # Packaging
- test.built_file_must_exist('Test App Gyp.app/Contents/PkgInfo',
- chdir='app-bundle')
- test.built_file_must_match('Test App Gyp.app/Contents/PkgInfo', 'APPLause',
- chdir='app-bundle')
- # Check that no other files get added to the bundle.
- if set(ls(test.built_file_path('Test App Gyp.app', chdir='app-bundle'))) != \
- set(['Contents/MacOS/Test App Gyp',
- 'Contents/Info.plist',
- 'Contents/Resources/English.lproj/MainMenu.nib',
- 'Contents/PkgInfo',
- ] +
- [os.path.join('Contents/Resources/English.lproj', f)
- for f in strings_files]):
- test.fail_test()
- test.pass_test()
|