0
Files
src/ios/PRESUBMIT_test.py
Avi Drissman 3d243a4ce2 Add presubmit error for ARC boilerplate
The ARC boilerplate isn't needed any more and is being removed across
the codebase. Add a presubmit to avoid getting any more committed.

The presubmit change alone landed earlier and was reverted because it
wasn't ready. Now this lands along with other related changes.

Bug: 1468376
Change-Id: I9a7fdc66ed5daa1d623e3226fdf4e9004c071d5a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4727321
Reviewed-by: Bruce Dawson <brucedawson@chromium.org>
Auto-Submit: Avi Drissman <avi@chromium.org>
Reviewed-by: Sylvain Defresne <sdefresne@chromium.org>
Commit-Queue: Avi Drissman <avi@chromium.org>
Reviewed-by: Robert Sesek <rsesek@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1177895}
2023-08-01 16:53:59 +00:00

121 lines
5.0 KiB
Python
Executable File

#!/usr/bin/env python
# Copyright 2017 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import sys
import unittest
import PRESUBMIT
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import PRESUBMIT_test_mocks
class CheckTODOFormatTest(unittest.TestCase):
"""Test the _CheckBugInToDo presubmit check."""
def testTODOs(self):
bad_lines = [
'TO'
'DO(ldap): fix this', 'TO'
'DO(ladp): see crbug.com/8675309', 'TO'
'DO(8675309): fix this', 'TO'
'DO(http://crbug.com/8675309): fix this', 'TO'
'DO( crbug.com/8675309): fix this', 'TO'
'DO(crbug/8675309): fix this', 'TO'
'DO(crbug.com): fix this'
]
good_lines = [
'TO'
'DO(crbug.com/8675309): fix this', 'TO'
'DO(crbug.com/8675309): fix this (please)',
'TODO(b/12345): fix this'
]
mock_input = PRESUBMIT_test_mocks.MockInputApi()
mock_input.files = [
PRESUBMIT_test_mocks.MockFile('ios/path/foo_controller.mm',
bad_lines + good_lines)
]
mock_output = PRESUBMIT_test_mocks.MockOutputApi()
errors = PRESUBMIT._CheckBugInToDo(mock_input, mock_output)
self.assertEqual(len(errors), 1)
self.assertEqual('error', errors[0].type)
self.assertTrue('without bug numbers' in errors[0].message)
error_lines = errors[0].message.split('\n')
self.assertEqual(len(error_lines), len(bad_lines) + 2)
class CheckHasNoIncludeDirectivesTest(unittest.TestCase):
"""Test the _CheckHasNoIncludeDirectives presubmit check."""
def testFindsIncludeDirectives(self):
good_lines = [
'#import <system>', '#import "my/path/my/header.h"',
'#import "my/path/my/source.mm"', '#import "my/path/my/source.m"'
]
bad_lines = [
'#include <system>', '#import <system>',
'#include "my/path/my/header.h"',
'#include "my/path/my/source.mm"', '#import "my/path/my/header.h"'
'#include "my/path/my/source.m"'
]
mock_input = PRESUBMIT_test_mocks.MockInputApi()
mock_input.files = [
PRESUBMIT_test_mocks.MockFile('ios/path/foo_controller.mm',
bad_lines),
PRESUBMIT_test_mocks.MockFile('ios/path/foo_controller_2.mm',
good_lines),
PRESUBMIT_test_mocks.MockFile('ios/path/bar_controller.h',
bad_lines),
PRESUBMIT_test_mocks.MockFile('ios/path/bar_controller.m',
bad_lines),
PRESUBMIT_test_mocks.MockFile('ios/path/bar_controller.cc',
bad_lines),
PRESUBMIT_test_mocks.MockFile('chrome/path/foo_controller.mm',
bad_lines),
]
mock_output = PRESUBMIT_test_mocks.MockOutputApi()
errors = PRESUBMIT._CheckHasNoIncludeDirectives(
mock_input, mock_output)
self.assertEqual(len(errors), 1)
self.assertEqual('error', errors[0].type)
self.assertTrue('ios/path/foo_controller.mm:1' in errors[0].message)
self.assertTrue('ios/path/foo_controller.mm:3' in errors[0].message)
self.assertTrue('ios/path/foo_controller.mm:4' in errors[0].message)
class CheckHasNoPipeInCommentTest(unittest.TestCase):
"""Test the _CheckHasNoPipeInComment presubmit check."""
def testFindsIncludeDirectives(self):
good_lines = [
'#if !defined(__has_feature) || !__has_feature(objc_arc)',
'// This does A || B', '// `MySymbol` is correct',
'bitVariable1 | bitVariable2'
]
bad_lines = [
'// |MySymbol| is wrong', '// What is wrong is: |MySymbol|'
]
mock_input = PRESUBMIT_test_mocks.MockInputApi()
mock_input.files = [
PRESUBMIT_test_mocks.MockFile('ios/path/foo_controller.mm',
good_lines + bad_lines),
PRESUBMIT_test_mocks.MockFile('ios/path/foo_controller.h',
bad_lines + good_lines),
]
mock_output = PRESUBMIT_test_mocks.MockOutputApi()
errors = PRESUBMIT._CheckHasNoPipeInComment(mock_input, mock_output)
self.assertEqual(len(errors), 1)
self.assertEqual('warning', errors[0].type)
self.assertTrue('ios/path/foo_controller.mm:5' in errors[0].message)
self.assertTrue('ios/path/foo_controller.mm:6' in errors[0].message)
self.assertTrue('ios/path/foo_controller.h:1' in errors[0].message)
self.assertTrue('ios/path/foo_controller.h:2' in errors[0].message)
error_lines = errors[0].message.split('\n')
self.assertEqual(len(error_lines), len(bad_lines) * 2 + 3)
if __name__ == '__main__':
unittest.main()