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,30 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec.describe YARD::CLI::Display do
4
- before do
5
- allow(Registry).to receive(:load)
6
- @object = CodeObjects::ClassObject.new(:root, :Foo)
7
- @object.docstring = 'Foo bar'
8
- end
9
-
10
- it "displays an object" do
11
- YARD::CLI::Display.run('-f', 'text', 'Foo')
12
- expect(log.io.string.strip).to eq(@object.format.strip)
13
- end
14
-
15
- it "wraps output with -l (defaulting to layout)" do
16
- YARD::CLI::Display.run('-l', '-f', 'html', 'Foo')
17
- formatted_output = @object.format(:format => :html).strip
18
- actual_output = log.io.string.strip
19
- expect(actual_output).not_to eq(formatted_output)
20
- expect(actual_output).to include(formatted_output)
21
- end
22
-
23
- it "wraps output with --layout onefile" do
24
- YARD::CLI::Display.run('--layout', 'onefile', '-f', 'html', 'Foo')
25
- formatted_output = @object.format(:format => :html).strip
26
- actual_output = log.io.string.strip
27
- expect(actual_output).not_to eq(formatted_output)
28
- expect(actual_output).to include(formatted_output)
29
- end
30
- end
@@ -1,81 +0,0 @@
1
- # frozen_string_literal: true
2
- require 'ostruct'
3
- require 'rubygems'
4
-
5
- RSpec.describe YARD::CLI::Gems do
6
- before do
7
- @rebuild = false
8
- @gem1 = build_mock('gem1')
9
- @gem2 = build_mock('gem2')
10
- @gem3 = build_mock('gem3')
11
- end
12
-
13
- def build_mock(name, version = '1.0')
14
- OpenStruct.new :name => name,
15
- :version => version,
16
- :full_gem_path => "/path/to/gems/#{name}-#{version}",
17
- :yardoc_file => "/path/to/yardoc/#{name}-#{version}"
18
- end
19
-
20
- def build_specs(*specs)
21
- specs.each do |themock|
22
- allow(Registry).to receive(:yardoc_file_for_gem).with(themock.name, "= #{themock.version}").and_return(themock.yardoc_file)
23
- allow(File).to receive(:directory?).with(themock.yardoc_file).and_return(@rebuild)
24
- allow(File).to receive(:directory?).with(themock.full_gem_path).and_return(true)
25
- allow(Registry).to receive(:yardoc_file_for_gem).with(themock.name, "= #{themock.version}", true).and_return(themock.yardoc_file)
26
- expect(Dir).to receive(:chdir).with(themock.full_gem_path).and_yield
27
- end
28
- expect(Registry).to receive(:clear).exactly(specs.size).times
29
- expect(CLI::Yardoc).to receive(:run).exactly(specs.size).times
30
- end
31
-
32
- describe "#run" do
33
- it "builds all gem indexes if no gem is specified" do
34
- build_specs(@gem1, @gem2)
35
- expect(YARD::GemIndex).to receive(:each) {|&b| [@gem1, @gem2].each(&b) }
36
- CLI::Gems.run
37
- end
38
-
39
- it "allows gem to be specified" do
40
- build_specs(@gem1)
41
- expect(YARD::GemIndex).to receive(:find_all_by_name).with(@gem1.name, '>= 0').and_return([@gem1])
42
- CLI::Gems.run(@gem1.name)
43
- end
44
-
45
- it "allows multiple gems to be specified for building" do
46
- build_specs(@gem1, @gem2)
47
- expect(YARD::GemIndex).to receive(:find_all_by_name).with(@gem1.name, @gem1.version).and_return([@gem1])
48
- expect(YARD::GemIndex).to receive(:find_all_by_name).with(@gem2.name, '>= 0').and_return([@gem2])
49
- CLI::Gems.run(@gem1.name, @gem1.version, @gem2.name)
50
- end
51
-
52
- it "allows version to be specified with gem" do
53
- build_specs(@gem1)
54
- expect(YARD::GemIndex).to receive(:find_all_by_name).with(@gem1.name, '>= 1.0').and_return([@gem1])
55
- CLI::Gems.run(@gem1.name, '>= 1.0')
56
- end
57
-
58
- it "warns if one of the gems is not found, but it should process others" do
59
- build_specs(@gem2)
60
- expect(YARD::GemIndex).to receive(:find_all_by_name).with(@gem1.name, '>= 2.0').and_return([])
61
- expect(YARD::GemIndex).to receive(:find_all_by_name).with(@gem2.name, '>= 0').and_return([@gem2])
62
- expect(log).to receive(:warn).with(/#{@gem1.name} >= 2.0 could not be found/)
63
- CLI::Gems.run(@gem1.name, '>= 2.0', @gem2.name)
64
- end
65
-
66
- it "fails if specified gem(s) is/are not found" do
67
- expect(CLI::Yardoc).not_to receive(:run)
68
- expect(YARD::GemIndex).to receive(:find_all_by_name).with(@gem1.name, '>= 2.0').and_return([])
69
- expect(log).to receive(:warn).with(/#{@gem1.name} >= 2.0 could not be found/)
70
- expect(log).to receive(:error).with(/No specified gems could be found/)
71
- CLI::Gems.run(@gem1.name, '>= 2.0')
72
- end
73
-
74
- it "accepts --rebuild" do
75
- @rebuild = true
76
- build_specs(@gem1)
77
- expect(YARD::GemIndex).to receive(:each) {|&b| [@gem1].each(&b) }
78
- CLI::Gems.run('--rebuild')
79
- end
80
- end
81
- end
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec.describe YARD::CLI::Graph do
4
- it "serializes output" do
5
- allow(Registry).to receive(:load).at_least(1).times
6
- allow(subject).to receive(:yardopts) { [] }
7
- expect(subject.options.serializer).to receive(:serialize).once
8
- subject.run
9
- end
10
-
11
- it "reads yardoc file from .yardopts" do
12
- allow(Registry).to receive(:load).at_least(1).times
13
- allow(subject).to receive(:yardopts) { %w(--db /path/to/db) }
14
- expect(subject.options.serializer).to receive(:serialize).once
15
- subject.run
16
- expect(Registry.yardoc_file).to eq '/path/to/db'
17
- end
18
- end
@@ -1,22 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec.describe YARD::CLI::Help do
4
- describe "#run" do
5
- it "accepts help command" do
6
- expect(CLI::Yardoc).to receive(:run).with('--help')
7
- CLI::Help.run('doc')
8
- end
9
-
10
- it "accepts no arguments (and lists all commands)" do
11
- expect(CLI::CommandParser).to receive(:run).with('--help')
12
- CLI::Help.run
13
- end
14
-
15
- it "shows all commands if command isn't found" do
16
- expect(CLI::CommandParser).to receive(:run).with('--help')
17
- help = CLI::Help.new
18
- expect(log).to receive(:puts).with(/not found/)
19
- help.run('unknown')
20
- end
21
- end
22
- end
@@ -1,107 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec.describe YARD::CLI::I18n do
4
- before do
5
- @i18n = YARD::CLI::I18n.new
6
- @i18n.use_document_file = false
7
- @i18n.use_yardopts_file = false
8
- output_path = File.expand_path(@i18n.options.serializer.basepath)
9
- allow(File).to receive(:open!).with(output_path, "wb")
10
- allow(YARD).to receive(:parse)
11
- end
12
-
13
- describe "Defaults" do
14
- before do
15
- @i18n = YARD::CLI::I18n.new
16
- allow(@i18n).to receive(:yardopts).and_return([])
17
- allow(@i18n).to receive(:support_rdoc_document_file!).and_return([])
18
- @i18n.parse_arguments
19
- end
20
-
21
- it "reads .yardopts by default" do
22
- expect(@i18n.use_yardopts_file).to be true
23
- end
24
-
25
- it "only shows public visibility by default" do
26
- expect(@i18n.visibilities).to eq [:public]
27
- end
28
- end
29
-
30
- describe "General options" do
31
- def self.should_accept(*args, &block)
32
- @counter ||= 0
33
- @counter += 1
34
- counter = @counter
35
- args.each do |arg|
36
- define_method("test_options_#{@counter}", &block)
37
- it("accepts #{arg}") { send("test_options_#{counter}", arg) }
38
- end
39
- end
40
-
41
- should_accept('--yardopts') do |arg|
42
- @i18n = YARD::CLI::I18n.new
43
- @i18n.use_document_file = false
44
- expect(@i18n).to receive(:yardopts).at_least(1).times.and_return([])
45
- @i18n.parse_arguments(arg)
46
- expect(@i18n.use_yardopts_file).to be true
47
- @i18n.parse_arguments('--no-yardopts', arg)
48
- expect(@i18n.use_yardopts_file).to be true
49
- end
50
-
51
- should_accept('--yardopts with filename') do |_arg|
52
- @i18n = YARD::CLI::I18n.new
53
- expect(File).to receive(:read_binary).with('.yardopts_i18n').and_return('')
54
- @i18n.use_document_file = false
55
- @i18n.parse_arguments('--yardopts', '.yardopts_i18n')
56
- expect(@i18n.use_yardopts_file).to be true
57
- expect(@i18n.options_file).to eq '.yardopts_i18n'
58
- end
59
-
60
- should_accept('--no-yardopts') do |arg|
61
- @i18n = YARD::CLI::I18n.new
62
- @i18n.use_document_file = false
63
- expect(@i18n).not_to receive(:yardopts)
64
- @i18n.parse_arguments(arg)
65
- expect(@i18n.use_yardopts_file).to be false
66
- @i18n.parse_arguments('--yardopts', arg)
67
- expect(@i18n.use_yardopts_file).to be false
68
- end
69
-
70
- should_accept('--exclude') do |arg|
71
- expect(YARD).to receive(:parse).with(['a'], ['nota', 'b'])
72
- @i18n.run(arg, 'nota', arg, 'b', 'a')
73
- end
74
- end
75
-
76
- describe ".yardopts handling" do
77
- before do
78
- @i18n.use_yardopts_file = true
79
- end
80
-
81
- it "searches for and uses yardopts file specified by #options_file" do
82
- expect(File).to receive(:read_binary).with("test").and_return("-o \n\nMYPATH\nFILE1 FILE2")
83
- @i18n.use_document_file = false
84
- @i18n.options_file = "test"
85
- expect(File).to receive(:open!).with(File.expand_path("MYPATH"), "wb")
86
- @i18n.run
87
- expect(@i18n.files).to eq ["FILE1", "FILE2"]
88
- end
89
- end
90
-
91
- describe "#run" do
92
- it "calls parse_arguments if run() is called" do
93
- expect(@i18n).to receive(:parse_arguments)
94
- @i18n.run
95
- end
96
-
97
- it "calls parse_arguments if run(arg1, arg2, ...) is called" do
98
- expect(@i18n).to receive(:parse_arguments)
99
- @i18n.run('--private', '-p', 'foo')
100
- end
101
-
102
- it "doesn't call parse_arguments if run(nil) is called" do
103
- expect(@i18n).not_to receive(:parse_arguments)
104
- @i18n.run(nil)
105
- end
106
- end
107
- end
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec.describe YARD::CLI::List do
4
- it "passes command off to Yardoc with --list" do
5
- expect(YARD::CLI::Yardoc).to receive(:run).with('-c', '--list', '--foo')
6
- YARD::CLI::List.run('--foo')
7
- end
8
- end
@@ -1,22 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec.describe YARD::CLI::MarkupTypes do
4
- it "lists all available markup types" do
5
- YARD::CLI::MarkupTypes.run
6
- data = log.io.string
7
- exts = YARD::Templates::Helpers::MarkupHelper::MARKUP_EXTENSIONS
8
- YARD::Templates::Helpers::MarkupHelper::MARKUP_PROVIDERS.each do |name, providers|
9
- expect(data).to match(/\b#{name}\b/)
10
-
11
- # Match all extensions
12
- exts[name].each do |ext|
13
- expect(data).to include(".#{ext}")
14
- end if exts[name]
15
-
16
- # Match all provider libs
17
- providers.each do |provider|
18
- expect(data).to match(/\b#{provider[:lib]}\b/)
19
- end
20
- end
21
- end
22
- end
@@ -1,324 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- class Server::WebrickAdapter; def start; end end
4
-
5
- RSpec.describe YARD::CLI::Server do
6
- before do
7
- allow(CLI::Yardoc).to receive(:run)
8
- @no_verify_libraries = false
9
- @set_libraries = true
10
- @no_adapter_mock = false
11
- @libraries = {}
12
- @options = {:single_library => true, :caching => false}
13
- @server_options = {:Port => 8808}
14
- @adapter = double(:adapter, :setup => nil)
15
- new_cli
16
- end
17
-
18
- after(:all) do
19
- Server::Adapter.shutdown
20
- end
21
-
22
- def new_cli
23
- @cli = subject
24
- end
25
-
26
- def rack_required
27
- require 'rack'
28
- rescue LoadError
29
- pending "rack required for this test"
30
- end
31
-
32
- def bundler_required
33
- require 'bundler'
34
- rescue LoadError
35
- pending "bundler required for this test"
36
- end
37
-
38
- def unstub_adapter
39
- @no_adapter_mock = true
40
- end
41
-
42
- def run(*args)
43
- if @set_libraries && @libraries.empty?
44
- library = Server::LibraryVersion.new(
45
- File.basename(Dir.pwd), nil, File.expand_path('.yardoc')
46
- )
47
- @libraries = {library.name => [library]}
48
- end
49
- unless @no_verify_libraries
50
- @libraries.values.each do |libs|
51
- libs.each do |lib|
52
- yfile = File.expand_path(lib.yardoc_file)
53
- allow(File).to receive(:exist?).with(yfile).and_return(true)
54
- end
55
- end
56
- end
57
- unless @no_adapter_mock
58
- allow(@cli).to receive(:adapter).and_return(@adapter)
59
- expect(@adapter).to receive(:new).
60
- with(@libraries, @options, @server_options).and_return(@adapter)
61
- expect(@adapter).to receive(:start)
62
- end
63
-
64
- @cli.run(*args.flatten)
65
- assert_libraries @libraries, @cli.libraries
66
- end
67
-
68
- def assert_libraries(expected_libs, actual_libs)
69
- expect(actual_libs).to eq expected_libs
70
- expected_libs.each do |name, libs|
71
- libs.each_with_index do |expected, i|
72
- actual = actual_libs[name][i]
73
- [:source, :source_path, :yardoc_file].each do |m|
74
- expect(actual.send(m)).to eq expected.send(m)
75
- end
76
- end
77
- end
78
- end
79
-
80
- # Mocks the existence of a file.
81
- def mock_file(filename, content = nil)
82
- allow(File).to receive(:exist?).with(filename).and_return(true)
83
- allow(File).to receive(:read_binary).with(filename).and_return(content) if content
84
- filename_e = File.expand_path(filename)
85
- mock_file(filename_e) unless filename_e == filename
86
- end
87
-
88
- before :each do
89
- allow(File).to receive(:exist?).and_call_original
90
- end
91
-
92
- context 'when .yardopts file exists' do
93
- before :each do
94
- Registry.yardoc_file = Registry::DEFAULT_YARDOC_FILE
95
- allow(File).to receive(:exist?).with(%r{\.yardoc/complete$}).and_return(false)
96
- allow(Dir).to receive(:pwd).and_return('/path/to/bar')
97
- allow(Dir).to receive(:chdir).and_yield
98
- @name = 'bar'
99
- end
100
-
101
- it "uses .yardoc as the yardoc db if .yardopts doesn't specify an alternate path" do
102
- mock_file '/path/to/bar/.yardopts', '--protected'
103
- @libraries[@name] = [Server::LibraryVersion.new(@name, nil, File.expand_path('/path/to/bar/.yardoc'))]
104
- @libraries.values[0][0].source_path = File.expand_path('/path/to/bar')
105
- run
106
- end
107
-
108
- it "uses the yardoc db location specified by .yardopts" do
109
- allow(File).to receive(:exist?).with(%r{/foo/complete$}).and_return(false)
110
- mock_file '/path/to/bar/.yardopts', '--db foo'
111
- @libraries[@name] = [Server::LibraryVersion.new(@name, nil, File.expand_path('/path/to/bar/foo'))]
112
- @libraries.values[0][0].source_path = File.expand_path('/path/to/bar')
113
- run
114
- end
115
-
116
- it "parses .yardopts when the library list is odd" do
117
- mock_file '/path/to/bar/.yardopts', '--db foo'
118
- @libraries['a'] = [Server::LibraryVersion.new('a', nil, File.expand_path('/path/to/bar/foo'))]
119
- @libraries.values[0][0].source_path = File.expand_path('/path/to/bar')
120
- run 'a'
121
- end
122
- end
123
-
124
- context "when .yardopts file doesn't exist" do
125
- before :each do
126
- allow(File).to receive(:exist?).with(%r{\.yardoc/complete$}).and_return(false)
127
- allow(File).to receive(:exist?).with(%r{^(.*[\\/])?\.yardopts$}).and_return(false)
128
- end
129
-
130
- it "defaults to .yardoc if no library is specified" do
131
- allow(Dir).to receive(:chdir).and_yield
132
- expect(Dir).to receive(:pwd).at_least(:once).and_return(File.expand_path('/path/to/foo'))
133
- @libraries['foo'] = [Server::LibraryVersion.new('foo', nil, File.expand_path('/path/to/foo/.yardoc'))]
134
- run
135
- end
136
-
137
- it "uses .yardoc as yardoc file if library list is odd" do
138
- @libraries['a'] = [Server::LibraryVersion.new('a', nil, File.expand_path('.yardoc'))]
139
- run 'a'
140
- end
141
-
142
- it "forces multi library if more than one library is listed" do
143
- allow(File).to receive(:exist?).with('b').and_return(true)
144
- @options[:single_library] = false
145
- @libraries['a'] = [Server::LibraryVersion.new('a', nil, File.expand_path('b'))]
146
- @libraries['c'] = [Server::LibraryVersion.new('c', nil, File.expand_path('.yardoc'))]
147
- run %w(a b c)
148
- end
149
-
150
- it "fails if specified directory does not exist" do
151
- @set_libraries = false
152
- allow(File).to receive(:exist?).with('b').and_return(false)
153
- expect(log).to receive(:warn).with(/Cannot find yardoc db for a: "b"/)
154
- run %w(a b)
155
- end
156
- end
157
-
158
- describe "General options" do
159
- before do
160
- allow(File).to receive(:exist?).with(%r{\.yardoc/complete$}).and_return(false)
161
- allow(File).to receive(:exist?).with(/\.yardopts$/).and_return(false)
162
- end
163
-
164
- it "accepts -m, --multi-library" do
165
- @options[:single_library] = false
166
- run '-m'
167
- run '--multi-library'
168
- end
169
-
170
- it "accepts -c, --cache" do
171
- @options[:caching] = true
172
- run '-c'
173
- run '--cache'
174
- end
175
-
176
- it "accepts -r, --reload" do
177
- @options[:incremental] = true
178
- run '-r'
179
- run '--reload'
180
- end
181
-
182
- it "accepts -d, --daemon" do
183
- @server_options[:daemonize] = true
184
- run '-d'
185
- run '--daemon'
186
- end
187
-
188
- it "accepts -B, --bind" do
189
- @server_options[:Host] = 'example.com'
190
- run '-B', 'example.com'
191
- run '--bind', 'example.com'
192
- end
193
-
194
- it "binds address with WebRick adapter" do
195
- @server_options[:Host] = 'example.com'
196
- run '-B', 'example.com', '-a', 'webrick'
197
- run '--bind', 'example.com', '-a', 'webrick'
198
- end
199
-
200
- it "binds address with Rack adapter" do
201
- @server_options[:Host] = 'example.com'
202
- run '-B', 'example.com', '-a', 'rack'
203
- run '--bind', 'example.com', '-a', 'rack'
204
- end
205
-
206
- it "accepts -p, --port" do
207
- @server_options[:Port] = 10
208
- run '-p', '10'
209
- run '--port', '10'
210
- end
211
-
212
- it "accepts --docroot" do
213
- @server_options[:DocumentRoot] = Dir.pwd + '/__foo/bar'
214
- run '--docroot', '__foo/bar'
215
- end
216
-
217
- it "accepts -a webrick to create WEBrick adapter" do
218
- expect(@cli).to receive(:adapter=).with(YARD::Server::WebrickAdapter)
219
- run '-a', 'webrick'
220
- end
221
-
222
- it "accepts -a rack to create Rack adapter" do
223
- rack_required
224
- expect(@cli).to receive(:adapter=).with(YARD::Server::RackAdapter)
225
- run '-a', 'rack'
226
- end
227
-
228
- it "defaults to Rack adapter if exists on system" do
229
- rack_required
230
- expect(@cli).to receive(:require).with('rubygems').and_return(false)
231
- expect(@cli).to receive(:require).with('rack').and_return(true)
232
- expect(@cli).to receive(:adapter=).with(YARD::Server::RackAdapter)
233
- @cli.send(:select_adapter)
234
- end
235
-
236
- it "falls back to WEBrick adapter if Rack is not on system" do
237
- expect(@cli).to receive(:require).with('rubygems').and_return(false)
238
- expect(@cli).to receive(:require).with('rack').and_raise(LoadError)
239
- expect(@cli).to receive(:adapter=).with(YARD::Server::WebrickAdapter)
240
- @cli.send(:select_adapter)
241
- end
242
-
243
- it "accepts -s, --server" do
244
- @server_options[:server] = 'thin'
245
- run '-s', 'thin'
246
- run '--server', 'thin'
247
- end
248
-
249
- it "accepts -g, --gems" do
250
- @no_verify_libraries = true
251
- @options[:single_library] = false
252
- @libraries['gem1'] = [Server::LibraryVersion.new('gem1', '1.0.0', nil, :gem)]
253
- @libraries['gem2'] = [Server::LibraryVersion.new('gem2', '1.0.0', nil, :gem)]
254
- gem1 = double(:gem1, :name => 'gem1', :version => '1.0.0', :full_gem_path => '/path/to/foo')
255
- gem2 = double(:gem2, :name => 'gem2', :version => '1.0.0', :full_gem_path => '/path/to/bar')
256
- specs = {'gem1' => gem1, 'gem2' => gem2}
257
- allow(YARD::GemIndex).to receive(:find_all_by_name) do |k, _ver|
258
- specs.grep(k).map {|name| specs[name] }
259
- end
260
- allow(YARD::GemIndex).to receive(:each) {|&b| specs.values.each(&b) }
261
- run '-g'
262
- run '--gems'
263
- end
264
-
265
- it "accepts -G, --gemfile" do
266
- bundler_required
267
- @no_verify_libraries = true
268
- @options[:single_library] = false
269
-
270
- @libraries['gem1'] = [Server::LibraryVersion.new('gem1', '1.0.0', nil, :gem)]
271
- @libraries['gem2'] = [Server::LibraryVersion.new('gem2', '1.0.0', nil, :gem)]
272
- gem1 = double(:gem1, :name => 'gem1', :version => '1.0.0', :full_gem_path => '/path/to/foo')
273
- gem2 = double(:gem2, :name => 'gem2', :version => '1.0.0', :full_gem_path => '/path/to/bar')
274
- lockfile_parser = double(:new, :specs => [gem1, gem2])
275
- allow(Bundler::LockfileParser).to receive(:new).and_return(lockfile_parser)
276
-
277
- expect(File).to receive(:exist?).at_least(2).times.with("Gemfile.lock").and_return(true)
278
- allow(File).to receive(:read)
279
-
280
- run '-G'
281
- run '--gemfile'
282
-
283
- expect(File).to receive(:exist?).with("different_name.lock").and_return(true)
284
- run '--gemfile', 'different_name'
285
- end
286
-
287
- it "warns if lockfile is not found (with -G)" do
288
- bundler_required
289
- expect(File).to receive(:exist?).with(/\.yardopts$/).at_least(:once).and_return(false)
290
- expect(File).to receive(:exist?).with('somefile.lock').and_return(false)
291
- expect(log).to receive(:warn).with(/Cannot find somefile.lock/)
292
- run '-G', 'somefile'
293
- end
294
-
295
- it "displays an error if Bundler not available (with -G)" do
296
- expect(@cli).to receive(:require).with('bundler').and_raise(LoadError)
297
- expect(log).to receive(:error).with(/Bundler not available/)
298
- run '-G'
299
- end
300
-
301
- it "loads template paths after adapter template paths" do
302
- unstub_adapter
303
- @cli.adapter = Server::WebrickAdapter
304
- run '-t', 'foo'
305
- expect(Templates::Engine.template_paths.last).to eq 'foo'
306
- end
307
-
308
- it "loads ruby code (-e) after adapter" do
309
- unstub_adapter
310
- @cli.adapter = Server::WebrickAdapter
311
- path = File.dirname(__FILE__) + '/tmp.adapterscript.rb'
312
- begin
313
- File.open(path, 'w') do |f|
314
- f.puts "YARD::Templates::Engine.register_template_path 'foo'"
315
- f.flush
316
- run '-e', f.path
317
- expect(Templates::Engine.template_paths.last).to eq 'foo'
318
- end
319
- ensure
320
- File.unlink(path)
321
- end
322
- end
323
- end
324
- end