nanoc3 3.1.9 → 3.2.0a1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (136) hide show
  1. data/LICENSE +1 -1
  2. data/NEWS.md +0 -50
  3. data/README.md +3 -15
  4. data/bin/nanoc3 +2 -0
  5. data/lib/nanoc3/base/checksummer.rb +40 -0
  6. data/lib/nanoc3/base/code_snippet.rb +30 -12
  7. data/lib/nanoc3/base/compiled_content_cache.rb +86 -0
  8. data/lib/nanoc3/base/compiler.rb +134 -95
  9. data/lib/nanoc3/base/compiler_dsl.rb +12 -11
  10. data/lib/nanoc3/base/core_ext/string.rb +2 -2
  11. data/lib/nanoc3/base/data_source.rb +17 -16
  12. data/lib/nanoc3/base/dependency_tracker.rb +102 -121
  13. data/lib/nanoc3/base/directed_graph.rb +65 -3
  14. data/lib/nanoc3/base/errors.rb +20 -16
  15. data/lib/nanoc3/base/item.rb +58 -50
  16. data/lib/nanoc3/base/item_rep.rb +177 -150
  17. data/lib/nanoc3/base/layout.rb +51 -18
  18. data/lib/nanoc3/base/notification_center.rb +8 -8
  19. data/lib/nanoc3/base/plugin_registry.rb +9 -9
  20. data/lib/nanoc3/base/rule.rb +18 -9
  21. data/lib/nanoc3/base/rule_context.rb +5 -5
  22. data/lib/nanoc3/base/site.rb +135 -47
  23. data/lib/nanoc3/base.rb +21 -19
  24. data/lib/nanoc3/cli/base.rb +51 -74
  25. data/lib/nanoc3/cli/commands/autocompile.rb +3 -0
  26. data/lib/nanoc3/cli/commands/compile.rb +35 -74
  27. data/lib/nanoc3/cli/commands/create_site.rb +17 -5
  28. data/lib/nanoc3/cli/commands/debug.rb +11 -4
  29. data/lib/nanoc3/cli/commands/view.rb +0 -1
  30. data/lib/nanoc3/cli/commands/watch.rb +148 -0
  31. data/lib/nanoc3/cli/commands.rb +1 -0
  32. data/lib/nanoc3/cli/logger.rb +15 -21
  33. data/lib/nanoc3/data_sources/deprecated/twitter.rb +0 -1
  34. data/lib/nanoc3/data_sources/filesystem.rb +11 -40
  35. data/lib/nanoc3/data_sources/filesystem_unified.rb +22 -22
  36. data/lib/nanoc3/extra/auto_compiler.rb +1 -1
  37. data/lib/nanoc3/extra/chick.rb +8 -8
  38. data/lib/nanoc3/extra/deployers/rsync.rb +2 -3
  39. data/lib/nanoc3/extra/validators/links.rb +32 -51
  40. data/lib/nanoc3/extra/validators/w3c.rb +2 -2
  41. data/lib/nanoc3/extra/vcs.rb +1 -1
  42. data/lib/nanoc3/filters/colorize_syntax.rb +15 -19
  43. data/lib/nanoc3/filters/erb.rb +1 -5
  44. data/lib/nanoc3/filters/erubis.rb +1 -5
  45. data/lib/nanoc3/filters/haml.rb +1 -2
  46. data/lib/nanoc3/filters/less.rb +2 -51
  47. data/lib/nanoc3/filters/mustache.rb +21 -0
  48. data/lib/nanoc3/filters/rdiscount.rb +1 -2
  49. data/lib/nanoc3/filters/relativize_paths.rb +3 -2
  50. data/lib/nanoc3/filters/sass.rb +50 -56
  51. data/lib/nanoc3/filters.rb +2 -0
  52. data/lib/nanoc3/helpers/blogging.rb +22 -29
  53. data/lib/nanoc3/helpers/breadcrumbs.rb +1 -1
  54. data/lib/nanoc3/helpers/capturing.rb +1 -1
  55. data/lib/nanoc3/helpers/filtering.rb +1 -1
  56. data/lib/nanoc3/helpers/link_to.rb +10 -21
  57. data/lib/nanoc3/helpers/rendering.rb +5 -24
  58. data/lib/nanoc3/helpers/tagging.rb +6 -6
  59. data/lib/nanoc3/helpers/text.rb +2 -2
  60. data/lib/nanoc3.rb +1 -1
  61. metadata +35 -93
  62. data/.gemtest +0 -0
  63. data/doc/yardoc_templates/default/layout/html/footer.erb +0 -10
  64. data/nanoc3.gemspec +0 -41
  65. data/tasks/clean.rake +0 -11
  66. data/tasks/doc.rake +0 -14
  67. data/tasks/gem.rake +0 -13
  68. data/tasks/test.rake +0 -38
  69. data/test/base/core_ext/array_spec.rb +0 -23
  70. data/test/base/core_ext/hash_spec.rb +0 -41
  71. data/test/base/core_ext/string_spec.rb +0 -27
  72. data/test/base/test_code_snippet.rb +0 -33
  73. data/test/base/test_compiler.rb +0 -410
  74. data/test/base/test_compiler_dsl.rb +0 -121
  75. data/test/base/test_context.rb +0 -33
  76. data/test/base/test_data_source.rb +0 -48
  77. data/test/base/test_dependency_tracker.rb +0 -510
  78. data/test/base/test_directed_graph.rb +0 -91
  79. data/test/base/test_filter.rb +0 -85
  80. data/test/base/test_item.rb +0 -141
  81. data/test/base/test_item_rep.rb +0 -953
  82. data/test/base/test_layout.rb +0 -44
  83. data/test/base/test_notification_center.rb +0 -36
  84. data/test/base/test_plugin.rb +0 -32
  85. data/test/base/test_rule.rb +0 -21
  86. data/test/base/test_rule_context.rb +0 -63
  87. data/test/base/test_site.rb +0 -366
  88. data/test/cli/commands/test_compile.rb +0 -12
  89. data/test/cli/commands/test_create_item.rb +0 -12
  90. data/test/cli/commands/test_create_layout.rb +0 -28
  91. data/test/cli/commands/test_create_site.rb +0 -24
  92. data/test/cli/commands/test_help.rb +0 -12
  93. data/test/cli/commands/test_info.rb +0 -12
  94. data/test/cli/commands/test_update.rb +0 -12
  95. data/test/cli/test_logger.rb +0 -12
  96. data/test/data_sources/test_filesystem.rb +0 -420
  97. data/test/data_sources/test_filesystem_unified.rb +0 -538
  98. data/test/data_sources/test_filesystem_verbose.rb +0 -359
  99. data/test/extra/core_ext/test_enumerable.rb +0 -32
  100. data/test/extra/core_ext/test_time.rb +0 -17
  101. data/test/extra/deployers/test_rsync.rb +0 -234
  102. data/test/extra/test_auto_compiler.rb +0 -482
  103. data/test/extra/test_file_proxy.rb +0 -21
  104. data/test/extra/test_vcs.rb +0 -24
  105. data/test/extra/validators/test_links.rb +0 -53
  106. data/test/extra/validators/test_w3c.rb +0 -49
  107. data/test/filters/test_bluecloth.rb +0 -20
  108. data/test/filters/test_coderay.rb +0 -46
  109. data/test/filters/test_colorize_syntax.rb +0 -84
  110. data/test/filters/test_erb.rb +0 -72
  111. data/test/filters/test_erubis.rb +0 -72
  112. data/test/filters/test_haml.rb +0 -98
  113. data/test/filters/test_kramdown.rb +0 -20
  114. data/test/filters/test_less.rb +0 -118
  115. data/test/filters/test_markaby.rb +0 -26
  116. data/test/filters/test_maruku.rb +0 -20
  117. data/test/filters/test_rainpress.rb +0 -31
  118. data/test/filters/test_rdiscount.rb +0 -33
  119. data/test/filters/test_rdoc.rb +0 -18
  120. data/test/filters/test_redcloth.rb +0 -20
  121. data/test/filters/test_relativize_paths.rb +0 -231
  122. data/test/filters/test_rubypants.rb +0 -20
  123. data/test/filters/test_sass.rb +0 -235
  124. data/test/gem_loader.rb +0 -11
  125. data/test/helper.rb +0 -99
  126. data/test/helpers/test_blogging.rb +0 -808
  127. data/test/helpers/test_breadcrumbs.rb +0 -83
  128. data/test/helpers/test_capturing.rb +0 -42
  129. data/test/helpers/test_filtering.rb +0 -108
  130. data/test/helpers/test_html_escape.rb +0 -18
  131. data/test/helpers/test_link_to.rb +0 -251
  132. data/test/helpers/test_rendering.rb +0 -109
  133. data/test/helpers/test_tagging.rb +0 -89
  134. data/test/helpers/test_text.rb +0 -26
  135. data/test/helpers/test_xml_sitemap.rb +0 -69
  136. data/test/tasks/test_clean.rb +0 -71
