1 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2018 Masahiro Yamada <yamada.masahiro@socionext.com>
7 Kconfig unit testing framework.
9 This provides fixture functions commonly used from test files.
18 CONF_PATH
= os
.path
.abspath(os
.path
.join('scripts', 'kconfig', '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.
30 def __init__(self
, request
):
31 """Create a new Conf instance.
33 request: object to introspect the requesting test module
35 # the directory of the test being run
36 self
._test
_dir
= os
.path
.dirname(str(request
.fspath
))
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
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
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
,
70 env
=dict(os
.environ
, **extra_env
))
72 # If input key sequence is given, feed it to stdin.
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.
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()
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
))
110 if self
.config
is not None:
111 print("[output for '{}']".format(out_file
))
116 def oldaskconfig(self
, dot_config
=None, in_keys
=None):
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):
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):
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
):
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
):
155 all_config_path
= os
.path
.join(self
._test
_dir
, all_config
)
156 extra_env
= {'KCONFIG_ALLCONFIG': all_config_path
}
160 return self
._run
_conf
('--{}config'.format(mode
), extra_env
=extra_env
)
162 def allyesconfig(self
, all_config
=None):
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):
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):
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):
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):
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
,
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,
235 def _matches(self
, attr
, expected
):
236 return self
._read
_and
_compare
(lambda s
, e
: getattr(s
, attr
) == e
,
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")
290 """Create a Conf instance and provide it to test functions."""