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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 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
|
import os
import shutil
import sys
import tempfile
import unittest
from io import StringIO
from pecan.tests import PecanTestCase
class TestPecanScaffold(PecanTestCase):
def test_normalize_pkg_name(self):
from pecan.scaffolds import PecanScaffold
s = PecanScaffold()
assert s.normalize_pkg_name('sam') == 'sam'
assert s.normalize_pkg_name('sam1') == 'sam1'
assert s.normalize_pkg_name('sam_') == 'sam_'
assert s.normalize_pkg_name('Sam') == 'sam'
assert s.normalize_pkg_name('SAM') == 'sam'
assert s.normalize_pkg_name('sam ') == 'sam'
assert s.normalize_pkg_name(' sam') == 'sam'
assert s.normalize_pkg_name('sam$') == 'sam'
assert s.normalize_pkg_name('sam-sam') == 'samsam'
class TestScaffoldUtils(PecanTestCase):
def setUp(self):
super(TestScaffoldUtils, self).setUp()
self.scaffold_destination = tempfile.mkdtemp()
self.out = sys.stdout
sys.stdout = StringIO()
def tearDown(self):
shutil.rmtree(self.scaffold_destination)
sys.stdout = self.out
def test_copy_dir(self):
from pecan.scaffolds import PecanScaffold
class SimpleScaffold(PecanScaffold):
_scaffold_dir = ('pecan', os.path.join(
'tests', 'scaffold_fixtures', 'simple'
))
SimpleScaffold().copy_to(os.path.join(
self.scaffold_destination,
'someapp'
), out_=StringIO())
assert os.path.isfile(os.path.join(
self.scaffold_destination, 'someapp', 'foo'
))
assert os.path.isfile(os.path.join(
self.scaffold_destination, 'someapp', 'bar', 'spam.txt'
))
with open(os.path.join(
self.scaffold_destination, 'someapp', 'foo'
), 'r') as f:
assert f.read().strip() == 'YAR'
def test_destination_directory_levels_deep(self):
from pecan.scaffolds import copy_dir
f = StringIO()
copy_dir(
(
'pecan', os.path.join('tests', 'scaffold_fixtures', 'simple')
),
os.path.join(self.scaffold_destination, 'some', 'app'),
{},
out_=f
)
assert os.path.isfile(os.path.join(
self.scaffold_destination, 'some', 'app', 'foo')
)
assert os.path.isfile(os.path.join(
self.scaffold_destination, 'some', 'app', 'bar', 'spam.txt')
)
with open(os.path.join(
self.scaffold_destination, 'some', 'app', 'foo'
), 'r') as f:
assert f.read().strip() == 'YAR'
with open(os.path.join(
self.scaffold_destination, 'some', 'app', 'bar', 'spam.txt'
), 'r') as f:
assert f.read().strip() == 'Pecan'
def test_destination_directory_already_exists(self):
from pecan.scaffolds import copy_dir
f = StringIO()
copy_dir(
(
'pecan', os.path.join('tests', 'scaffold_fixtures', 'simple')
),
os.path.join(self.scaffold_destination),
{},
out_=f
)
assert 'already exists' in f.getvalue()
def test_copy_dir_with_filename_substitution(self):
from pecan.scaffolds import copy_dir
copy_dir(
(
'pecan', os.path.join('tests', 'scaffold_fixtures', 'file_sub')
),
os.path.join(
self.scaffold_destination, 'someapp'
),
{'package': 'thingy'},
out_=StringIO()
)
assert os.path.isfile(os.path.join(
self.scaffold_destination, 'someapp', 'foo_thingy')
)
assert os.path.isfile(os.path.join(
self.scaffold_destination, 'someapp', 'bar_thingy', 'spam.txt')
)
with open(os.path.join(
self.scaffold_destination, 'someapp', 'foo_thingy'
), 'r') as f:
assert f.read().strip() == 'YAR'
with open(os.path.join(
self.scaffold_destination, 'someapp', 'bar_thingy', 'spam.txt'
), 'r') as f:
assert f.read().strip() == 'Pecan'
def test_copy_dir_with_file_content_substitution(self):
from pecan.scaffolds import copy_dir
copy_dir(
(
'pecan',
os.path.join('tests', 'scaffold_fixtures', 'content_sub'),
),
os.path.join(
self.scaffold_destination, 'someapp'
),
{'package': 'thingy'},
out_=StringIO()
)
assert os.path.isfile(os.path.join(
self.scaffold_destination, 'someapp', 'foo')
)
assert os.path.isfile(os.path.join(
self.scaffold_destination, 'someapp', 'bar', 'spam.txt')
)
with open(os.path.join(
self.scaffold_destination, 'someapp', 'foo'
), 'r') as f:
assert f.read().strip() == 'YAR thingy'
with open(os.path.join(
self.scaffold_destination, 'someapp', 'bar', 'spam.txt'
), 'r') as f:
assert f.read().strip() == 'Pecan thingy'
|