@@ -1,359 +0,0 @@
1
- # encoding: utf-8
2
-
3
- require 'test/helper'
4
-
5
- class Nanoc3::DataSources::FilesystemVerboseTest < MiniTest::Unit::TestCase
6
-
7
- include Nanoc3::TestHelpers
8
-
9
- def new_data_source(params=nil)
10
- # Mock site
11
- site = Nanoc3::Site.new({})
12
-
13
- # Create data source
14
- data_source = Nanoc3::DataSources::FilesystemVerbose.new(site, nil, nil, params)
15
-
16
- # Done
17
- data_source
18
- end
19
-
20
- def test_items
21
- # Create data source
22
- data_source = new_data_source
23
-
24
- # Create foo item
25
- FileUtils.mkdir_p('content/foo')
26
- File.open('content/foo/foo.yaml', 'w') do |io|
27
- io.write("---\n")
28
- io.write("title: Foo\n")
29
- end
30
- File.open('content/foo/foo.html', 'w') do |io|
31
- io.write('Lorem ipsum dolor sit amet...')
32
- end
33
-
34
- # Create bar item
35
- FileUtils.mkdir_p('content/bar')
36
- File.open('content/bar/bar.yaml', 'w') do |io|
37
- io.write("---\n")
38
- io.write("title: Bar\n")
39
- end
40
- File.open('content/bar/bar.xml', 'w') do |io|
41
- io.write("Lorem ipsum dolor sit amet...")
42
- end
43
-
44
- # Load items
45
- items = data_source.items
46
-
47
- # Check items
48
- assert_equal(2, items.size)
49
- assert(items.any? { |a|
50
- a[:title] == 'Foo' &&
51
- a[:extension] == 'html' &&
52
- a[:content_filename] == 'content/foo/foo.html' &&
53
- a[:meta_filename] == 'content/foo/foo.yaml'
54
- })
55
- assert(items.any? { |a|
56
- a[:title] == 'Bar' &&
57
- a[:extension] == 'xml' &&
58
- a[:content_filename] == 'content/bar/bar.xml' &&
59
- a[:meta_filename] == 'content/bar/bar.yaml'
60
- })
61
- end
62
-
63
- def test_items_with_period_in_name
64
- data_source = new_data_source(:allow_periods_in_identifiers => true)
65
-
66
- # Create foo.css
67
- FileUtils.mkdir_p('content/foo')
68
- File.open('content/foo/foo.yaml', 'w') do |io|
69
- io.write(YAML.dump({ 'title' => 'Foo' }))
70
- end
71
- File.open('content/foo/foo.css', 'w') do |io|
72
- io.write('body.foo {}')
73
- end
74
-
75
- # Create foo.bar.css
76
- FileUtils.mkdir_p('content/foo.bar')
77
- File.open('content/foo.bar/foo.bar.yaml', 'w') do |io|
78
- io.write(YAML.dump({ 'title' => 'Foo Bar' }))
79
- end
80
- File.open('content/foo.bar/foo.bar.css', 'w') do |io|
81
- io.write('body.foobar {}')
82
- end
83
-
84
- # Load
85
- items = data_source.items
86
-
87
- # Check
88
- assert_equal 2, items.size
89
- assert_equal '/foo/', items[0].identifier
90
- assert_equal 'Foo', items[0][:title]
91
- assert_equal 'content/foo/foo.css', items[0][:content_filename]
92
- assert_equal 'content/foo/foo.yaml', items[0][:meta_filename]
93
- assert_equal '/foo.bar/', items[1].identifier
94
- assert_equal 'Foo Bar', items[1][:title]
95
- assert_equal 'content/foo.bar/foo.bar.css', items[1][:content_filename]
96
- assert_equal 'content/foo.bar/foo.bar.yaml', items[1][:meta_filename]
97
- end
98
-
99
- def test_items_with_optional_meta_file
100
- # Create data source
101
- data_source = new_data_source
102
-
103
- # Create foo item
104
- FileUtils.mkdir_p('content/foo')
105
- File.open('content/foo/foo.html', 'w') do |io|
106
- io.write('Lorem ipsum dolor sit amet...')
107
- end
108
-
109
- # Create bar item
110
- FileUtils.mkdir_p('content/bar')
111
- File.open('content/bar/bar.yaml', 'w') do |io|
112
- io.write("---\n")
113
- io.write("title: Bar\n")
114
- end
115
-
116
- # Load items
117
- items = data_source.items
118
-
119
- # Check items
120
- assert_equal(2, items.size)
121
- assert(items.any? { |a|
122
- a[:title] == nil &&
123
- a[:extension] == 'html' &&
124
- a[:content_filename] == 'content/foo/foo.html' &&
125
- a[:meta_filename] == nil
126
- })
127
- assert(items.any? { |a|
128
- a[:title] == 'Bar' &&
129
- a[:extension] == nil &&
130
- a[:content_filename] == nil &&
131
- a[:meta_filename] == 'content/bar/bar.yaml'
132
- })
133
- end
134
-
135
- def test_layouts
136
- # Create data source
137
- data_source = new_data_source
138
-
139
- # Create layout
140
- FileUtils.mkdir_p('layouts/foo')
141
- File.open('layouts/foo/foo.yaml', 'w') do |io|
142
- io.write("---\n")
143
- io.write("filter: erb\n")
144
- end
145
- File.open('layouts/foo/foo.rhtml', 'w') do |io|
146
- io.write('Lorem ipsum dolor sit amet...')
147
- end
148
-
149
- # Load layouts
150
- layouts = data_source.layouts
151
-
152
- # Check layouts
153
- assert_equal(1, layouts.size)
154
- assert_equal('erb', layouts[0][:filter])
155
- assert_equal('rhtml', layouts[0][:extension])
156
- assert_equal('layouts/foo/foo.rhtml', layouts[0][:content_filename])
157
- assert_equal('layouts/foo/foo.yaml', layouts[0][:meta_filename])
158
- end
159
-
160
- def test_layouts_with_period_in_name_disallowing_periods_in_identifiers
161
- data_source = new_data_source
162
-
163
- # Create foo.html
164
- FileUtils.mkdir_p('layouts/foo')
165
- File.open('layouts/foo/foo.yaml', 'w') do |io|
166
- io.write(YAML.dump({ 'dog' => 'woof' }))
167
- end
168
- File.open('layouts/foo/foo.html', 'w') do |io|
169
- io.write('body.foo {}')
170
- end
171
-
172
- # Create bar.html.erb
173
- FileUtils.mkdir_p('layouts/bar')
174
- File.open('layouts/bar/bar.yaml', 'w') do |io|
175
- io.write(YAML.dump({ 'cat' => 'meow' }))
176
- end
177
- File.open('layouts/bar/bar.html.erb', 'w') do |io|
178
- io.write('body.foobar {}')
179
- end
180
-
181
- # Load
182
- layouts = data_source.layouts.sort_by { |i| i.identifier }
183
-
184
- # Check
185
- assert_equal 2, layouts.size
186
- assert_equal '/bar/', layouts[0].identifier
187
- assert_equal 'meow', layouts[0][:cat]
188
- assert_equal '/foo/', layouts[1].identifier
189
- assert_equal 'woof', layouts[1][:dog]
190
- end
191
-
192
- def test_layouts_with_period_in_name_allowing_periods_in_identifiers
193
- data_source = new_data_source(:allow_periods_in_identifiers => true)
194
-
195
- # Create foo.html
196
- FileUtils.mkdir_p('layouts/foo')
197
- File.open('layouts/foo/foo.yaml', 'w') do |io|
198
- io.write(YAML.dump({ 'dog' => 'woof' }))
199
- end
200
- File.open('layouts/foo/foo.html', 'w') do |io|
201
- io.write('body.foo {}')
202
- end
203
-
204
- # Create bar.html.erb
205
- FileUtils.mkdir_p('layouts/bar.xyz')
206
- File.open('layouts/bar.xyz/bar.xyz.yaml', 'w') do |io|
207
- io.write(YAML.dump({ 'cat' => 'meow' }))
208
- end
209
- File.open('layouts/bar.xyz/bar.xyz.html', 'w') do |io|
210
- io.write('body.foobar {}')
211
- end
212
-
213
- # Load
214
- layouts = data_source.layouts.sort_by { |i| i.identifier }
215
-
216
- # Check
217
- assert_equal 2, layouts.size
218
- assert_equal '/bar.xyz/', layouts[0].identifier
219
- assert_equal 'meow', layouts[0][:cat]
220
- assert_equal '/foo/', layouts[1].identifier
221
- assert_equal 'woof', layouts[1][:dog]
222
- end
223
-
224
- def test_create_item_at_root
225
- # Create item
226
- data_source = new_data_source
227
- data_source.create_item('content here', { :foo => 'bar' }, '/')
228
-
229
- # Check file existance
230
- assert File.directory?('content')
231
- assert File.file?('content/content.html')
232
- assert File.file?('content/content.yaml')
233
-
234
- # Check file content
235
- assert_equal 'content here', File.read('content/content.html')
236
- assert_match 'foo: bar', File.read('content/content.yaml')
237
- end
238
-
239
- def test_create_item_not_at_root
240
- # Create item
241
- data_source = new_data_source
242
- data_source.create_item('content here', { :foo => 'bar' }, '/moo/')
243
-
244
- # Check file existance
245
- assert File.directory?('content/moo')
246
- assert File.file?('content/moo/moo.html')
247
- assert File.file?('content/moo/moo.yaml')
248
-
249
- # Check file content
250
- assert_equal 'content here', File.read('content/moo/moo.html')
251
- assert_match 'foo: bar', File.read('content/moo/moo.yaml')
252
- end
253
-
254
- def test_create_layout
255
- # Create layout
256
- data_source = new_data_source
257
- data_source.create_layout('content here', { :foo => 'bar' }, '/moo/')
258
-
259
- # Check file existance
260
- assert File.directory?('layouts/moo')
261
- assert File.file?('layouts/moo/moo.html')
262
- assert File.file?('layouts/moo/moo.yaml')
263
-
264
- # Check file content
265
- assert_equal 'content here', File.read('layouts/moo/moo.html')
266
- assert_match 'foo: bar', File.read('layouts/moo/moo.yaml')
267
- end
268
-
269
- def test_load_binary_objects
270
- # Create data source
271
- data_source = new_data_source
272
-
273
- # Create sample files
274
- FileUtils.mkdir_p('foo')
275
- File.open('foo/stuff.dat', 'w') { |io| io.write("random binary data") }
276
-
277
- # Load
278
- items = data_source.send(:load_objects, 'foo', 'item', Nanoc3::Item)
279
-
280
- # Check
281
- assert_equal 1, items.size
282
- assert items[0].binary?
283
- assert_equal 'foo/stuff.dat', items[0].raw_filename
284
- assert_nil items[0].raw_content
285
- end
286
-
287
- def test_filename_for_with_single
288
- data_source = new_data_source
289
-
290
- FileUtils.mkdir_p('foo/bar')
291
- File.open('foo/bar.ext', 'w') { |io| io.write('o hai') }
292
- assert_equal 'foo/bar.ext', data_source.send(:filename_for, 'foo/bar', 'ext')
293
- end
294
-
295
- def test_filename_for_with_double
296
- data_source = new_data_source
297
-
298
- FileUtils.mkdir_p('foo/bar')
299
- File.open('foo/bar/bar.ext', 'w') { |io| io.write('o hai') }
300
- assert_equal 'foo/bar/bar.ext', data_source.send(:filename_for, 'foo/bar', 'ext')
301
- end
302
-
303
- def test_filename_for_with_index
304
- data_source = new_data_source
305
-
306
- FileUtils.mkdir_p('foo/bar')
307
- File.open('foo/bar/index.ext', 'w') { |io| io.write('o hai') }
308
- assert_equal 'foo/bar/index.ext', data_source.send(:filename_for, 'foo/bar', 'ext')
309
- end
310
-
311
- def test_filename_for_with_nil
312
- data_source = new_data_source
313
-
314
- assert_equal nil, data_source.send(:filename_for, 'foo/bar', nil)
315
- end
316
-
317
- def test_filename_for_with_single_and_empty_ext
318
- data_source = new_data_source
319
-
320
- FileUtils.mkdir_p('foo')
321
- File.open('foo/bar', 'w') { |io| io.write('o hai') }
322
- assert_equal 'foo/bar', data_source.send(:filename_for, 'foo/bar', '')
323
- end
324
-
325
- def test_filename_for_with_double_and_empty_ext
326
- data_source = new_data_source
327
-
328
- FileUtils.mkdir_p('foo/bar')
329
- File.open('foo/bar/bar', 'w') { |io| io.write('o hai') }
330
- assert_equal 'foo/bar/bar', data_source.send(:filename_for, 'foo/bar', '')
331
- end
332
-
333
- def test_filename_for_with_index_and_empty_ext
334
- data_source = new_data_source
335
-
336
- FileUtils.mkdir_p('foo/bar')
337
- File.open('foo/bar/index', 'w') { |io| io.write('o hai') }
338
- assert_equal 'foo/bar/index', data_source.send(:filename_for, 'foo/bar', '')
339
- end
340
-
341
- def test_compile_huge_site
342
- if_implemented do
343
- # Create data source
344
- data_source = new_data_source
345
-
346
- # Create a lot of items
347
- count = Process.getrlimit(Process::RLIMIT_NOFILE)[0] + 5
348
- count.times do |i|
349
- FileUtils.mkdir_p("content/#{i}")
350
- File.open("content/#{i}/#{i}.html", 'w') { |io| io << "This is item #{i}." }
351
- File.open("content/#{i}/#{i}.yaml", 'w') { |io| io << "title: Item #{i}" }
352
- end
353
-
354
- # Read all items
355
- data_source.items
356
- end
357
- end
358
-
359
- end
@@ -1,32 +0,0 @@
1
- # encoding: utf-8
2
-
3
- require 'test/helper'
4
-
5
- class Nanoc3::ExtraCoreExtEnumerableTest < MiniTest::Unit::TestCase
6
-
7
- include Nanoc3::TestHelpers
8
-
9
- class MyCollection
10
-
11
- include Enumerable
12
-
13
- def initialize(array)
14
- @array = array
15
- end
16
-
17
- def each(&block)
18
- @array.each { |i| block.call(i) }
19
- end
20
-
21
- end
22
-
23
- def test_group_by
24
- input = MyCollection.new([ 'foo', 'bar', 'baz' ])
25
-
26
- output_expected = { ?f => [ 'foo' ], ?b => [ 'bar', 'baz' ] }
27
- output_actual = input.group_by { |i| i[0] }
28
-
29
- assert_equal output_expected, output_actual
30
- end
31
-
32
- end
@@ -1,17 +0,0 @@
1
- # encoding: utf-8
2
-
3
- require 'test/helper'
4
-
5
- class Nanoc3::ExtraCoreExtTimeTest < MiniTest::Unit::TestCase
6
-
7
- include Nanoc3::TestHelpers
8
-
9
- def test_to_iso8601_date
10
- assert_equal('2008-05-19', Time.utc(2008, 5, 19, 14, 20, 0, 0).to_iso8601_date)
11
- end
12
-
13
- def test_to_iso8601_time
14
- assert_equal('2008-05-19T14:20:00Z', Time.utc(2008, 5, 19, 14, 20, 0, 0).to_iso8601_time)
15
- end
16
-
17
- end
@@ -1,234 +0,0 @@
1
- # encoding: utf-8
2
-
3
- require 'test/helper'
4
-
5
- class Nanoc3::Extra::Deployers::RsyncTest < MiniTest::Unit::TestCase
6
-
7
- include Nanoc3::TestHelpers
8
-
9
- def test_new_without_site
10
- # Try creating site
11
- error = assert_raises(RuntimeError) do
12
- Nanoc3::Extra::Deployers::Rsync.new
13
- end
14
-
15
- # Check error message
16
- assert_equal 'No site configuration found', error.message
17
- end
18
-
19
- def test_run_without_general_deploy_config
20
- # Create config
21
- File.open('config.yaml', 'w') do |io|
22
- io.write "---\n"
23
- io.write "foo: bar\n"
24
- end
25
-
26
- # Create site
27
- rsync = Nanoc3::Extra::Deployers::Rsync.new
28
-
29
- # Try running
30
- error = assert_raises(RuntimeError) do
31
- rsync.run
32
- end
33
-
34
- # Check error message
35
- assert_equal 'No deploy configuration found', error.message
36
- end
37
-
38
- def test_run_without_special_deploy_config
39
- # Create config
40
- File.open('config.yaml', 'w') do |io|
41
- io.write "---\n"
42
- io.write "deploy:\n"
43
- io.write " blahblah:\n"
44
- io.write " stuff: more stuff\n"
45
- end
46
-
47
- # Create site
48
- rsync = Nanoc3::Extra::Deployers::Rsync.new
49
-
50
- # Try running
51
- error = assert_raises(RuntimeError) do
52
- rsync.run
53
- end
54
-
55
- # Check error message
56
- assert_equal 'No deploy configuration found for default', error.message
57
- end
58
-
59
- def test_run_without_special_deploy_config_with_custom_deploy_config
60
- # Create config
61
- File.open('config.yaml', 'w') do |io|
62
- io.write "---\n"
63
- io.write "deploy:\n"
64
- io.write " blahblah:\n"
65
- io.write " stuff: more stuff\n"
66
- end
67
-
68
- # Create site
69
- rsync = Nanoc3::Extra::Deployers::Rsync.new
70
-
71
- # Try running
72
- error = assert_raises(RuntimeError) do
73
- rsync.run(:config_name => 'potrzebie')
74
- end
75
-
76
- # Check error message
77
- assert_equal 'No deploy configuration found for potrzebie', error.message
78
- end
79
-
80
- def test_run_without_dst
81
- # Create config
82
- File.open('config.yaml', 'w') do |io|
83
- io.write "---\n"
84
- io.write "deploy:\n"
85
- io.write " default:\n"
86
- io.write " foo: bar\n"
87
- end
88
-
89
- # Create site
90
- rsync = Nanoc3::Extra::Deployers::Rsync.new
91
-
92
- # Try running
93
- error = assert_raises(RuntimeError) do
94
- rsync.run
95
- end
96
-
97
- # Check error message
98
- assert_equal 'No dst found in deployment configuration', error.message
99
- end
100
-
101
- def test_run_with_erroneous_dst
102
- # Create config
103
- File.open('config.yaml', 'w') do |io|
104
- io.write "---\n"
105
- io.write "deploy:\n"
106
- io.write " default:\n"
107
- io.write " dst: asdf/\n"
108
- end
109
-
110
- # Create site
111
- rsync = Nanoc3::Extra::Deployers::Rsync.new
112
-
113
- # Try running
114
- error = assert_raises(RuntimeError) do
115
- rsync.run
116
- end
117
-
118
- # Check error message
119
- assert_equal 'dst requires no trailing slash', error.message
120
- end
121
-
122
- def test_run_with_custom_deploy_config_string
123
- # Create config
124
- File.open('config.yaml', 'w') do |io|
125
- io.write "---\n"
126
- io.write "deploy:\n"
127
- io.write " foobar:\n"
128
- io.write " dst: asdf\n"
129
- end
130
-
131
- # Create site
132
- rsync = Nanoc3::Extra::Deployers::Rsync.new
133
-
134
- # Mock run_shell_cmd
135
- def rsync.run_shell_cmd(args)
136
- @shell_cms_args = args
137
- end
138
-
139
- # Run
140
- rsync.run(:config_name => 'foobar')
141
-
142
- # Check args
143
- default_options = Nanoc3::Extra::Deployers::Rsync::DEFAULT_OPTIONS
144
- assert_equal(
145
- [ 'rsync', default_options, File.expand_path('output') + '/', 'asdf' ].flatten,
146
- rsync.instance_eval { @shell_cms_args }
147
- )
148
- end
149
-
150
- def test_run_with_custom_deploy_config_symbol
151
- # Create config
152
- File.open('config.yaml', 'w') do |io|
153
- io.write "---\n"
154
- io.write "deploy:\n"
155
- io.write " foobar:\n"
156
- io.write " dst: asdf\n"
157
- end
158
-
159
- # Create site
160
- rsync = Nanoc3::Extra::Deployers::Rsync.new
161
-
162
- # Mock run_shell_cmd
163
- def rsync.run_shell_cmd(args)
164
- @shell_cms_args = args
165
- end
166
-
167
- # Run
168
- rsync.run(:config_name => :foobar)
169
-
170
- # Check args
171
- default_options = Nanoc3::Extra::Deployers::Rsync::DEFAULT_OPTIONS
172
- assert_equal(
173
- [ 'rsync', default_options, File.expand_path('output') + '/', 'asdf' ].flatten,
174
- rsync.instance_eval { @shell_cms_args }
175
- )
176
- end
177
-
178
- def test_run_everything_okay
179
- # Create config
180
- File.open('config.yaml', 'w') do |io|
181
- io.write "---\n"
182
- io.write "deploy:\n"
183
- io.write " default:\n"
184
- io.write " dst: asdf\n"
185
- end
186
-
187
- # Create site
188
- rsync = Nanoc3::Extra::Deployers::Rsync.new
189
-
190
- # Mock run_shell_cmd
191
- def rsync.run_shell_cmd(args)
192
- @shell_cms_args = args
193
- end
194
-
195
- # Run
196
- rsync.run
197
-
198
- # Check args
199
- default_options = Nanoc3::Extra::Deployers::Rsync::DEFAULT_OPTIONS
200
- assert_equal(
201
- [ 'rsync', default_options, File.expand_path('output') + '/', 'asdf' ].flatten,
202
- rsync.instance_eval { @shell_cms_args }
203
- )
204
- end
205
-
206
- def test_run_everything_okay_dry
207
- # Create config
208
- File.open('config.yaml', 'w') do |io|
209
- io.write "---\n"
210
- io.write "deploy:\n"
211
- io.write " default:\n"
212
- io.write " dst: asdf\n"
213
- end
214
-
215
- # Create site
216
- rsync = Nanoc3::Extra::Deployers::Rsync.new
217
-
218
- # Mock run_shell_cmd
219
- def rsync.run_shell_cmd(args)
220
- @shell_cms_args = args
221
- end
222
-
223
- # Run
224
- rsync.run(:dry_run => true)
225
-
226
- # Check args
227
- default_options = Nanoc3::Extra::Deployers::Rsync::DEFAULT_OPTIONS
228
- assert_equal(
229
- [ 'echo', 'rsync', default_options, File.expand_path('output') + '/', 'asdf' ].flatten,
230
- rsync.instance_eval { @shell_cms_args }
231
- )
232
- end
233
-
234
- end