Javi Merino | aace7c0 | 2015-08-10 14:10:47 +0100 | [diff] [blame] | 1 | # Copyright 2015-2015 ARM Limited |
Javi Merino | a55880f | 2015-03-10 17:47:10 +0000 | [diff] [blame] | 2 | # |
Javi Merino | aace7c0 | 2015-08-10 14:10:47 +0100 | [diff] [blame] | 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | # |
| 15 | |
Javi Merino | a55880f | 2015-03-10 17:47:10 +0000 | [diff] [blame] | 16 | |
| 17 | from datetime import date |
| 18 | import os |
Javi Merino | dea8e9d | 2015-08-10 16:37:55 +0100 | [diff] [blame] | 19 | import re |
Javi Merino | a55880f | 2015-03-10 17:47:10 +0000 | [diff] [blame] | 20 | import unittest |
| 21 | |
| 22 | |
| 23 | def copyright_is_valid(fname): |
| 24 | """Return True if fname has a valid copyright""" |
| 25 | with open(fname) as fin: |
| 26 | # Read the first 2K of the file. If the copyright is not there, you |
| 27 | # are probably doing something wrong |
| 28 | lines = fin.readlines(2048) |
| 29 | |
Javi Merino | dea8e9d | 2015-08-10 16:37:55 +0100 | [diff] [blame] | 30 | # Either the first or the second line must have a "Copyright:" line |
| 31 | first_line = re.compile(r"(#| \*) Copyright") |
Javi Merino | 69b10c2 | 2015-09-22 14:47:06 +0100 | [diff] [blame] | 32 | try: |
| 33 | if not first_line.search(lines[0]): |
| 34 | if first_line.search(lines[1]): |
| 35 | # Drop the first line to align the copyright to lines[0] |
| 36 | lines = lines[1:] |
| 37 | else: |
| 38 | return False |
| 39 | except IndexError: |
| 40 | return False |
Javi Merino | a55880f | 2015-03-10 17:47:10 +0000 | [diff] [blame] | 41 | |
Javi Merino | aace7c0 | 2015-08-10 14:10:47 +0100 | [diff] [blame] | 42 | # The copyright mentions ARM Limited |
| 43 | if "ARM Limited" not in lines[0]: |
Javi Merino | a55880f | 2015-03-10 17:47:10 +0000 | [diff] [blame] | 44 | return False |
| 45 | |
Javi Merino | aace7c0 | 2015-08-10 14:10:47 +0100 | [diff] [blame] | 46 | # The Copyright includes the current year |
Javi Merino | a55880f | 2015-03-10 17:47:10 +0000 | [diff] [blame] | 47 | current_year = date.today().year |
Javi Merino | aace7c0 | 2015-08-10 14:10:47 +0100 | [diff] [blame] | 48 | if str(current_year) not in lines[0]: |
Javi Merino | a55880f | 2015-03-10 17:47:10 +0000 | [diff] [blame] | 49 | return False |
| 50 | |
Javi Merino | aace7c0 | 2015-08-10 14:10:47 +0100 | [diff] [blame] | 51 | # It's the apache license |
Javi Merino | dea8e9d | 2015-08-10 16:37:55 +0100 | [diff] [blame] | 52 | if "http://www.apache.org/licenses/LICENSE-2.0" not in lines[6]: |
Javi Merino | a55880f | 2015-03-10 17:47:10 +0000 | [diff] [blame] | 53 | return False |
| 54 | |
| 55 | return True |
| 56 | |
| 57 | |
| 58 | class TestCopyRight(unittest.TestCase): |
| 59 | def test_copyrights(self): |
| 60 | """Check that all files have valid copyrights""" |
Javi Merino | a55880f | 2015-03-10 17:47:10 +0000 | [diff] [blame] | 61 | |
Kapileshwar Singh | 84cbf3b | 2015-09-02 15:49:42 +0100 | [diff] [blame] | 62 | tests_dir = os.path.dirname(os.path.abspath(__file__)) |
| 63 | base_dir = os.path.dirname(tests_dir) |
| 64 | |
Javi Merino | 45010cb | 2015-09-22 15:39:01 +0100 | [diff] [blame^] | 65 | for root, dirs, files in os.walk(base_dir): |
Kapileshwar Singh | 84cbf3b | 2015-09-02 15:49:42 +0100 | [diff] [blame] | 66 | for fname in files: |
| 67 | fname = os.path.join(root, fname) |
| 68 | extension = os.path.splitext(fname)[1] |
| 69 | if extension in [".py", ".js", ".css"]: |
| 70 | if not copyright_is_valid(fname): |
| 71 | print("Invalid copyright in {}".format(fname)) |
| 72 | self.fail() |
Javi Merino | 45010cb | 2015-09-22 15:39:01 +0100 | [diff] [blame^] | 73 | |
| 74 | if '.git' in dirs: |
| 75 | dirs.remove('.git') |