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

media / test / PRESUBMIT.py [blame]

# Copyright 2018 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""Top-level presubmit script for media/test/.

See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
for more details about the presubmit API built into depot_tools.
"""

import sys

PRESUBMIT_VERSION = '2.0.0'

def _CheckTestDataReadmeUpdated(input_api, output_api):
  """
  Checks to make sure the README.md file is updated when changing test files.
  """
  test_data_dir = input_api.os_path.join('media', 'test', 'data')
  readme_path = input_api.os_path.join('media', 'test', 'data', 'README.md')
  test_files = []
  readme_updated = False
  errors = []
  for f in input_api.AffectedFiles():
    local_path = f.LocalPath()
    if input_api.os_path.dirname(local_path) == test_data_dir:
      test_files.append(f)
      if local_path == readme_path:
        readme_updated = True
        break
  if test_files and not readme_updated:
    errors.append(output_api.PresubmitPromptWarning(
        'When updating files in ' + test_data_dir + ', please also update '
        + readme_path + ':', test_files))
  return errors


def _CheckFileList(input_api, output_api):
    old_sys_path = sys.path[:]
    results = []
    try:
        sys.path.append(input_api.change.RepositoryRoot())
        # pylint: disable=no-name-in-module,import-outside-toplevel
        from build.ios import presubmit_support
        results += presubmit_support.CheckBundleData(
            input_api, output_api, 'media_bundle_data', '.')
    finally:
        sys.path = old_sys_path
    return results


def CheckChangeOnUpload(input_api, output_api):
  return _CheckTestDataReadmeUpdated(input_api, output_api)


def CheckChange(input_api, output_api):
  return _CheckFileList(input_api, output_api)