ehbrs-tools 0.21.0 → 0.24.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (213) hide show
  1. checksums.yaml +4 -4
  2. data/exe/ehbrs +2 -2
  3. data/lib/ehbrs/core_ext.rb +4 -0
  4. data/lib/ehbrs/music/album.rb +2 -0
  5. data/{vendor/eac_cli/lib/eac_cli/patches/module.rb → lib/ehbrs/patches.rb} +1 -1
  6. data/lib/ehbrs/tools/runner.rb +21 -0
  7. data/lib/ehbrs/tools/runner/cooking_book.rb +32 -0
  8. data/lib/ehbrs/tools/runner/cooking_book/build.rb +52 -0
  9. data/lib/ehbrs/{runner/videos/series.rb → tools/runner/finances.rb} +4 -4
  10. data/lib/ehbrs/tools/runner/finances/bb_browser.rb +66 -0
  11. data/lib/ehbrs/tools/runner/fs.rb +18 -0
  12. data/lib/ehbrs/tools/runner/fs/selected.rb +81 -0
  13. data/lib/ehbrs/tools/runner/fs/used_space.rb +161 -0
  14. data/lib/ehbrs/tools/runner/google.rb +18 -0
  15. data/lib/ehbrs/tools/runner/google/translate.rb +89 -0
  16. data/lib/ehbrs/tools/runner/music.rb +18 -0
  17. data/lib/ehbrs/tools/runner/music/selected.rb +28 -0
  18. data/lib/ehbrs/tools/runner/self.rb +18 -0
  19. data/lib/ehbrs/tools/runner/self/test.rb +27 -0
  20. data/lib/ehbrs/tools/runner/telegram.rb +28 -0
  21. data/lib/ehbrs/tools/runner/telegram/send_message.rb +31 -0
  22. data/lib/ehbrs/tools/runner/vg.rb +18 -0
  23. data/lib/ehbrs/tools/runner/vg/ips.rb +134 -0
  24. data/lib/ehbrs/tools/runner/vg/wii.rb +74 -0
  25. data/lib/ehbrs/{runner/web_utils → tools/runner}/videos.rb +3 -3
  26. data/lib/ehbrs/tools/runner/videos/extract.rb +70 -0
  27. data/lib/ehbrs/tools/runner/videos/probe.rb +34 -0
  28. data/lib/ehbrs/tools/runner/videos/series.rb +20 -0
  29. data/lib/ehbrs/tools/runner/videos/series/rename.rb +74 -0
  30. data/lib/ehbrs/tools/runner/videos/unsupported.rb +61 -0
  31. data/lib/ehbrs/tools/runner/web_utils.rb +26 -0
  32. data/lib/ehbrs/tools/runner/web_utils/videos.rb +20 -0
  33. data/lib/ehbrs/tools/runner/web_utils/videos/download.rb +65 -0
  34. data/lib/ehbrs/tools/runner/web_utils/videos/upload.rb +77 -0
  35. data/lib/ehbrs/tools/version.rb +1 -1
  36. data/lib/ehbrs/vg/wii/game_file.rb +10 -0
  37. data/lib/ehbrs/videos/unsupported/check_support.rb +12 -8
  38. data/vendor/aranha-parsers/aranha-parsers.gemspec +2 -2
  39. data/vendor/aranha-parsers/lib/aranha/parsers/rspec.rb +11 -0
  40. data/vendor/aranha-parsers/lib/aranha/parsers/rspec/setup_include.rb +17 -0
  41. data/vendor/aranha-parsers/lib/aranha/parsers/{spec → rspec}/source_target_fixtures_example.rb +0 -0
  42. data/vendor/aranha-parsers/lib/aranha/parsers/source_address.rb +10 -8
  43. data/vendor/aranha-parsers/lib/aranha/parsers/version.rb +1 -1
  44. data/vendor/aranha-parsers/spec/lib/rubocop_check_spec.rb +1 -5
  45. data/vendor/aranha-parsers/spec/spec_helper.rb +2 -6
  46. data/vendor/aranha-selenium/aranha-selenium.gemspec +2 -2
  47. data/vendor/aranha-selenium/lib/aranha/selenium/version.rb +1 -1
  48. data/vendor/aranha-selenium/spec/rubocop_check_spec.rb +1 -5
  49. data/vendor/aranha-selenium/spec/spec_helper.rb +2 -98
  50. data/vendor/eac_cli/eac_cli.gemspec +3 -4
  51. data/vendor/eac_cli/lib/eac_cli/config.rb +18 -0
  52. data/vendor/eac_cli/lib/eac_cli/config/entry.rb +46 -0
  53. data/vendor/eac_cli/lib/eac_cli/config/entry/options.rb +57 -0
  54. data/vendor/eac_cli/lib/eac_cli/config/entry/undefined.rb +26 -0
  55. data/vendor/eac_cli/lib/eac_cli/definition/help_formatter.rb +3 -2
  56. data/vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb +6 -1
  57. data/vendor/eac_cli/lib/eac_cli/old_configs.rb +0 -1
  58. data/vendor/eac_cli/lib/eac_cli/old_configs/entry_reader.rb +2 -2
  59. data/vendor/eac_cli/lib/eac_cli/old_configs_bridge.rb +39 -0
  60. data/vendor/eac_cli/lib/eac_cli/runner.rb +0 -2
  61. data/vendor/eac_cli/lib/eac_cli/runner/after_class_methods.rb +20 -3
  62. data/vendor/eac_cli/lib/eac_cli/runner/instance_methods.rb +5 -1
  63. data/vendor/eac_cli/lib/eac_cli/runner_with/help.rb +9 -4
  64. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder.rb +73 -0
  65. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder/alternative.rb +56 -0
  66. data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb +6 -4
  67. data/vendor/eac_cli/lib/eac_cli/speaker.rb +15 -19
  68. data/vendor/eac_cli/lib/eac_cli/speaker/_constants.rb +1 -1
  69. data/vendor/eac_cli/lib/eac_cli/speaker/list.rb +1 -1
  70. data/vendor/eac_cli/lib/eac_cli/speaker/options.rb +38 -0
  71. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  72. data/vendor/eac_cli/spec/lib/eac_cli/parser/alternative_spec.rb +1 -1
  73. data/vendor/eac_cli/spec/lib/eac_cli/runner_spec.rb +0 -1
  74. data/vendor/eac_cli/spec/lib/eac_cli/speaker_spec.rb +5 -9
  75. data/vendor/eac_cli/spec/rubocop_spec.rb +1 -1
  76. data/vendor/eac_cli/spec/spec_helper.rb +2 -101
  77. data/vendor/eac_config/Gemfile +5 -0
  78. data/vendor/eac_config/eac_config.gemspec +19 -0
  79. data/vendor/eac_config/lib/eac_config.rb +7 -0
  80. data/vendor/eac_config/lib/eac_config/entry.rb +49 -0
  81. data/vendor/eac_config/lib/eac_config/entry_path.rb +41 -0
  82. data/vendor/eac_config/lib/eac_config/envvars_node.rb +25 -0
  83. data/vendor/eac_config/lib/eac_config/envvars_node/entry.rb +54 -0
  84. data/vendor/eac_config/lib/eac_config/load_nodes_search.rb +39 -0
  85. data/vendor/eac_config/lib/eac_config/load_path.rb +28 -0
  86. data/vendor/eac_config/lib/eac_config/node.rb +67 -0
  87. data/vendor/eac_config/lib/eac_config/node_entry.rb +18 -0
  88. data/vendor/eac_config/lib/eac_config/node_uri.rb +38 -0
  89. data/vendor/eac_config/lib/eac_config/old_configs.rb +75 -0
  90. data/vendor/eac_config/lib/eac_config/old_configs/base.rb +43 -0
  91. data/vendor/eac_config/lib/eac_config/old_configs/file.rb +47 -0
  92. data/vendor/eac_config/lib/eac_config/paths_hash.rb +56 -0
  93. data/vendor/eac_config/lib/eac_config/paths_hash/entry_key_error.rb +8 -0
  94. data/vendor/eac_config/lib/eac_config/paths_hash/node.rb +67 -0
  95. data/vendor/eac_config/lib/eac_config/paths_hash/path_search.rb +39 -0
  96. data/vendor/eac_config/lib/eac_config/version.rb +5 -0
  97. data/vendor/eac_config/lib/eac_config/yaml_file_node.rb +48 -0
  98. data/vendor/eac_config/lib/eac_config/yaml_file_node/entry.rb +37 -0
  99. data/vendor/eac_config/spec/lib/eac_config/entry_path_spec.rb +30 -0
  100. data/vendor/eac_config/spec/lib/eac_config/envvars_node/entry_spec.rb +14 -0
  101. data/vendor/eac_config/spec/lib/eac_config/envvars_node_spec.rb +40 -0
  102. data/vendor/eac_config/spec/lib/eac_config/old_configs_spec.rb +46 -0
  103. data/vendor/eac_config/spec/lib/eac_config/paths_hash_spec.rb +88 -0
  104. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec.rb +52 -0
  105. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1.yaml +6 -0
  106. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_1.yaml +2 -0
  107. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2.yaml +4 -0
  108. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2/storage1_2_1.yaml +2 -0
  109. data/vendor/eac_config/spec/rubocop_spec.rb +3 -0
  110. data/vendor/eac_config/spec/spec_helper.rb +4 -0
  111. data/vendor/eac_docker/eac_docker.gemspec +2 -2
  112. data/vendor/eac_docker/lib/eac_docker/container.rb +7 -3
  113. data/vendor/eac_docker/lib/eac_docker/debug.rb +15 -0
  114. data/vendor/eac_docker/lib/eac_docker/images/coded.rb +4 -0
  115. data/vendor/eac_docker/lib/eac_docker/images/templatized.rb +16 -2
  116. data/vendor/eac_docker/lib/eac_docker/rspec.rb +2 -10
  117. data/vendor/eac_docker/lib/eac_docker/rspec/setup_include.rb +23 -0
  118. data/vendor/eac_docker/lib/eac_docker/version.rb +1 -1
  119. data/vendor/eac_docker/spec/rubocop_spec.rb +1 -1
  120. data/vendor/eac_docker/spec/spec_helper.rb +2 -104
  121. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +4 -4
  122. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +23 -9
  123. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application_xdg.rb +34 -0
  124. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/jobs_runner.rb +2 -2
  125. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +19 -7
  126. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/confirmation.rb +8 -1
  127. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
  128. data/vendor/eac_ruby_base0/spec/rubocop_spec.rb +1 -1
  129. data/vendor/eac_ruby_base0/spec/spec_helper.rb +2 -101
  130. data/vendor/eac_ruby_utils/eac_ruby_utils.gemspec +1 -1
  131. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/boolean.rb +1 -1
  132. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/context.rb +31 -0
  133. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/contextualizable.rb +12 -7
  134. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/envs/executable.rb +15 -3
  135. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/gems_registry.rb +36 -0
  136. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/gems_registry/gem.rb +39 -0
  137. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/context.rb +11 -0
  138. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/speaker.rb +9 -0
  139. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/pathname/parent_n.rb +11 -0
  140. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/default_setup.rb +18 -0
  141. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup.rb +45 -0
  142. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb +10 -2
  143. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker.rb +16 -0
  144. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb +57 -0
  145. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/sender.rb +32 -0
  146. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  147. data/vendor/{eac_cli/spec/lib → eac_ruby_utils/spec/lib/eac_ruby_utils/patches}/module/speaker_spec.rb +2 -2
  148. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/pathname/parent_n_spec.rb +33 -0
  149. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/simple_cache_spec.rb +18 -0
  150. data/vendor/eac_ruby_utils/spec/rubocop_check_spec.rb +1 -1
  151. data/vendor/eac_ruby_utils/spec/spec_helper.rb +6 -6
  152. data/vendor/ehbrs_ruby_utils/ehbrs_ruby_utils.gemspec +4 -2
  153. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/finances/bb_browser/docker_image.rb +18 -0
  154. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/patches/object/template.rb +6 -0
  155. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/version.rb +1 -1
  156. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/stream.rb +11 -1
  157. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec.rb +13 -0
  158. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.source.yaml +28 -0
  159. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.target.yaml +7 -0
  160. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.source.yaml +49 -0
  161. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.target.yaml +7 -0
  162. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.source.yaml +43 -0
  163. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.target.yaml +7 -0
  164. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.source.yaml +59 -0
  165. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.target.yaml +7 -0
  166. data/vendor/ehbrs_ruby_utils/spec/rubocop_check_spec.rb +1 -5
  167. data/vendor/ehbrs_ruby_utils/spec/spec_helper.rb +2 -98
  168. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/Dockerfile +44 -0
  169. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/Makefile +35 -0
  170. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/README.md +16 -0
  171. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/context/firefox.service +8 -0
  172. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/context/startbrowser.sh +9 -0
  173. metadata +115 -52
  174. data/lib/ehbrs/runner.rb +0 -19
  175. data/lib/ehbrs/runner/cooking_book.rb +0 -30
  176. data/lib/ehbrs/runner/cooking_book/build.rb +0 -50
  177. data/lib/ehbrs/runner/finances.rb +0 -16
  178. data/lib/ehbrs/runner/finances/bb_browser.rb +0 -35
  179. data/lib/ehbrs/runner/fs.rb +0 -16
  180. data/lib/ehbrs/runner/fs/used_space.rb +0 -160
  181. data/lib/ehbrs/runner/google.rb +0 -16
  182. data/lib/ehbrs/runner/google/translate.rb +0 -87
  183. data/lib/ehbrs/runner/music.rb +0 -16
  184. data/lib/ehbrs/runner/music/selected.rb +0 -63
  185. data/lib/ehbrs/runner/self.rb +0 -16
  186. data/lib/ehbrs/runner/self/test.rb +0 -25
  187. data/lib/ehbrs/runner/telegram.rb +0 -26
  188. data/lib/ehbrs/runner/telegram/send_message.rb +0 -29
  189. data/lib/ehbrs/runner/vg.rb +0 -16
  190. data/lib/ehbrs/runner/vg/ips.rb +0 -132
  191. data/lib/ehbrs/runner/vg/wii.rb +0 -72
  192. data/lib/ehbrs/runner/videos.rb +0 -16
  193. data/lib/ehbrs/runner/videos/extract.rb +0 -68
  194. data/lib/ehbrs/runner/videos/probe.rb +0 -32
  195. data/lib/ehbrs/runner/videos/series/rename.rb +0 -72
  196. data/lib/ehbrs/runner/videos/unsupported.rb +0 -59
  197. data/lib/ehbrs/runner/web_utils.rb +0 -24
  198. data/lib/ehbrs/runner/web_utils/videos/download.rb +0 -63
  199. data/lib/ehbrs/runner/web_utils/videos/upload.rb +0 -75
  200. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder.rb +0 -71
  201. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder/alternative.rb +0 -50
  202. data/vendor/eac_cli/lib/eac_cli/docopt/runner_context_replacement.rb +0 -15
  203. data/vendor/eac_cli/lib/eac_cli/docopt/runner_extension.rb +0 -51
  204. data/vendor/eac_cli/lib/eac_cli/docopt_runner.rb +0 -43
  205. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_class_methods.rb +0 -16
  206. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_doc.rb +0 -23
  207. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_settings.rb +0 -17
  208. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_subcommands.rb +0 -152
  209. data/vendor/eac_cli/lib/eac_cli/patches/module/speaker.rb +0 -10
  210. data/vendor/eac_cli/lib/eac_cli/speaker/_class_methods.rb +0 -37
  211. data/vendor/eac_cli/lib/eac_cli/speaker/node.rb +0 -24
  212. data/vendor/eac_cli/spec/lib/eac_cli/docopt/runner_extension_spec.rb +0 -35
  213. data/vendor/eac_cli/spec/lib/eac_cli/docopt_runner_spec.rb +0 -136
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacConfig
4
+ class PathsHash
5
+ class PathSearch
6
+ class << self
7
+ def parse_entry_key(string)
8
+ new(::EacConfig::PathsHash.parse_entry_key(string), [])
9
+ end
10
+ end
11
+
12
+ common_constructor :current, :previous do
13
+ self.current = current.assert_argument(Array, 'current').freeze
14
+ self.previous = previous.assert_argument(Array, 'previous')
15
+ raise ::EacConfig::PathsHash::EntryKeyError, 'Current is empty' if current.empty?
16
+ end
17
+
18
+ def cursor
19
+ current.first
20
+ end
21
+
22
+ def ended?
23
+ current.count <= 1
24
+ end
25
+
26
+ def raise_error(message)
27
+ raise ::EacConfig::PathsHash::EntryKeyError, "#{message} (#{self})"
28
+ end
29
+
30
+ def succeeding
31
+ self.class.new(current[1..-1], previous + [cursor])
32
+ end
33
+
34
+ def to_s
35
+ "#{self.class}[Current: #{current}, Previous: #{previous}]"
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacConfig
4
+ VERSION = '0.5.1'
5
+ end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'addressable'
4
+ require 'eac_config/node'
5
+ require 'eac_ruby_utils/core_ext'
6
+ require 'eac_ruby_utils/yaml'
7
+
8
+ module EacConfig
9
+ class YamlFileNode
10
+ require_sub __FILE__
11
+ include ::EacConfig::Node
12
+
13
+ class << self
14
+ def from_uri(uri)
15
+ return new(uri.to_addressable.path) if uri.to_addressable.scheme == 'file'
16
+ end
17
+ end
18
+
19
+ common_constructor :path do
20
+ self.path = path.to_pathname
21
+ end
22
+
23
+ def data
24
+ @data ||= ::EacRubyUtils::Yaml.load_file(assert_path) || {}
25
+ end
26
+
27
+ def persist_data(new_data)
28
+ path.parent.mkpath
29
+ ::EacRubyUtils::Yaml.dump_file(path, new_data)
30
+ @data = nil
31
+ end
32
+
33
+ def url
34
+ ::Addressable::URI.parse("file://#{path.expand_path}")
35
+ end
36
+
37
+ private
38
+
39
+ def assert_path
40
+ unless path.file?
41
+ raise("\"#{path}\" is a not a file") if path.exist?
42
+
43
+ persist_data({})
44
+ end
45
+ path
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/entry_path'
4
+ require 'eac_config/node_entry'
5
+ require 'eac_ruby_utils/core_ext'
6
+
7
+ module EacConfig
8
+ class YamlFileNode
9
+ class Entry < ::EacConfig::NodeEntry
10
+ enable_simple_cache
11
+
12
+ def found?
13
+ paths_hash.key?(to_paths_hash_key)
14
+ end
15
+
16
+ def value
17
+ paths_hash[to_paths_hash_key]
18
+ end
19
+
20
+ def value=(a_value)
21
+ paths_hash[to_paths_hash_key] = a_value
22
+ node.persist_data(paths_hash.root.to_h)
23
+ end
24
+
25
+ private
26
+
27
+ # @return [EacConfig::PathsHash]
28
+ def paths_hash_uncached
29
+ ::EacConfig::PathsHash.new(node.data)
30
+ end
31
+
32
+ def to_paths_hash_key
33
+ path.parts.join('.')
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/entry_path'
4
+
5
+ RSpec.describe ::EacConfig::EntryPath do
6
+ describe '#assert' do
7
+ {
8
+ ['a.b.c'] => %w[a b c],
9
+ [['a', 1], 'b', []] => %w[a 1 b],
10
+ ['a', 'b', ['c', 1.2], 'd', 'e.f'] => %w[a b c 1 2 d e f]
11
+ }.each do |data|
12
+ source = data[0]
13
+ expected_parts = data[1]
14
+
15
+ context "when source is #{source}" do
16
+ let(:instance) { described_class.assert(source) }
17
+
18
+ it { expect(instance.parts).to eq(expected_parts) }
19
+ end
20
+ end
21
+
22
+ [['a..c'], ['a', ' ']].each do |source|
23
+ context "when invalid source is #{source}" do
24
+ it do
25
+ expect { described_class.assert(source) }.to raise_error(::ArgumentError)
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/envvars_node/entry'
4
+
5
+ RSpec.describe ::EacConfig::EnvvarsNode::Entry do
6
+ describe '#entry_key_to_envvar_name' do
7
+ {
8
+ 'a.entry.value' => 'A_ENTRY_VALUE',
9
+ 'appli-cation_0.var_one' => 'APPLICATION_0_VAR_ONE'
10
+ }.each do |input, expected_result|
11
+ it { expect(described_class.entry_path_to_envvar_name(input)).to eq(expected_result) }
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/envvars_node'
4
+
5
+ RSpec.describe ::EacConfig::EnvvarsNode do
6
+ let(:instance) { described_class.new }
7
+
8
+ before do
9
+ ENV['COMMON'] = 'AAA'
10
+ ENV['BLANK'] = ''
11
+ ENV.delete('NO_EXIST')
12
+ end
13
+
14
+ context 'with common entry' do
15
+ let(:entry) { instance.entry('common') }
16
+
17
+ it { expect(entry).to be_a(::EacConfig::Entry) }
18
+ it { expect(entry.value).to eq('AAA') }
19
+ it { expect(entry.found_node).to eq(instance) }
20
+ it { expect(entry).to be_found }
21
+ end
22
+
23
+ context 'with blank entry' do
24
+ let(:entry) { instance.entry('blank') }
25
+
26
+ it { expect(entry).to be_a(::EacConfig::Entry) }
27
+ it { expect(entry.value).to eq('') }
28
+ it { expect(entry.found_node).to eq(instance) }
29
+ it { expect(entry).to be_found }
30
+ end
31
+
32
+ context 'with not existing entry' do
33
+ let(:entry) { instance.entry('no.exist') }
34
+
35
+ it { expect(entry).to be_a(::EacConfig::Entry) }
36
+ it { expect(entry.value).to eq(nil) }
37
+ it { expect(entry.found_node).to eq(nil) }
38
+ it { expect(entry).not_to be_found }
39
+ end
40
+ end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'tempfile'
4
+ require 'eac_config/old_configs'
5
+
6
+ RSpec.describe ::EacConfig::OldConfigs do
7
+ let(:configs_key) { 'configsspec' }
8
+ let(:storage_path) do
9
+ file = ::Tempfile.new(configs_key)
10
+ path = file.path
11
+ file.close
12
+ file.unlink
13
+ path
14
+ end
15
+ let(:instance) { described_class.new(configs_key, storage_path: storage_path) }
16
+
17
+ describe '#storage_path' do
18
+ it { expect(instance.storage_path).to eq(storage_path) }
19
+ end
20
+
21
+ describe '#write' do
22
+ let(:entry_key) { 'parent.child' }
23
+
24
+ before do
25
+ instance[entry_key] = 'value1'
26
+ instance.save
27
+ end
28
+
29
+ it { expect(::YAML.load_file(storage_path)).to eq(parent: { child: 'value1' }) }
30
+ end
31
+
32
+ describe '#read' do
33
+ let(:present_key) { 'a.present.key' }
34
+ let(:blank_key) { 'a.blank.key' }
35
+
36
+ before do
37
+ instance[present_key] = 'A value'
38
+ instance[blank_key] = ''
39
+ instance.save
40
+ instance.load
41
+ end
42
+
43
+ it { expect(instance[present_key]).to be_present }
44
+ it { expect(instance[blank_key]).to be_present }
45
+ end
46
+ end
@@ -0,0 +1,88 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/paths_hash'
4
+
5
+ RSpec.describe ::EacConfig::PathsHash do
6
+ let(:source_hash) do
7
+ {
8
+ parent: {
9
+ child1: {
10
+ child1_1: 'v1_1',
11
+ child1_2: 'v1_2'
12
+ },
13
+ child2: 'v2'
14
+ }
15
+ }
16
+ end
17
+ let(:instance) { described_class.new(source_hash) }
18
+
19
+ describe '#[]' do
20
+ {
21
+ 'parent.child1.child1_1' => 'v1_1',
22
+ 'parent.child1.child1_2' => 'v1_2',
23
+ 'parent.child2' => 'v2',
24
+ 'no_exist' => nil,
25
+ 'parent.child1' => {
26
+ child1_1: 'v1_1',
27
+ child1_2: 'v1_2'
28
+ }
29
+ }.each do |entry_key, expected_value|
30
+ it { expect(instance[entry_key]).to eq(expected_value) }
31
+ end
32
+
33
+ ['.only_suffix', '', '.', 'only_prefx.', 'empty..part'].each do |entry_key|
34
+ it "invalid entry key \"#{entry_key}\" raises EntryKeyError" do
35
+ expect { instance[entry_key] }.to raise_error(::EacConfig::PathsHash::EntryKeyError)
36
+ end
37
+ end
38
+ end
39
+
40
+ describe '#[]=' do
41
+ let(:source_hash) { {} }
42
+
43
+ before do
44
+ instance['a.b.c'] = '123'
45
+ end
46
+
47
+ it { expect(instance.to_h).to eq(a: { b: { c: '123' } }) }
48
+ end
49
+
50
+ describe '#fetch' do
51
+ {
52
+ 'parent.child1.child1_1' => 'v1_1',
53
+ 'parent.child1.child1_2' => 'v1_2',
54
+ 'parent.child1.child1_2.no_exist' => ::EacConfig::PathsHash::EntryKeyError,
55
+ 'parent.child1.child1_3' => ::EacConfig::PathsHash::EntryKeyError,
56
+ 'parent.child2' => 'v2',
57
+ 'no_exist' => ::EacConfig::PathsHash::EntryKeyError,
58
+ 'parent.child1' => {
59
+ child1_1: 'v1_1',
60
+ child1_2: 'v1_2'
61
+ }
62
+ }.each do |entry_key, expected_value|
63
+ if expected_value.is_a?(::Class) && expected_value < ::Exception
64
+ it "raise error #{expected_value}" do
65
+ expect { instance.fetch(entry_key) }.to raise_error(expected_value)
66
+ end
67
+ else
68
+ it "\#fetch return \"#{expected_value}\"" do
69
+ expect(instance.fetch(entry_key)).to eq(expected_value)
70
+ end
71
+ end
72
+ end
73
+ end
74
+
75
+ describe '#key?' do
76
+ {
77
+ 'parent.child1.child1_1' => true,
78
+ 'parent.child1.child1_2' => true,
79
+ 'parent.child1.child1_2.no_exist' => false,
80
+ 'parent.child1.child1_3' => false,
81
+ 'parent.child2' => true,
82
+ 'no_exist' => false,
83
+ 'parent.child1' => true
84
+ }.each do |entry_key, expected_value|
85
+ it { expect(instance.key?(entry_key)).to eq(expected_value) }
86
+ end
87
+ end
88
+ end
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/struct'
4
+ require 'eac_config/yaml_file_node'
5
+
6
+ RSpec.describe ::EacConfig::YamlFileNode do
7
+ storages = %w[1 1_1 1_2 1_2_1].map do |suffix|
8
+ key = "storage#{suffix}"
9
+ subpath = "#{key}.yaml"
10
+ subpath = "storage1_2/#{subpath}" if suffix == '1_2_1'
11
+ ::EacRubyUtils::Struct.new(suffix: suffix, key: key, subpath: subpath.to_pathname)
12
+ end
13
+
14
+ let(:fixtures_dir) { ::Pathname.new(__dir__).join('yaml_file_node_spec_files') }
15
+ let(:target_dir) { temp_copy(fixtures_dir) }
16
+ let(:yaml_file_path) do
17
+ r = target_dir.join('storage1.yaml')
18
+ r.write(r.read.gsub('%%STORAGE1_2_ABSOLUTE_PATH%%',
19
+ target_dir.join('storage1_2.yaml').expand_path.to_path))
20
+ r
21
+ end
22
+ let(:instance) { described_class.new(yaml_file_path) }
23
+
24
+ context 'with common entry' do
25
+ let(:entry) { instance.entry('common') }
26
+
27
+ it { expect(entry.value).to eq('AAA') }
28
+ it { expect(entry.found_node).to eq(instance) }
29
+ it { expect(entry).to be_found }
30
+ end
31
+
32
+ storages.each do |storage|
33
+ context "with entry in loaded path \"#{storage.subpath}\"" do
34
+ let(:entry) { instance.entry(storage.key) }
35
+ let(:storage_node) { described_class.new(target_dir.join(storage.subpath)) }
36
+
37
+ it { expect(entry).to be_a(::EacConfig::Entry) }
38
+ it { expect(entry).to be_found }
39
+ it { expect(entry.value).to eq(storage.key) }
40
+ it { expect(entry.found_node.url).to eq(storage_node.url) }
41
+ end
42
+ end
43
+
44
+ context 'with not existing entry' do
45
+ let(:entry) { instance.entry('no_exist') }
46
+
47
+ it { expect(entry).to be_a(::EacConfig::Entry) }
48
+ it { expect(entry.value).to eq(nil) }
49
+ it { expect(entry.found_node).to eq(nil) }
50
+ it { expect(entry).not_to be_found }
51
+ end
52
+ end
@@ -0,0 +1,6 @@
1
+ ---
2
+ common: AAA
3
+ load_path:
4
+ - storage1_1.yaml
5
+ - %%STORAGE1_2_ABSOLUTE_PATH%%
6
+ storage1: storage1
@@ -0,0 +1,2 @@
1
+ ---
2
+ storage1_1: storage1_1
@@ -0,0 +1,4 @@
1
+ ---
2
+ load_path:
3
+ - ./storage1_2/storage1_2_1.yaml
4
+ storage1_2: storage1_2
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ ::EacRubyUtils::Rspec.default_setup.describe_rubocop
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/rspec/default_setup'
4
+ ::EacRubyUtils::Rspec.default_setup_create(::File.expand_path('..', __dir__))