testcfg.py 6.33 KB
Newer Older
1
# Copyright 2008 the V8 project authors. All rights reserved.
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
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
#     * Redistributions of source code must retain the above copyright
#       notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
#       copyright notice, this list of conditions and the following
#       disclaimer in the documentation and/or other materials provided
#       with the distribution.
#     * Neither the name of Google Inc. nor the names of its
#       contributors may be used to endorse or promote products derived
#       from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

import os
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
import shutil

from testrunner.local import commands
from testrunner.local import testsuite
from testrunner.local import utils
from testrunner.objects import testcase


class CcTestSuite(testsuite.TestSuite):

  def __init__(self, name, root):
    super(CcTestSuite, self).__init__(name, root)
    self.serdes_dir = normpath(join(root, "..", "..", "out", ".serdes"))
    if exists(self.serdes_dir):
      shutil.rmtree(self.serdes_dir, True)
    os.makedirs(self.serdes_dir)

  def ListTests(self, context):
    shell = join(context.shell_dir, self.shell())
    if utils.IsWindows():
      shell += '.exe'
    output = commands.Execute([shell, '--list'])
    if output.exit_code != 0:
      print output.stdout
      print output.stderr
      return []
    tests = []
    for test_desc in output.stdout.strip().split():
      raw_test, dependency = test_desc.split('<')
      if dependency != '':
        dependency = raw_test.split('/')[0] + '/' + dependency
      else:
        dependency = None
      test = testcase.TestCase(self, raw_test, dependency=dependency)
      tests.append(test)
    tests.sort()
    return tests

  def GetFlagsForTestCase(self, testcase, context):
    testname = testcase.path.split(os.path.sep)[-1]
    serialization_file = join(self.serdes_dir, "serdes_" + testname)
    serialization_file += ''.join(testcase.flags).replace('-', '_')
    return (testcase.flags + [testcase.path] + context.mode_flags +
            ["--testing_serialization_file=" + serialization_file])

  def shell(self):
    return "cctest"


def GetSuite(name, root):
  return CcTestSuite(name, root)


# Deprecated definitions below.
# TODO(jkummerow): Remove when SCons is no longer supported.


from os.path import exists, join, normpath
import test
88 89 90 91


class CcTestCase(test.TestCase):

92
  def __init__(self, path, executable, mode, raw_name, dependency, context, variant_flags):
93
    super(CcTestCase, self).__init__(context, path, mode)
94 95
    self.executable = executable
    self.raw_name = raw_name
96
    self.dependency = dependency
97
    self.variant_flags = variant_flags
98 99 100 101 102 103

  def GetLabel(self):
    return "%s %s %s" % (self.mode, self.path[-2], self.path[-1])

  def GetName(self):
    return self.path[-1]
104

105
  def BuildCommand(self, name):
106 107 108 109 110
    serialization_file = ''
    if exists(join(self.context.buildspace, 'obj', 'test', self.mode)):
      serialization_file = join('obj', 'test', self.mode, 'serdes')
    else:
      serialization_file = join('obj', 'serdes')
111 112
      if not exists(join(self.context.buildspace, 'obj')):
        os.makedirs(join(self.context.buildspace, 'obj'))
113
    serialization_file += '_' + self.GetName()
114
    serialization_file = join(self.context.buildspace, serialization_file)
115
    serialization_file += ''.join(self.variant_flags).replace('-', '_')
116
    serialization_option = '--testing_serialization_file=' + serialization_file
117
    result = [ self.executable, name, serialization_option ]
118
    result += self.context.GetVmFlags(self, self.mode)
119 120
    return result

121 122
  def GetCommand(self):
    return self.BuildCommand(self.raw_name)
123

124 125 126 127
  def Run(self):
    if self.dependency != '':
      dependent_command = self.BuildCommand(self.dependency)
      output = self.RunCommand(dependent_command)
128
      if output.HasFailed():
129 130 131
        return output
    return test.TestCase.Run(self)

132 133 134 135 136 137 138 139 140

class CcTestConfiguration(test.TestConfiguration):

  def __init__(self, context, root):
    super(CcTestConfiguration, self).__init__(context, root)

  def GetBuildRequirements(self):
    return ['cctests']

141
  def ListTests(self, current_path, path, mode, variant_flags):
142
    executable = 'cctest'
143
    if utils.IsWindows():
144
      executable += '.exe'
145
    executable = join(self.context.buildspace, executable)
146 147 148 149 150
    if not exists(executable):
      executable = join('obj', 'test', mode, 'cctest')
      if utils.IsWindows():
        executable += '.exe'
      executable = join(self.context.buildspace, executable)
151 152
    full_command = self.context.processor([executable, '--list'])
    output = test.Execute(full_command, self.context)
153 154 155 156 157
    if output.exit_code != 0:
      print output.stdout
      print output.stderr
      return []
    result = []
158 159 160 161 162 163
    for test_desc in output.stdout.strip().split():
      raw_test, dependency = test_desc.split('<')
      relative_path = raw_test.split('/')
      full_path = current_path + relative_path
      if dependency != '':
        dependency = relative_path[0] + '/' + dependency
164
      if self.Contains(path, full_path):
165
        result.append(CcTestCase(full_path, executable, mode, raw_test, dependency, self.context, variant_flags))
166
    result.sort()
167
    return result
168

169 170 171 172
  def GetTestStatus(self, sections, defs):
    status_file = join(self.root, 'cctest.status')
    if exists(status_file):
      test.ReadConfigurationInto(status_file, sections, defs)
173 174 175 176


def GetConfiguration(context, root):
  return CcTestConfiguration(context, root)