yard 0.9.21 → 0.9.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (250) hide show
  1. checksums.yaml +4 -4
  2. data/.dockerignore +0 -0
  3. data/.gitattributes +4 -0
  4. data/.github/FUNDING.yml +3 -0
  5. data/.github/ISSUE_TEMPLATE.md +6 -6
  6. data/.github/PULL_REQUEST_TEMPLATE.md +5 -5
  7. data/.github/workflows/ci.yml +42 -0
  8. data/.github/workflows/gem.yml +27 -0
  9. data/.gitignore +0 -0
  10. data/.rspec +0 -0
  11. data/.rubocop.yml +37 -24
  12. data/.travis.yml +0 -3
  13. data/.yardopts +0 -0
  14. data/.yardopts_guide +0 -0
  15. data/.yardopts_i18n +0 -0
  16. data/CHANGELOG.md +47 -4
  17. data/CONTRIBUTING.md +2 -2
  18. data/Gemfile +4 -3
  19. data/README.md +97 -102
  20. data/Rakefile +2 -0
  21. data/lib/yard/cli/diff.rb +4 -1
  22. data/lib/yard/cli/server.rb +22 -13
  23. data/lib/yard/code_objects/method_object.rb +1 -1
  24. data/lib/yard/code_objects/namespace_mapper.rb +30 -3
  25. data/lib/yard/code_objects/proxy.rb +2 -1
  26. data/lib/yard/globals.rb +1 -1
  27. data/lib/yard/handlers/c/base.rb +35 -0
  28. data/lib/yard/handlers/ruby/mixin_handler.rb +4 -1
  29. data/lib/yard/parser/ruby/legacy/irb/slex.rb +1 -1
  30. data/lib/yard/parser/ruby/ruby_parser.rb +6 -4
  31. data/lib/yard/parser/ruby/token_resolver.rb +3 -1
  32. data/lib/yard/parser/source_parser.rb +1 -1
  33. data/lib/yard/registry_resolver.rb +10 -24
  34. data/lib/yard/registry_store.rb +1 -1
  35. data/lib/yard/serializers/yardoc_serializer.rb +1 -1
  36. data/lib/yard/server/commands/base.rb +2 -2
  37. data/lib/yard/templates/helpers/html_helper.rb +10 -3
  38. data/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +1 -1
  39. data/lib/yard/templates/helpers/markup/rdoc_markup.rb +5 -4
  40. data/lib/yard/templates/section.rb +1 -3
  41. data/lib/yard/version.rb +1 -1
  42. data/samus.json +15 -46
  43. data/tasks/update_error_map.rake +53 -0
  44. data/templates/default/fulldoc/html/css/style.css +1 -0
  45. data/templates/default/fulldoc/html/js/jquery.js +4 -2
  46. data/yard.gemspec +1 -2
  47. metadata +9 -206
  48. data/spec/cli/command_parser_spec.rb +0 -43
  49. data/spec/cli/command_spec.rb +0 -36
  50. data/spec/cli/config_spec.rb +0 -148
  51. data/spec/cli/diff_spec.rb +0 -254
  52. data/spec/cli/display_spec.rb +0 -30
  53. data/spec/cli/gems_spec.rb +0 -81
  54. data/spec/cli/graph_spec.rb +0 -18
  55. data/spec/cli/help_spec.rb +0 -22
  56. data/spec/cli/i18n_spec.rb +0 -107
  57. data/spec/cli/list_spec.rb +0 -8
  58. data/spec/cli/markup_types_spec.rb +0 -22
  59. data/spec/cli/server_spec.rb +0 -324
  60. data/spec/cli/stats_spec.rb +0 -96
  61. data/spec/cli/yard_on_yard_spec.rb +0 -38
  62. data/spec/cli/yardoc_spec.rb +0 -896
  63. data/spec/cli/yri_spec.rb +0 -101
  64. data/spec/code_objects/base_spec.rb +0 -485
  65. data/spec/code_objects/class_object_spec.rb +0 -226
  66. data/spec/code_objects/code_object_list_spec.rb +0 -36
  67. data/spec/code_objects/constants_spec.rb +0 -116
  68. data/spec/code_objects/extra_file_object_spec.rb +0 -161
  69. data/spec/code_objects/macro_object_spec.rb +0 -150
  70. data/spec/code_objects/method_object_spec.rb +0 -184
  71. data/spec/code_objects/module_object_spec.rb +0 -142
  72. data/spec/code_objects/namespace_object_spec.rb +0 -171
  73. data/spec/code_objects/proxy_spec.rb +0 -147
  74. data/spec/code_objects/spec_helper.rb +0 -3
  75. data/spec/config_spec.rb +0 -171
  76. data/spec/core_ext/array_spec.rb +0 -13
  77. data/spec/core_ext/file_spec.rb +0 -72
  78. data/spec/core_ext/hash_spec.rb +0 -14
  79. data/spec/core_ext/insertion_spec.rb +0 -37
  80. data/spec/core_ext/module_spec.rb +0 -9
  81. data/spec/core_ext/string_spec.rb +0 -42
  82. data/spec/core_ext/symbol_hash_spec.rb +0 -89
  83. data/spec/docstring_parser_spec.rb +0 -280
  84. data/spec/docstring_spec.rb +0 -373
  85. data/spec/handlers/alias_handler_spec.rb +0 -82
  86. data/spec/handlers/attribute_handler_spec.rb +0 -96
  87. data/spec/handlers/base_spec.rb +0 -216
  88. data/spec/handlers/c/alias_handler_spec.rb +0 -34
  89. data/spec/handlers/c/attribute_handler_spec.rb +0 -41
  90. data/spec/handlers/c/class_handler_spec.rb +0 -78
  91. data/spec/handlers/c/constant_handler_spec.rb +0 -71
  92. data/spec/handlers/c/init_handler_spec.rb +0 -48
  93. data/spec/handlers/c/method_handler_spec.rb +0 -327
  94. data/spec/handlers/c/mixin_handler_spec.rb +0 -44
  95. data/spec/handlers/c/module_handler_spec.rb +0 -71
  96. data/spec/handlers/c/override_comment_handler_spec.rb +0 -47
  97. data/spec/handlers/c/path_handler_spec.rb +0 -36
  98. data/spec/handlers/c/spec_helper.rb +0 -23
  99. data/spec/handlers/c/struct_handler_spec.rb +0 -16
  100. data/spec/handlers/class_condition_handler_spec.rb +0 -87
  101. data/spec/handlers/class_handler_spec.rb +0 -247
  102. data/spec/handlers/class_method_handler_shared_examples.rb +0 -133
  103. data/spec/handlers/class_variable_handler_spec.rb +0 -12
  104. data/spec/handlers/constant_handler_spec.rb +0 -112
  105. data/spec/handlers/decorator_handler_methods_spec.rb +0 -393
  106. data/spec/handlers/dsl_handler_spec.rb +0 -226
  107. data/spec/handlers/examples/alias_handler_001.rb.txt +0 -46
  108. data/spec/handlers/examples/attribute_handler_001.rb.txt +0 -32
  109. data/spec/handlers/examples/class_condition_handler_001.rb.txt +0 -69
  110. data/spec/handlers/examples/class_handler_001.rb.txt +0 -120
  111. data/spec/handlers/examples/class_variable_handler_001.rb.txt +0 -10
  112. data/spec/handlers/examples/constant_handler_001.rb.txt +0 -35
  113. data/spec/handlers/examples/dsl_handler_001.rb.txt +0 -156
  114. data/spec/handlers/examples/exception_handler_001.rb.txt +0 -59
  115. data/spec/handlers/examples/extend_handler_001.rb.txt +0 -19
  116. data/spec/handlers/examples/method_condition_handler_001.rb.txt +0 -10
  117. data/spec/handlers/examples/method_handler_001.rb.txt +0 -128
  118. data/spec/handlers/examples/mixin_handler_001.rb.txt +0 -40
  119. data/spec/handlers/examples/module_handler_001.rb.txt +0 -29
  120. data/spec/handlers/examples/private_constant_handler_001.rb.txt +0 -8
  121. data/spec/handlers/examples/process_handler_001.rb.txt +0 -11
  122. data/spec/handlers/examples/visibility_handler_001.rb.txt +0 -36
  123. data/spec/handlers/examples/yield_handler_001.rb.txt +0 -54
  124. data/spec/handlers/exception_handler_spec.rb +0 -49
  125. data/spec/handlers/extend_handler_spec.rb +0 -28
  126. data/spec/handlers/legacy_base_spec.rb +0 -128
  127. data/spec/handlers/method_condition_handler_spec.rb +0 -15
  128. data/spec/handlers/method_handler_spec.rb +0 -214
  129. data/spec/handlers/mixin_handler_spec.rb +0 -60
  130. data/spec/handlers/module_function_handler_spec.rb +0 -106
  131. data/spec/handlers/module_handler_spec.rb +0 -35
  132. data/spec/handlers/private_class_method_handler_spec.rb +0 -11
  133. data/spec/handlers/private_constant_handler_spec.rb +0 -25
  134. data/spec/handlers/processor_spec.rb +0 -35
  135. data/spec/handlers/public_class_method_handler_spec.rb +0 -11
  136. data/spec/handlers/ruby/base_spec.rb +0 -95
  137. data/spec/handlers/ruby/legacy/base_spec.rb +0 -84
  138. data/spec/handlers/spec_helper.rb +0 -33
  139. data/spec/handlers/visibility_handler_spec.rb +0 -44
  140. data/spec/handlers/yield_handler_spec.rb +0 -52
  141. data/spec/i18n/locale_spec.rb +0 -81
  142. data/spec/i18n/message_spec.rb +0 -52
  143. data/spec/i18n/messages_spec.rb +0 -67
  144. data/spec/i18n/pot_generator_spec.rb +0 -295
  145. data/spec/i18n/text_spec.rb +0 -184
  146. data/spec/logging_spec.rb +0 -44
  147. data/spec/options_spec.rb +0 -171
  148. data/spec/parser/base_spec.rb +0 -24
  149. data/spec/parser/c_parser_spec.rb +0 -236
  150. data/spec/parser/examples/array.c.txt +0 -6267
  151. data/spec/parser/examples/example1.rb.txt +0 -8
  152. data/spec/parser/examples/extrafile.c.txt +0 -8
  153. data/spec/parser/examples/file.c.txt +0 -28
  154. data/spec/parser/examples/multifile.c.txt +0 -22
  155. data/spec/parser/examples/namespace.cpp.txt +0 -68
  156. data/spec/parser/examples/override.c.txt +0 -424
  157. data/spec/parser/examples/parse_in_order_001.rb.txt +0 -2
  158. data/spec/parser/examples/parse_in_order_002.rb.txt +0 -2
  159. data/spec/parser/examples/tag_handler_001.rb.txt +0 -8
  160. data/spec/parser/ruby/ast_node_spec.rb +0 -33
  161. data/spec/parser/ruby/legacy/statement_list_spec.rb +0 -299
  162. data/spec/parser/ruby/legacy/token_list_spec.rb +0 -79
  163. data/spec/parser/ruby/ruby_parser_spec.rb +0 -508
  164. data/spec/parser/ruby/token_resolver_spec.rb +0 -165
  165. data/spec/parser/source_parser_spec.rb +0 -727
  166. data/spec/parser/tag_parsing_spec.rb +0 -17
  167. data/spec/rake/yardoc_task_spec.rb +0 -118
  168. data/spec/registry_spec.rb +0 -463
  169. data/spec/registry_store_spec.rb +0 -327
  170. data/spec/rubygems/doc_manager_spec.rb +0 -112
  171. data/spec/serializers/data/serialized_yardoc/checksums +0 -1
  172. data/spec/serializers/data/serialized_yardoc/objects/Foo.dat +0 -0
  173. data/spec/serializers/data/serialized_yardoc/objects/Foo/bar_i.dat +0 -0
  174. data/spec/serializers/data/serialized_yardoc/objects/Foo/baz_i.dat +0 -0
  175. data/spec/serializers/data/serialized_yardoc/objects/root.dat +0 -0
  176. data/spec/serializers/data/serialized_yardoc/proxy_types +0 -2
  177. data/spec/serializers/file_system_serializer_spec.rb +0 -145
  178. data/spec/serializers/spec_helper.rb +0 -2
  179. data/spec/serializers/yardoc_serializer_spec.rb +0 -78
  180. data/spec/server/adapter_spec.rb +0 -39
  181. data/spec/server/commands/base_spec.rb +0 -91
  182. data/spec/server/commands/library_command_spec.rb +0 -39
  183. data/spec/server/doc_server_helper_spec.rb +0 -72
  184. data/spec/server/doc_server_serializer_spec.rb +0 -60
  185. data/spec/server/rack_adapter_spec.rb +0 -21
  186. data/spec/server/router_spec.rb +0 -123
  187. data/spec/server/spec_helper.rb +0 -22
  188. data/spec/server/static_caching_spec.rb +0 -47
  189. data/spec/server/webrick_servlet_spec.rb +0 -20
  190. data/spec/server_spec.rb +0 -19
  191. data/spec/spec_helper.rb +0 -212
  192. data/spec/tags/default_factory_spec.rb +0 -168
  193. data/spec/tags/default_tag_spec.rb +0 -11
  194. data/spec/tags/directives_spec.rb +0 -463
  195. data/spec/tags/library_spec.rb +0 -48
  196. data/spec/tags/overload_tag_spec.rb +0 -53
  197. data/spec/tags/ref_tag_list_spec.rb +0 -53
  198. data/spec/tags/types_explainer_spec.rb +0 -203
  199. data/spec/templates/class_spec.rb +0 -45
  200. data/spec/templates/constant_spec.rb +0 -41
  201. data/spec/templates/engine_spec.rb +0 -131
  202. data/spec/templates/examples/class001.html +0 -308
  203. data/spec/templates/examples/class001.txt +0 -36
  204. data/spec/templates/examples/class002.html +0 -39
  205. data/spec/templates/examples/constant001.txt +0 -25
  206. data/spec/templates/examples/constant002.txt +0 -7
  207. data/spec/templates/examples/constant003.txt +0 -11
  208. data/spec/templates/examples/method001.html +0 -137
  209. data/spec/templates/examples/method001.txt +0 -35
  210. data/spec/templates/examples/method002.html +0 -91
  211. data/spec/templates/examples/method002.txt +0 -20
  212. data/spec/templates/examples/method003.html +0 -165
  213. data/spec/templates/examples/method003.txt +0 -45
  214. data/spec/templates/examples/method004.html +0 -48
  215. data/spec/templates/examples/method004.txt +0 -10
  216. data/spec/templates/examples/method005.html +0 -105
  217. data/spec/templates/examples/method005.txt +0 -33
  218. data/spec/templates/examples/method006.html +0 -108
  219. data/spec/templates/examples/method006.txt +0 -20
  220. data/spec/templates/examples/module001.dot +0 -33
  221. data/spec/templates/examples/module001.html +0 -833
  222. data/spec/templates/examples/module001.txt +0 -33
  223. data/spec/templates/examples/module002.html +0 -341
  224. data/spec/templates/examples/module003.html +0 -202
  225. data/spec/templates/examples/module004.html +0 -394
  226. data/spec/templates/examples/module005.html +0 -82
  227. data/spec/templates/examples/tag001.txt +0 -82
  228. data/spec/templates/helpers/base_helper_spec.rb +0 -171
  229. data/spec/templates/helpers/html_helper_spec.rb +0 -687
  230. data/spec/templates/helpers/html_syntax_highlight_helper_spec.rb +0 -65
  231. data/spec/templates/helpers/markup/rdoc_markup_spec.rb +0 -84
  232. data/spec/templates/helpers/markup_helper_spec.rb +0 -136
  233. data/spec/templates/helpers/method_helper_spec.rb +0 -107
  234. data/spec/templates/helpers/module_helper_spec.rb +0 -35
  235. data/spec/templates/helpers/shared_signature_examples.rb +0 -126
  236. data/spec/templates/helpers/text_helper_spec.rb +0 -65
  237. data/spec/templates/markup_processor_integrations/asciidoctor_spec.rb +0 -60
  238. data/spec/templates/markup_processor_integrations/integration_spec_helper.rb +0 -46
  239. data/spec/templates/markup_processor_integrations/rdoc_markdown_spec.rb +0 -59
  240. data/spec/templates/markup_processor_integrations/rdoc_spec.rb +0 -39
  241. data/spec/templates/markup_processor_integrations/redcarpet_spec.rb +0 -59
  242. data/spec/templates/markup_processor_integrations/redcloth_spec.rb +0 -48
  243. data/spec/templates/method_spec.rb +0 -118
  244. data/spec/templates/module_spec.rb +0 -203
  245. data/spec/templates/onefile_spec.rb +0 -66
  246. data/spec/templates/section_spec.rb +0 -144
  247. data/spec/templates/spec_helper.rb +0 -76
  248. data/spec/templates/tag_spec.rb +0 -52
  249. data/spec/templates/template_spec.rb +0 -410
  250. data/spec/verifier_spec.rb +0 -106
