forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjenkins.check_copyright.py
42 lines (35 loc) · 1.66 KB
/
jenkins.check_copyright.py
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
#-------------------------------------------------------------------------------------------------------
# Copyright (C) Microsoft. All rights reserved.
# Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
#-------------------------------------------------------------------------------------------------------
# Python 2.7 and 3.x compatibility for easier testing regardless of python installation
from __future__ import print_function
import sys
import os.path
import re
copyright_lines = [
r'-------------------------------------------------------------------------------------------------------',
r' Copyright \(C\) Microsoft( Corporation and contributors)?\. All rights reserved\.',
r' Licensed under the MIT license\. See LICENSE\.txt file in the project root for full license information\.'
]
regexes = []
for line in copyright_lines:
pattern = '^.{1,5}%s$' % line
regexes.append(re.compile(pattern))
if len(sys.argv) < 2:
print("Requires passing a filename as an argument.")
exit(1)
file_name = sys.argv[1]
if not os.path.isfile(file_name):
print("File does not exist:", file_name, "(not necessarily an error)")
exit(0)
with open(file_name, 'r') as sourcefile:
for regex in regexes:
# TODO add a check for empty files (dummy.js etc), as they cause the script to crash here
line = next(sourcefile)
line = line.rstrip()
matches = regex.match(line)
if not matches:
print(file_name, "... does not contain a correct Microsoft copyright notice.")
# found a problem so exit and report the problem to the caller
exit(1)