🗃 tdir - create and fill a temporary directory 🗃
Very convenient for writing tests: you can decorate individual tests or a whole test suite.
tdir()
runs code in a temporary directory pre-filled with files: it can
either be used as a context manager, or a decorator for functions or classes.
tdir.fill()
is a tiny function that recursively fills a directory.
Example: as a context manager
from pathlib import Path
import tdir
cwd = Path.cwd()
# Simplest invocation.
with tdir():
# Do a lot of things in a temporary directory
# Everything is gone!
# With a single file
with tdir('hello') as td:
# The file `hello` is there
assert Path('hello').read_text() = 'hello\n'
# We're in a temporary directory
assert td == Path.cwd()
assert td != cwd
# Write some other file
Path('junk.txt').write_text('hello, world\n')
# The temporary directory and the files are gone
assert not td.exists()
assert cwd == Path.cwd()
# A more complex example:
#
with tdir(
'one.txt',
three='some information',
four=Path('existing/file'), # Copy a file into the tempdir
sub1={
'file.txt': 'blank lines\n\n\n\n',
'sub2': [
'a', 'b', 'c'
]
},
):
assert Path('one.txt').exists()
assert Path('four').read_text() == Path('/existing/file').read_text()
assert Path('sub1/sub2/a').exists()
# All files gone!
Example: as a decorator
from pathlib import Path
import tdir
import unittest
@tdir
def my_function():
pass # my_function() always operates in a temporary directory
# Decorate a TestCase so each test runs in a new temporary directory
# with two files
@tdir('a', foo='bar')
class MyTest(unittest.TestCast):
def test_something(self):
assert Path('a').read_text() = 'a\n'
def test_something_else(self):
assert Path('foo').read_text() = 'bar\n'
class MyTest2(unittest.TestCast):
# Decorate just one test in a unitttest
@tdir(foo='bar', baz=bytes(range(4))) # binary files are possible
def test_something(self):
assert Path('foo').read_text() = 'bar\n'
assert Path('baz').read_bytes() = bytes(range(4)))
# Run test in an empty temporary directory
@tdir
def test_something_else(self):
assert not Path('a').exists()
assert Path().absolute() != self.ORIGINAL_PATH
ORIGINAL_PATH = Path().absolute()
API Documentation
fill(_root, *args, **kwargs)
Recursively fills a directory from file names and optional values.
ARGUMENTS _root: The root directory to fill
args: A list of strings, dictionaries or Paths.
For strings, a file is created with that string as name and contents.
For dictionaries, the contents are used to recursively create and fill
the directory.
For Paths, that file is copied into the target directory under the same
name.
kwargs: A dictionary mapping file or directory names to values.
If the key's value is a string it is used to file a file of that name.
If it's a dictionary, its contents are used to recursively create and
fill a subdirectory.
If it's a Path, that file is copied to the target directory but with
the key as its name.
Source code in tdir/tdir.py
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 |
|
tdir(*args, chdir=True, methods=patch.TEST_PREFIX, use_dir='', save=False, clear=False, **kwargs)
Set up a temporary directory, fill it with files, then tear it down at the end of an operation.
tdir
can be used either as a context manager, or a decorator for
functions or classes.
ARGUMENTS
args, kwargs:
Files to put into the temporary directory.
See the documentation for tdir.fill()
chdir: If true (the default), change the working directory to the tdir at the start of the operation and restore the original working directory at the end. Otherwise, don't change or restore the working directory.
methods: The methods argument tells how to decorate class methods when decorating a class.
The default decorates only class methods that start with the string
`test` - exactly like `unittest.mock.patch` does.
use_dir:
If non-empty, use_dir
is used instead of a temp directory (and is
not removed at the end) - for example, use_dir='.'
puts everything in
the current directory.
save:
If set to true, the temp directory is not deleted at end and its name
is printed to sys.stderr
Source code in tdir/tdir.py
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
|