summaryrefslogtreecommitdiff
path: root/deps/gyp/test/msvs/external_builder/gyptest-all.py
blob: 72faa7ab7f8e19cd9e2f5f27aed3543e553cd830 (plain)
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
#!/usr/bin/env python

# Copyright (c) 2013 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 msvs_external_builder being set will invoke the provided
msvs_external_builder_build_cmd and msvs_external_builder_clean_cmd, and will
not invoke MSBuild actions and rules.
"""

import os
import sys
import TestGyp

if int(os.environ.get('GYP_MSVS_VERSION', 0)) < 2010:
  sys.exit(0)

test = TestGyp.TestGyp(formats=['msvs'], workdir='workarea_all')

# without the flag set
test.run_gyp('external.gyp')
test.build('external.gyp', target='external')
test.must_not_exist('external_builder.out')
test.must_exist('msbuild_rule.out')
test.must_exist('msbuild_action.out')
test.must_match('msbuild_rule.out', 'msbuild_rule.py hello.z a b c')
test.must_match('msbuild_action.out', 'msbuild_action.py x y z')
os.remove('msbuild_rule.out')
os.remove('msbuild_action.out')

# with the flag set, using Build
try:
  os.environ['GYP_DEFINES'] = 'use_external_builder=1'
  test.run_gyp('external.gyp')
  test.build('external.gyp', target='external')
finally:
  del os.environ['GYP_DEFINES']
test.must_not_exist('msbuild_rule.out')
test.must_not_exist('msbuild_action.out')
test.must_exist('external_builder.out')
test.must_match('external_builder.out', 'external_builder.py build 1 2 3')
os.remove('external_builder.out')

# with the flag set, using Clean
try:
  os.environ['GYP_DEFINES'] = 'use_external_builder=1'
  test.run_gyp('external.gyp')
  test.build('external.gyp', target='external', clean=True)
finally:
  del os.environ['GYP_DEFINES']
test.must_not_exist('msbuild_rule.out')
test.must_not_exist('msbuild_action.out')
test.must_exist('external_builder.out')
test.must_match('external_builder.out', 'external_builder.py clean 4 5')
os.remove('external_builder.out')

test.pass_test()