aboutsummaryrefslogtreecommitdiff
path: root/tests/test_defn_h_includes.py
blob: 5b1d54fae0df2de213ccfce4c95325d46e6b2bb3 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python3
#  Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS-IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import pytest
import re
import sys
from fruit_test_common import *

@pytest.mark.skipif(
    os.sep != '/',
    reason = 'This only works in platforms where paths are /-separated.')
def test_defn_file_inclusion():
    include_pattern = re.compile(' *#include *<(.*)> *')

    fruit_headers_root_absolute_path = os.path.abspath(PATH_TO_FRUIT_STATIC_HEADERS)

    includes = {}
    for root, _, files in os.walk(fruit_headers_root_absolute_path):
        for file in files:
            if file.endswith('.h'):
                path = os.path.join(root, file)
                with open(path, 'r') as f:
                    current_includes = set()
                    for line in f.readlines():
                        # Remove the newline
                        line = line[:-1]
                        matches = re.match(include_pattern, line)
                        if matches:
                            current_includes.add(matches.groups()[0])
                    root_relative_path = root.replace(fruit_headers_root_absolute_path, '')
                    relative_path = os.path.join(root_relative_path, file)
                    if relative_path.startswith(os.sep):
                        relative_path = relative_path[1:]
                    includes[relative_path] = current_includes

    for defn_file, defn_file_includes in includes.items():
        if defn_file.endswith('.defn.h'):
            main_header_file = defn_file.replace('.defn.h', '.h')
            # This is a special case where we don't follow the convention, so we need to specify the corresponding main
            # header file explicitly.
            if defn_file == 'fruit/impl/component_functors.defn.h':
                main_header_file = 'fruit/component.h'

            # The .defn.h files for headers in fruit/ are in fruit/impl/
            alternative_main_header_file = main_header_file.replace('fruit/impl/', 'fruit/')

            if main_header_file not in includes and alternative_main_header_file not in includes:
                raise Exception('Can\'t find the .h header corresponding to: %s. Considered: %s' % (defn_file, (main_header_file, alternative_main_header_file)))
            if main_header_file not in defn_file_includes and alternative_main_header_file not in defn_file_includes:
                raise Exception('%s should have included %s, but it includes only: %s' % (defn_file, main_header_file, defn_file_includes))
            if main_header_file in includes and defn_file not in includes[main_header_file]:
                raise Exception('%s should have included %s, but it includes only: %s' % (main_header_file, defn_file, includes[main_header_file]))
            if alternative_main_header_file in includes and defn_file not in includes[alternative_main_header_file]:
                raise Exception('%s should have included %s, but it includes only: %s' % (main_header_file, defn_file, includes[alternative_main_header_file]))
            for other_header, other_header_includes in includes.items():
                if other_header not in (main_header_file, alternative_main_header_file) and defn_file in other_header_includes:
                    raise Exception('Unexpected direct include: %s includes %s' % (other_header, defn_file))

if __name__== '__main__':
    main(__file__)