Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: tests/gclient_test.py

Issue 11246004: Allow DEPS file to specify 'target_os'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Added pylint disable W0212 Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« gclient.py ('K') | « gclient.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Unit tests for gclient.py. 6 """Unit tests for gclient.py.
7 7
8 See gclient_smoketest.py for integration tests. 8 See gclient_smoketest.py for integration tests.
9 """ 9 """
10 10
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 ' "baz": { "foo/dir3": "/dir3", },\n' 300 ' "baz": { "foo/dir3": "/dir3", },\n'
301 '}') 301 '}')
302 302
303 parser = gclient.Parser() 303 parser = gclient.Parser()
304 options, _ = parser.parse_args(['--jobs', '1']) 304 options, _ = parser.parse_args(['--jobs', '1'])
305 options.deps_os = "unix" 305 options.deps_os = "unix"
306 306
307 obj = gclient.GClient.LoadCurrentConfig(options) 307 obj = gclient.GClient.LoadCurrentConfig(options)
308 self.assertEqual(['baz', 'unix'], sorted(obj.enforced_os)) 308 self.assertEqual(['baz', 'unix'], sorted(obj.enforced_os))
309 309
310 def testTargetOsInDepsFile(self):
311 """Verifies that specifying a target_os value in a DEPS file pulls in all
312 relevant dependencies.
313
314 The target_os variable in a DEPS file allows specifying the name of an
315 additional OS which should be considered when selecting dependencies from a
316 DEPS' deps_os. The value will be appended to the _enforced_os tuple.
317 """
318
319 write(
320 '.gclient',
321 'solutions = [\n'
322 ' { "name": "foo",\n'
323 ' "url": "svn://example.com/foo",\n'
324 ' }]\n')
325 write(
326 os.path.join('foo', 'DEPS'),
327 'deps = {\n'
328 ' "foo/dir1": "/dir1",'
329 '}\n'
330 'target_os = ["baz", "jaz"]\n'
331 'deps_os = {\n'
332 ' "unix": { "foo/dir2": "/dir2", },\n'
333 ' "baz": { "foo/dir3": "/dir3", },\n'
334 ' "jaz": { "foo/dir4": "/dir4", },\n'
335 ' "maz": { "foo/dir5": "/dir5", },\n'
336 '}')
337
338 parser = gclient.Parser()
339 options, _ = parser.parse_args(['--jobs', '1'])
340 options.deps_os = 'unix'
341
342 obj = gclient.GClient.LoadCurrentConfig(options)
343 obj.RunOnDeps(None, None)
344 self.assertEqual(['baz', 'jaz', 'unix'], sorted(obj.enforced_os))
345
310 def testRecursionOverride(self): 346 def testRecursionOverride(self):
311 """Verifies gclient respects the recursion var syntax. 347 """Verifies gclient respects the recursion var syntax.
312 348
313 We check several things here: 349 We check several things here:
314 - recursion = 3 sets recursion on the foo dep to exactly 3 350 - recursion = 3 sets recursion on the foo dep to exactly 3
315 (we pull /fizz, but not /fuzz) 351 (we pull /fizz, but not /fuzz)
316 - pulling foo/bar at recursion level 1 (in .gclient) is overriden by 352 - pulling foo/bar at recursion level 1 (in .gclient) is overriden by
317 a later pull of foo/bar at recursion level 2 (in the dep tree) 353 a later pull of foo/bar at recursion level 2 (in the dep tree)
318 """ 354 """
319 write( 355 write(
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 sys.stdout = gclient_utils.MakeFileAutoFlush(sys.stdout) 398 sys.stdout = gclient_utils.MakeFileAutoFlush(sys.stdout)
363 sys.stdout = gclient_utils.MakeFileAnnotated(sys.stdout, include_zero=True) 399 sys.stdout = gclient_utils.MakeFileAnnotated(sys.stdout, include_zero=True)
364 sys.stderr = gclient_utils.MakeFileAutoFlush(sys.stderr) 400 sys.stderr = gclient_utils.MakeFileAutoFlush(sys.stderr)
365 sys.stderr = gclient_utils.MakeFileAnnotated(sys.stderr, include_zero=True) 401 sys.stderr = gclient_utils.MakeFileAnnotated(sys.stderr, include_zero=True)
366 logging.basicConfig( 402 logging.basicConfig(
367 level=[logging.ERROR, logging.WARNING, logging.INFO, logging.DEBUG][ 403 level=[logging.ERROR, logging.WARNING, logging.INFO, logging.DEBUG][
368 min(sys.argv.count('-v'), 3)], 404 min(sys.argv.count('-v'), 3)],
369 format='%(relativeCreated)4d %(levelname)5s %(module)13s(' 405 format='%(relativeCreated)4d %(levelname)5s %(module)13s('
370 '%(lineno)d) %(message)s') 406 '%(lineno)d) %(message)s')
371 unittest.main() 407 unittest.main()
OLDNEW
« gclient.py ('K') | « gclient.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698