aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/cpp_test/test_cpp.py
blob: b7607d66c2e71a28ab2dc97aa4b254dfca8db873 (plain) (blame)
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
import json
import os
import subprocess

import pytest
import yaml
import yatest

from library.python.testing.style import rules
import library.python.resource as lpr


STYLE_CONFIG_JSON = json.dumps(yaml.safe_load(lpr.find('resfs/file/config.clang-format')))

RES_FILE_PREFIX = '/cpp_style/files/'
CHECKED_PATHS = list(lpr.iterkeys(RES_FILE_PREFIX, strip_prefix=True))


def check_style(filename, actual_source):
    clang_format_binary = yatest.common.binary_path('contrib/libs/clang14/tools/clang-format/clang-format')
    config = STYLE_CONFIG_JSON

    command = [clang_format_binary, '-assume-filename=' + filename, '-style=' + config]
    styled_source = subprocess.check_output(command, input=actual_source)

    assert actual_source.decode() == styled_source.decode()


@pytest.mark.parametrize('path', CHECKED_PATHS)
def test_cpp_style(path):
    data = lpr.find(RES_FILE_PREFIX + path)
    skip_reason = rules.get_skip_reason(path, data, skip_links=False)
    if skip_reason:
        raise pytest.skip("style check is omitted: {}".format(skip_reason))
    else:
        check_style(os.path.basename(path), data)