@@ -1,52 +0,0 @@
1
- # frozen_string_literal: true
2
- require File.dirname(__FILE__) + '/spec_helper'
3
-
4
- RSpec.describe YARD::Templates::Engine.template(:default, :tags) do
5
- before { Registry.clear }
6
-
7
- describe "all known tags" do
8
- before do
9
- YARD.parse_string <<-'eof'
10
- # Comments
11
- # @abstract override me
12
- # @param [Hash] opts the options
13
- # @option opts :key ('') hello
14
- # @option opts :key2 (X) hello
15
- # @return [String] the result
16
- # @raise [Exception] Exception class
17
- # @deprecated for great justice
18
- # @see A
19
- # @see http://url.com
20
- # @see http://url.com Example
21
- # @author Name
22
- # @since 1.0
23
- # @version 1.0
24
- # @yield a block
25
- # @yieldparam [String] a a value
26
- # @yieldreturn [Hash] a hash
27
- # @example Wash your car
28
- # car.wash
29
- # @example To kill a mockingbird
30
- # a = String.new
31
- # flip(a.reverse)
32
- def m(opts = {}) end
33
- eof
34
- end
35
-
36
- it "renders text format correctly" do
37
- text_equals(Registry.at('#m').format(text_options), :tag001)
38
- end
39
- end
40
-
41
- describe "param tags on non-methods" do
42
- it "does not display @param tags on non-method objects" do
43
- YARD.parse_string <<-'eof'
44
- # @param [#to_s] name the name
45
- module Foo; end
46
- eof
47
-
48
- proc = lambda { Registry.at('Foo').format(html_options) }
49
- expect(proc).not_to raise_error
50
- end
51
- end
52
- end
@@ -1,410 +0,0 @@
1
- # frozen_string_literal: true
2
- require File.dirname(__FILE__) + '/spec_helper'
3
-
4
- RSpec.describe YARD::Templates::Template do
5
- def template(path)
6
- YARD::Templates::Engine.template!(path, '/full/path/' + path.to_s)
7
- end
8
-
9
- before :each do
10
- YARD::Templates::ErbCache.clear!
11
- end
12
-
13
- describe ".include_parent" do
14
- it "does not include parent directory if parent directory is a template root path" do
15
- mod = template('q')
16
- expect(mod).not_to include(template(''))
17
- end
18
-
19
- it "includes overridden parent directory" do
20
- allow(Engine).to receive(:template_paths).and_return(['/foo', '/bar'])
21
- expect(File).to receive(:directory?).with('/foo/a/b').and_return(true)
22
- expect(File).to receive(:directory?).with('/bar/a/b').and_return(false)
23
- expect(File).to receive(:directory?).with('/foo/a').at_least(1).times.and_return(true)
24
- expect(File).to receive(:directory?).with('/bar/a').at_least(1).times.and_return(true)
25
- ancestors = Engine.template('a/b').ancestors.map(&:class_name)
26
- expect(ancestors[0, 3]).to eq %w(Template__foo_a_b Template__bar_a Template__foo_a)
27
- end
28
-
29
- it "includes parent directory template if exists" do
30
- mod1 = template('x')
31
- mod2 = template('x/y')
32
- expect(mod2).to include(mod1)
33
- end
34
- end
35
-
36
- describe ".full_paths" do
37
- it "lists full_path" do
38
- mod = template(:a)
39
- expect(mod.full_paths).to eq ['/full/path/a']
40
- end
41
-
42
- it "lists paths of included modules" do
43
- mod = template(:a)
44
- mod.send(:include, template(:b))
45
- expect(mod.full_paths).to eq ['/full/path/a', '/full/path/b']
46
- end
47
-
48
- it "lists paths from modules of included modules" do
49
- mod = template(:c)
50
- mod.send(:include, template(:d))
51
- mod.send(:include, template(:a))
52
- expect(mod.full_paths).to eq ['c', 'a', 'b', 'd'].map {|o| '/full/path/' + o }
53
- end
54
-
55
- it "only lists full paths of modules that respond to full_paths" do
56
- mod = template(:d)
57
- mod.send(:include, Enumerable)
58
- expect(mod.full_paths).to eq ['/full/path/d']
59
- end
60
- end
61
-
62
- describe ".load_setup_rb" do
63
- it "loads setup.rb file for module" do
64
- expect(File).to receive(:file?).with('/full/path/e/setup.rb').and_return(true)
65
- expect(File).to receive(:read).with('/full/path/e/setup.rb').and_return(String.new('def success; end'))
66
- expect(template(:e).new).to respond_to(:success)
67
- end
68
- end
69
-
70
- describe ".T" do
71
- it "loads template from absolute path" do
72
- mod = template(:a)
73
- expect(Engine).to receive(:template).with('other')
74
- mod.T('other')
75
- end
76
- end
77
-
78
- describe ".find_file" do
79
- it "finds file in the module's full_path" do
80
- expect(File).to receive(:file?).with('/full/path/a/basename').and_return(false)
81
- expect(File).to receive(:file?).with('/full/path/b/basename').and_return(true)
82
- expect(template(:a).find_file('basename')).to eq '/full/path/b/basename'
83
- end
84
-
85
- it "returns nil if no file is found" do
86
- expect(File).to receive(:file?).with('/full/path/a/basename').and_return(false)
87
- expect(File).to receive(:file?).with('/full/path/b/basename').and_return(false)
88
- expect(template(:a).find_file('basename')).to be nil
89
- end
90
- end
91
-
92
- describe ".find_nth_file" do
93
- it "finds 2nd existing file in template paths" do
94
- expect(File).to receive(:file?).with('/full/path/a/basename').and_return(true)
95
- expect(File).to receive(:file?).with('/full/path/b/basename').and_return(true)
96
- expect(template(:a).find_nth_file('basename', 2)).to eq '/full/path/b/basename'
97
- end
98
-
99
- it "returns nil if no file is found" do
100
- expect(File).to receive(:file?).with('/full/path/a/basename').and_return(true)
101
- expect(File).to receive(:file?).with('/full/path/b/basename').and_return(true)
102
- expect(template(:a).find_nth_file('basename', 3)).to be nil
103
- end
104
- end
105
-
106
- describe ".extra_includes" do
107
- it "is included when a module is initialized" do
108
- module MyModule; end
109
- Template.extra_includes << MyModule
110
- expect(template(:e).new).to be_kind_of(MyModule)
111
- end
112
-
113
- it "supports lambdas in list" do
114
- module MyModule2; end
115
- Template.extra_includes << lambda {|opts| MyModule2 if opts.format == :html }
116
- expect(template(:f).new(:format => :html)).to be_kind_of(MyModule2)
117
- metaclass = (class << template(:g).new(:format => :text); self end)
118
- expect(metaclass.ancestors).not_to include(MyModule2)
119
- end
120
- end
121
-
122
- describe ".is_a?" do
123
- it "is kind of Template" do
124
- expect(template(:e).is_a?(Template)).to be true
125
- end
126
- end
127
-
128
- describe "#T" do
129
- it "delegates to class method" do
130
- expect(template(:e)).to receive(:T).with('test')
131
- template(:e).new.T('test')
132
- end
133
- end
134
-
135
- describe "#init" do
136
- it "is called during initialization" do
137
- module YARD::Templates::Engine::Template__full_path_e # rubocop:disable Style/ClassAndModuleCamelCase
138
- def init; sections 1, 2, 3 end
139
- end
140
- expect(template(:e).new.sections).to eq Section.new(nil, 1, 2, 3)
141
- end
142
- end
143
-
144
- describe "#file" do
145
- it "reads the file if it exists" do
146
- expect(File).to receive(:file?).with('/full/path/e/abc').and_return(true)
147
- expect(IO).to receive(:read).with('/full/path/e/abc').and_return('hello world')
148
- expect(template(:e).new.file('abc')).to eq 'hello world'
149
- end
150
-
151
- it "raises ArgumentError if the file does not exist" do
152
- expect(File).to receive(:file?).with('/full/path/e/abc').and_return(false)
153
- expect { template(:e).new.file('abc') }.to raise_error(ArgumentError)
154
- end
155
-
156
- it "replaces {{{__super__}}} with inherited template contents if allow_inherited=true" do
157
- expect(File).to receive(:file?).with('/full/path/a/abc').twice.and_return(true)
158
- expect(File).to receive(:file?).with('/full/path/b/abc').and_return(true)
159
- expect(IO).to receive(:read).with('/full/path/a/abc').and_return(String.new('foo {{{__super__}}}'))
160
- expect(IO).to receive(:read).with('/full/path/b/abc').and_return(String.new('bar'))
161
- expect(template(:a).new.file('abc', true)).to eq "foo bar"
162
- end
163
-
164
- it "does not replace {{{__super__}}} with inherited template contents if allow_inherited=false" do
165
- expect(File).to receive(:file?).with('/full/path/a/abc').and_return(true)
166
- expect(IO).to receive(:read).with('/full/path/a/abc').and_return('foo {{{__super__}}}')
167
- expect(template(:a).new.file('abc')).to eq "foo {{{__super__}}}"
168
- end
169
- end
170
-
171
- describe "#superb" do
172
- it "returns the inherited erb template contents" do
173
- expect(File).to receive(:file?).with('/full/path/a/test.erb').and_return(true)
174
- expect(File).to receive(:file?).with('/full/path/b/test.erb').and_return(true)
175
- expect(IO).to receive(:read).with('/full/path/b/test.erb').and_return('bar')
176
- template = template(:a).new
177
- template.section = :test
178
- expect(template.superb).to eq "bar"
179
- end
180
-
181
- it "works inside an erb template" do
182
- expect(File).to receive(:file?).with('/full/path/a/test.erb').twice.and_return(true)
183
- expect(File).to receive(:file?).with('/full/path/b/test.erb').and_return(true)
184
- expect(IO).to receive(:read).with('/full/path/a/test.erb').and_return('foo<%= superb %>!')
185
- expect(IO).to receive(:read).with('/full/path/b/test.erb').and_return('bar')
186
- template = template(:a).new
187
- template.section = :test
188
- expect(template.erb(:test)).to eq "foobar!"
189
- end
190
- end
191
-
192
- describe "#sections" do
193
- it "allows sections to be set if arguments are provided" do
194
- mod = template(:e).new
195
- mod.sections 1, 2, [3]
196
- expect(mod.sections).to eq Section.new(nil, 1, 2, [3])
197
- end
198
- end
199
-
200
- describe "#run" do
201
- it "renders all sections" do
202
- mod = template(:e).new
203
- allow(mod).to receive(:render_section) {|section| section.name.to_s }
204
- mod.sections :a, :b, :c
205
- expect(mod.run).to eq 'abc'
206
- end
207
-
208
- it "renders all sections with options" do
209
- mod = template(:e).new
210
- allow(mod).to receive(:render_section) {|section| section.name.to_s }
211
- expect(mod).to receive(:add_options).with(:a => 1).and_yield
212
- mod.sections :a
213
- expect(mod.run(:a => 1)).to eq 'a'
214
- end
215
-
216
- it "runs section list if provided" do
217
- mod = template(:e).new
218
- expect(mod).to receive(:render_section).exactly(2).times do |section|
219
- expect([:q, :x]).to include(section.name)
220
- section.name.to_s
221
- end
222
- mod.run({}, [:q, :x])
223
- end
224
-
225
- it "accepts a nil section as empty string" do
226
- mod = template(:e).new
227
- allow(mod).to receive(:render_section) { nil }
228
- mod.sections :a
229
- expect(mod.run).to eq ""
230
- end
231
- end
232
-
233
- describe "#add_options" do
234
- it "sets instance variables in addition to options" do
235
- mod = template(:f).new
236
- mod.send(:add_options, :a => 1, :b => 2)
237
- expect(mod.options).to eq(:a => 1, :b => 2)
238
- expect(mod.instance_variable_get("@a")).to eq 1
239
- expect(mod.instance_variable_get("@b")).to eq 2
240
- end
241
-
242
- it "sets instance variables and options only for the block" do
243
- mod = template(:f).new
244
- mod.send(:add_options, :a => 100, :b => 200) do
245
- expect(mod.options).to eq(:a => 100, :b => 200)
246
- end
247
- expect(mod.options).not_to eq(:a => 100, :b => 200)
248
- end
249
- end
250
-
251
- describe "#render_section" do
252
- it "calls method if method exists by section name as Symbol" do
253
- mod = template(:f).new
254
- expect(mod).to receive(:respond_to?).with(:a).and_return(true)
255
- expect(mod).to receive(:respond_to?).with('a').and_return(true)
256
- expect(mod).to receive(:send).with(:a).and_return('a')
257
- expect(mod).to receive(:send).with('a').and_return('a')
258
- expect(mod.run({}, [:a, 'a'])).to eq 'aa'
259
- end
260
-
261
- it "calls erb if no method exists by section name" do
262
- mod = template(:f).new
263
- expect(mod).to receive(:respond_to?).with(:a).and_return(false)
264
- expect(mod).to receive(:respond_to?).with('a').and_return(false)
265
- expect(mod).to receive(:erb).with(:a).and_return('a')
266
- expect(mod).to receive(:erb).with('a').and_return('a')
267
- expect(mod.run({}, [:a, 'a'])).to eq 'aa'
268
- end
269
-
270
- it "runs a template if section is one" do
271
- mod2 = template(:g)
272
- expect(mod2).to receive(:run)
273
- mod = template(:f).new
274
- mod.sections mod2
275
- mod.run
276
- end
277
-
278
- it "runs a template instance if section is one" do
279
- mod2 = template(:g).new
280
- expect(mod2).to receive(:run)
281
- mod = template(:f).new
282
- mod.sections mod2
283
- mod.run
284
- end
285
- end
286
-
287
- describe "#yield" do
288
- it "yields a subsection" do
289
- mod = template(:e).new
290
- mod.sections :a, [:b, :c]
291
- class << mod
292
- def a; "(" + yield + ")" end
293
- def b; "b" end
294
- def c; "c" end
295
- end
296
-
297
- expect(mod.run).to eq "(b)"
298
- end
299
-
300
- it "yields a subsection within a yielded subsection" do
301
- mod = template(:e).new
302
- mod.sections :a, [:b, [:c]]
303
- class << mod
304
- def a; "(" + yield + ")" end
305
- def b; yield end
306
- def c; "c" end
307
- end
308
-
309
- expect(mod.run).to eq "(c)"
310
- end
311
-
312
- it "supports arbitrary nesting" do
313
- mod = template(:e).new
314
- mod.sections :a, [:b, [:c, [:d, [:e]]]]
315
- class << mod
316
- def a; "(" + yield + ")" end
317
- def b; yield end
318
- def c; yield end
319
- def d; yield end
320
- def e; "e" end
321
- end
322
-
323
- expect(mod.run).to eq "(e)"
324
- end
325
-
326
- it "yields first two elements if yield is called twice" do
327
- mod = template(:e).new
328
- mod.sections :a, [:b, :c, :d]
329
- class << mod
330
- def a; "(" + yield + yield + ")" end
331
- def b; 'b' end
332
- def c; "c" end
333
- end
334
-
335
- expect(mod.run).to eq "(bc)"
336
- end
337
-
338
- it "ignores any subsections inside subsection yields" do
339
- mod = template(:e).new
340
- mod.sections :a, [:b, [:c], :d]
341
- class << mod
342
- def a; "(" + yield + yield + ")" end
343
- def b; 'b' end
344
- def d; "d" end
345
- end
346
-
347
- expect(mod.run).to eq "(bd)"
348
- end
349
-
350
- it "allows extra options passed via yield" do
351
- mod = template(:e).new
352
- mod.sections :a, [:b]
353
- class << mod
354
- def a; "(" + yield(:x => "a") + ")" end
355
- def b; options.x + @x end
356
- end
357
-
358
- expect(mod.run).to eq "(aa)"
359
- end
360
- end
361
-
362
- describe "#yieldall" do
363
- it "yields all subsections" do
364
- mod = template(:e).new
365
- mod.sections :a, [:b, [:d, [:e]], :c]
366
- class << mod
367
- def a; "(" + yieldall + ")" end
368
- def b; "b" + yieldall end
369
- def c; "c" end
370
- def d; 'd' + yieldall end
371
- def e; 'e' end
372
- end
373
-
374
- expect(mod.run).to eq "(bdec)"
375
- end
376
-
377
- it "yields options to all subsections" do
378
- mod = template(:e).new
379
- mod.sections :a, [:b, :c]
380
- class << mod
381
- def a; "(" + yieldall(:x => "2") + ")" end
382
- def b; @x end
383
- def c; @x end
384
- end
385
- expect(mod.run).to eq "(22)"
386
- end
387
-
388
- it "yields all subsections more than once" do
389
- mod = template(:e).new
390
- mod.sections :a, [:b]
391
- class << mod
392
- def a; "(" + yieldall + yieldall + ")" end
393
- def b; "b" end
394
- end
395
-
396
- expect(mod.run).to eq "(bb)"
397
- end
398
-
399
- it "does not yield if no yieldall is called" do
400
- mod = template(:e).new
401
- mod.sections :a, [:b]
402
- class << mod
403
- def a; "()" end
404
- def b; "b" end
405
- end
406
-
407
- expect(mod.run).to eq "()"
408
- end
409
- end
410
- end