first version
[build-config.git] / config-prog / tests / conftest.py
blob0345ef6e3273995dce4b8474c4688ccc8a1641dc
1 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2018 Masahiro Yamada <yamada.masahiro@socionext.com>
6 """
7 Kconfig unit testing framework.
9 This provides fixture functions commonly used from test files.
10 """
12 import os
13 import pytest
14 import shutil
15 import subprocess
16 import tempfile
18 CONF_PATH = os.path.abspath(os.path.join('scripts', 'kconfig', 'conf'))
21 class Conf:
22 """Kconfig runner and result checker.
24 This class provides methods to run text-based interface of Kconfig
25 (scripts/kconfig/conf) and retrieve the resulted configuration,
26 stdout, and stderr. It also provides methods to compare those
27 results with expectations.
28 """
30 def __init__(self, request):
31 """Create a new Conf instance.
33 request: object to introspect the requesting test module
34 """
35 # the directory of the test being run
36 self._test_dir = os.path.dirname(str(request.fspath))
38 # runners
39 def _run_conf(self, mode, dot_config=None, out_file='.config',
40 interactive=False, in_keys=None, extra_env={}):
41 """Run text-based Kconfig executable and save the result.
43 mode: input mode option (--oldaskconfig, --defconfig=<file> etc.)
44 dot_config: .config file to use for configuration base
45 out_file: file name to contain the output config data
46 interactive: flag to specify the interactive mode
47 in_keys: key inputs for interactive modes
48 extra_env: additional environments
49 returncode: exit status of the Kconfig executable
50 """
51 command = [CONF_PATH, mode, 'Kconfig']
53 # Override 'srctree' environment to make the test as the top directory
54 extra_env['srctree'] = self._test_dir
56 # Run Kconfig in a temporary directory.
57 # This directory is automatically removed when done.
58 with tempfile.TemporaryDirectory() as temp_dir:
60 # if .config is given, copy it to the working directory
61 if dot_config:
62 shutil.copyfile(os.path.join(self._test_dir, dot_config),
63 os.path.join(temp_dir, '.config'))
65 ps = subprocess.Popen(command,
66 stdin=subprocess.PIPE,
67 stdout=subprocess.PIPE,
68 stderr=subprocess.PIPE,
69 cwd=temp_dir,
70 env=dict(os.environ, **extra_env))
72 # If input key sequence is given, feed it to stdin.
73 if in_keys:
74 ps.stdin.write(in_keys.encode('utf-8'))
76 while ps.poll() is None:
77 # For interactive modes such as oldaskconfig, oldconfig,
78 # send 'Enter' key until the program finishes.
79 if interactive:
80 ps.stdin.write(b'\n')
82 self.retcode = ps.returncode
83 self.stdout = ps.stdout.read().decode()
84 self.stderr = ps.stderr.read().decode()
86 # Retrieve the resulted config data only when .config is supposed
87 # to exist. If the command fails, the .config does not exist.
88 # 'listnewconfig' does not produce .config in the first place.
89 if self.retcode == 0 and out_file:
90 with open(os.path.join(temp_dir, out_file)) as f:
91 self.config = f.read()
92 else:
93 self.config = None
95 # Logging:
96 # Pytest captures the following information by default. In failure
97 # of tests, the captured log will be displayed. This will be useful to
98 # figure out what has happened.
100 print("[command]\n{}\n".format(' '.join(command)))
102 print("[retcode]\n{}\n".format(self.retcode))
104 print("[stdout]")
105 print(self.stdout)
107 print("[stderr]")
108 print(self.stderr)
110 if self.config is not None:
111 print("[output for '{}']".format(out_file))
112 print(self.config)
114 return self.retcode
116 def oldaskconfig(self, dot_config=None, in_keys=None):
117 """Run oldaskconfig.
119 dot_config: .config file to use for configuration base (optional)
120 in_key: key inputs (optional)
121 returncode: exit status of the Kconfig executable
123 return self._run_conf('--oldaskconfig', dot_config=dot_config,
124 interactive=True, in_keys=in_keys)
126 def oldconfig(self, dot_config=None, in_keys=None):
127 """Run oldconfig.
129 dot_config: .config file to use for configuration base (optional)
130 in_key: key inputs (optional)
131 returncode: exit status of the Kconfig executable
133 return self._run_conf('--oldconfig', dot_config=dot_config,
134 interactive=True, in_keys=in_keys)
136 def olddefconfig(self, dot_config=None):
137 """Run olddefconfig.
139 dot_config: .config file to use for configuration base (optional)
140 returncode: exit status of the Kconfig executable
142 return self._run_conf('--olddefconfig', dot_config=dot_config)
144 def defconfig(self, defconfig):
145 """Run defconfig.
147 defconfig: defconfig file for input
148 returncode: exit status of the Kconfig executable
150 defconfig_path = os.path.join(self._test_dir, defconfig)
151 return self._run_conf('--defconfig={}'.format(defconfig_path))
153 def _allconfig(self, mode, all_config):
154 if all_config:
155 all_config_path = os.path.join(self._test_dir, all_config)
156 extra_env = {'KCONFIG_ALLCONFIG': all_config_path}
157 else:
158 extra_env = {}
160 return self._run_conf('--{}config'.format(mode), extra_env=extra_env)
162 def allyesconfig(self, all_config=None):
163 """Run allyesconfig.
165 all_config: fragment config file for KCONFIG_ALLCONFIG (optional)
166 returncode: exit status of the Kconfig executable
168 return self._allconfig('allyes', all_config)
170 def allmodconfig(self, all_config=None):
171 """Run allmodconfig.
173 all_config: fragment config file for KCONFIG_ALLCONFIG (optional)
174 returncode: exit status of the Kconfig executable
176 return self._allconfig('allmod', all_config)
178 def allnoconfig(self, all_config=None):
179 """Run allnoconfig.
181 all_config: fragment config file for KCONFIG_ALLCONFIG (optional)
182 returncode: exit status of the Kconfig executable
184 return self._allconfig('allno', all_config)
186 def alldefconfig(self, all_config=None):
187 """Run alldefconfig.
189 all_config: fragment config file for KCONFIG_ALLCONFIG (optional)
190 returncode: exit status of the Kconfig executable
192 return self._allconfig('alldef', all_config)
194 def randconfig(self, all_config=None):
195 """Run randconfig.
197 all_config: fragment config file for KCONFIG_ALLCONFIG (optional)
198 returncode: exit status of the Kconfig executable
200 return self._allconfig('rand', all_config)
202 def savedefconfig(self, dot_config):
203 """Run savedefconfig.
205 dot_config: .config file for input
206 returncode: exit status of the Kconfig executable
208 return self._run_conf('--savedefconfig', out_file='defconfig')
210 def listnewconfig(self, dot_config=None):
211 """Run listnewconfig.
213 dot_config: .config file to use for configuration base (optional)
214 returncode: exit status of the Kconfig executable
216 return self._run_conf('--listnewconfig', dot_config=dot_config,
217 out_file=None)
219 # checkers
220 def _read_and_compare(self, compare, expected):
221 """Compare the result with expectation.
223 compare: function to compare the result with expectation
224 expected: file that contains the expected data
226 with open(os.path.join(self._test_dir, expected)) as f:
227 expected_data = f.read()
228 return compare(self, expected_data)
230 def _contains(self, attr, expected):
231 return self._read_and_compare(
232 lambda s, e: getattr(s, attr).find(e) >= 0,
233 expected)
235 def _matches(self, attr, expected):
236 return self._read_and_compare(lambda s, e: getattr(s, attr) == e,
237 expected)
239 def config_contains(self, expected):
240 """Check if resulted configuration contains expected data.
242 expected: file that contains the expected data
243 returncode: True if result contains the expected data, False otherwise
245 return self._contains('config', expected)
247 def config_matches(self, expected):
248 """Check if resulted configuration exactly matches expected data.
250 expected: file that contains the expected data
251 returncode: True if result matches the expected data, False otherwise
253 return self._matches('config', expected)
255 def stdout_contains(self, expected):
256 """Check if resulted stdout contains expected data.
258 expected: file that contains the expected data
259 returncode: True if result contains the expected data, False otherwise
261 return self._contains('stdout', expected)
263 def stdout_matches(self, expected):
264 """Check if resulted stdout exactly matches expected data.
266 expected: file that contains the expected data
267 returncode: True if result matches the expected data, False otherwise
269 return self._matches('stdout', expected)
271 def stderr_contains(self, expected):
272 """Check if resulted stderr contains expected data.
274 expected: file that contains the expected data
275 returncode: True if result contains the expected data, False otherwise
277 return self._contains('stderr', expected)
279 def stderr_matches(self, expected):
280 """Check if resulted stderr exactly matches expected data.
282 expected: file that contains the expected data
283 returncode: True if result matches the expected data, False otherwise
285 return self._matches('stderr', expected)
288 @pytest.fixture(scope="module")
289 def conf(request):
290 """Create a Conf instance and provide it to test functions."""
291 return Conf(request)