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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
"""Verify correct work of `_copy_without_render` context option."""
import os
from pathlib import Path
import pytest
from cookiecutter import generate, utils
@pytest.fixture
def remove_test_dir():
"""Fixture. Remove the folder that is created by the test."""
yield
if os.path.exists('test_copy_without_render'):
utils.rmtree('test_copy_without_render')
@pytest.mark.usefixtures('clean_system', 'remove_test_dir')
def test_generate_copy_without_render_extensions():
"""Verify correct work of `_copy_without_render` context option.
Some files/directories should be rendered during invocation,
some just copied, without any modification.
"""
generate.generate_files(
context={
'cookiecutter': {
'repo_name': 'test_copy_without_render',
'render_test': 'I have been rendered!',
'_copy_without_render': [
'*not-rendered',
'rendered/not_rendered.yml',
'*.txt',
'{{cookiecutter.repo_name}}-rendered/README.md',
],
}
},
repo_dir='tests/test-generate-copy-without-render',
)
dir_contents = os.listdir('test_copy_without_render')
assert 'test_copy_without_render-not-rendered' in dir_contents
assert 'test_copy_without_render-rendered' in dir_contents
file_1 = Path('test_copy_without_render/README.txt').read_text()
assert '{{cookiecutter.render_test}}' in file_1
file_2 = Path('test_copy_without_render/README.rst').read_text()
assert 'I have been rendered!' in file_2
file_3 = Path(
'test_copy_without_render/test_copy_without_render-rendered/README.txt'
).read_text()
assert '{{cookiecutter.render_test}}' in file_3
file_4 = Path(
'test_copy_without_render/test_copy_without_render-rendered/README.rst'
).read_text()
assert 'I have been rendered' in file_4
file_5 = Path(
'test_copy_without_render/'
'test_copy_without_render-not-rendered/'
'README.rst'
).read_text()
assert '{{cookiecutter.render_test}}' in file_5
file_6 = Path('test_copy_without_render/rendered/not_rendered.yml').read_text()
assert '{{cookiecutter.render_test}}' in file_6
file_7 = Path(
'test_copy_without_render/' 'test_copy_without_render-rendered/' 'README.md'
).read_text()
assert '{{cookiecutter.render_test}}' in file_7
|