test: Move make_fake_input_tree to testutil
This is useful for other stage tests, move it and add a test.
This commit is contained in:
parent
5416028f2d
commit
9eb9f7f7f2
3 changed files with 39 additions and 12 deletions
20
test/mod/test_testutil_fake_tree.py
Normal file
20
test/mod/test_testutil_fake_tree.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#
|
||||
# Tests for the 'osbuild.util.testutil' module.
|
||||
#
|
||||
import os.path
|
||||
|
||||
import pytest
|
||||
|
||||
from osbuild.testutil import make_fake_input_tree
|
||||
|
||||
|
||||
def test_make_fake_tree(tmp_path): # pylint: disable=unused-argument
|
||||
fake_input_tree = make_fake_input_tree(tmp_path, {
|
||||
"/fake-file-one": "Some content",
|
||||
"/second/fake-file-two": "Second content",
|
||||
})
|
||||
assert os.path.isdir(fake_input_tree)
|
||||
assert os.path.exists(os.path.join(fake_input_tree, "fake-file-one"))
|
||||
assert open(os.path.join(fake_input_tree, "fake-file-one")).read() == "Some content"
|
||||
assert os.path.exists(os.path.join(fake_input_tree, "second/fake-file-two"))
|
||||
assert open(os.path.join(fake_input_tree, "second/fake-file-two")).read() == "Second content"
|
||||
Loading…
Add table
Add a link
Reference in a new issue