@@ -121,9 +121,118 @@ tap.test('#deleteFolder', (suite) => {
121
121
} ) ;
122
122
123
123
tap . test ( '#getTemplates' , ( suite ) => {
124
- // return a list erector template objects
125
- // use .destination if provided
126
- // set template to blank if .blank is true
124
+ const create = ( templates ) =>
125
+ files . getTemplates ( '/root' , '/root/current' , templates ) ;
126
+ let mockResolve ;
127
+
128
+ suite . beforeEach ( ( done ) => {
129
+ mockResolve = sinon . stub ( path , 'resolve' ) ;
130
+ mockResolve . callsFake ( function ( ) {
131
+ return Array . prototype . slice . call ( arguments )
132
+ . join ( '/' ) ;
133
+ } ) ;
134
+
135
+ done ( ) ;
136
+ } ) ;
137
+
138
+ suite . afterEach ( ( done ) => {
139
+ mockResolve . restore ( ) ;
140
+
141
+ done ( ) ;
142
+ } ) ;
143
+
144
+ suite . test ( 'should return a list of erector template objects' , ( test ) => {
145
+ test . plan ( 1 ) ;
146
+
147
+ const templates = create ( [
148
+ { name : 'pizza' , overwrite : false } ,
149
+ { name : 'broccoli' , update : true } ,
150
+ { name : 'burger' }
151
+ ] ) ;
152
+
153
+ test . deepEqual ( templates , [
154
+ {
155
+ check : undefined ,
156
+ destination : '/root/pizza' ,
157
+ overwrite : false ,
158
+ template : '/root/current/templates/pizza' ,
159
+ update : undefined
160
+ } ,
161
+ {
162
+ check : undefined ,
163
+ destination : '/root/broccoli' ,
164
+ overwrite : undefined ,
165
+ template : '/root/current/templates/broccoli' ,
166
+ update : true
167
+ } ,
168
+ {
169
+ check : undefined ,
170
+ destination : '/root/burger' ,
171
+ overwrite : undefined ,
172
+ template : '/root/current/templates/burger' ,
173
+ update : undefined
174
+ }
175
+ ] ) ;
176
+
177
+ test . end ( ) ;
178
+ } ) ;
179
+
180
+ suite . test ( 'should utilize the destination field if provided' , ( test ) => {
181
+ test . plan ( 1 ) ;
182
+
183
+ const templates = create ( [
184
+ { name : 'pizza' , destination : '/the/pizzeria/palace' } ,
185
+ { name : 'burger' }
186
+ ] ) ;
187
+
188
+ test . deepEqual ( templates , [
189
+ {
190
+ check : undefined ,
191
+ destination : '/the/pizzeria/palace' ,
192
+ overwrite : undefined ,
193
+ template : '/root/current/templates/pizza' ,
194
+ update : undefined
195
+ } ,
196
+ {
197
+ check : undefined ,
198
+ destination : '/root/burger' ,
199
+ overwrite : undefined ,
200
+ template : '/root/current/templates/burger' ,
201
+ update : undefined
202
+ }
203
+ ] ) ;
204
+
205
+ test . end ( ) ;
206
+ } ) ;
207
+
208
+ suite . test ( 'should provide a blank template if .blank is truthy' , ( test ) => {
209
+ test . plan ( 1 ) ;
210
+
211
+ const templates = create ( [
212
+ { name : 'pizza' } ,
213
+ { blank : true , name : 'broccoli' }
214
+ ] ) ;
215
+
216
+ test . deepEqual ( templates , [
217
+ {
218
+ check : undefined ,
219
+ destination : '/root/pizza' ,
220
+ overwrite : undefined ,
221
+ template : '/root/current/templates/pizza' ,
222
+ update : undefined
223
+ } ,
224
+ {
225
+ check : undefined ,
226
+ destination : '/root/broccoli' ,
227
+ overwrite : undefined ,
228
+ template : undefined ,
229
+ update : undefined
230
+ }
231
+ ] ) ;
232
+
233
+ test . end ( ) ;
234
+ } ) ;
235
+
127
236
suite . end ( ) ;
128
237
} ) ;
129
238
0 commit comments