hanami 2.0.0.alpha7 → 2.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (223) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +456 -235
  3. data/FEATURES.md +30 -9
  4. data/README.md +1 -3
  5. data/hanami.gemspec +21 -11
  6. data/lib/hanami/app.rb +141 -0
  7. data/lib/hanami/assets/application_configuration.rb +10 -4
  8. data/lib/hanami/configuration/actions/content_security_policy.rb +118 -0
  9. data/lib/hanami/configuration/actions/cookies.rb +29 -0
  10. data/lib/hanami/configuration/actions/sessions.rb +46 -0
  11. data/lib/hanami/configuration/actions.rb +23 -12
  12. data/lib/hanami/configuration/logger.rb +13 -10
  13. data/lib/hanami/configuration/router.rb +2 -6
  14. data/lib/hanami/configuration/sessions.rb +1 -1
  15. data/lib/hanami/configuration/views.rb +86 -0
  16. data/lib/hanami/configuration.rb +139 -82
  17. data/lib/hanami/constants.rb +30 -2
  18. data/lib/hanami/errors.rb +4 -1
  19. data/lib/hanami/extensions/action/slice_configured_action.rb +103 -0
  20. data/lib/hanami/extensions/action.rb +79 -0
  21. data/lib/hanami/extensions/view/context.rb +106 -0
  22. data/lib/hanami/extensions/view/slice_configured_context.rb +71 -0
  23. data/lib/hanami/extensions/view/slice_configured_view.rb +107 -0
  24. data/lib/hanami/extensions/view.rb +33 -0
  25. data/lib/hanami/extensions.rb +10 -0
  26. data/lib/hanami/providers/inflector.rb +13 -0
  27. data/lib/hanami/providers/logger.rb +13 -0
  28. data/lib/hanami/providers/rack.rb +27 -0
  29. data/lib/hanami/providers/routes.rb +33 -0
  30. data/lib/hanami/providers/settings.rb +23 -0
  31. data/lib/hanami/rake_tasks.rb +61 -0
  32. data/lib/hanami/routes.rb +51 -0
  33. data/lib/hanami/server.rb +1 -1
  34. data/lib/hanami/settings/dotenv_store.rb +58 -0
  35. data/lib/hanami/settings.rb +90 -0
  36. data/lib/hanami/setup.rb +4 -2
  37. data/lib/hanami/{application → slice}/router.rb +18 -13
  38. data/lib/hanami/slice/routes_helper.rb +37 -0
  39. data/lib/hanami/{application → slice}/routing/middleware/stack.rb +43 -5
  40. data/lib/hanami/slice/routing/resolver.rb +97 -0
  41. data/lib/hanami/slice/view_name_inferrer.rb +63 -0
  42. data/lib/hanami/slice.rb +252 -82
  43. data/lib/hanami/slice_configurable.rb +62 -0
  44. data/lib/hanami/slice_name.rb +111 -0
  45. data/lib/hanami/slice_registrar.rb +119 -0
  46. data/lib/hanami/version.rb +1 -1
  47. data/lib/hanami/web/rack_logger.rb +1 -1
  48. data/lib/hanami.rb +34 -26
  49. data/spec/integration/application_middleware_stack_spec.rb +84 -0
  50. data/spec/integration/assets/cdn_spec.rb +48 -0
  51. data/spec/integration/assets/fingerprint_spec.rb +42 -0
  52. data/spec/integration/assets/helpers_spec.rb +50 -0
  53. data/spec/integration/assets/serve_spec.rb +70 -0
  54. data/spec/integration/assets/subresource_integrity_spec.rb +54 -0
  55. data/spec/integration/body_parsers_spec.rb +50 -0
  56. data/spec/integration/cli/assets/precompile_spec.rb +147 -0
  57. data/spec/integration/cli/assets_spec.rb +14 -0
  58. data/spec/integration/cli/console_spec.rb +105 -0
  59. data/spec/integration/cli/db/apply_spec.rb +74 -0
  60. data/spec/integration/cli/db/console_spec.rb +40 -0
  61. data/spec/integration/cli/db/create_spec.rb +50 -0
  62. data/spec/integration/cli/db/drop_spec.rb +54 -0
  63. data/spec/integration/cli/db/migrate_spec.rb +108 -0
  64. data/spec/integration/cli/db/prepare_spec.rb +36 -0
  65. data/spec/integration/cli/db/rollback_spec.rb +96 -0
  66. data/spec/integration/cli/db/version_spec.rb +38 -0
  67. data/spec/integration/cli/db_spec.rb +21 -0
  68. data/spec/integration/cli/destroy/action_spec.rb +143 -0
  69. data/spec/integration/cli/destroy/app_spec.rb +118 -0
  70. data/spec/integration/cli/destroy/mailer_spec.rb +74 -0
  71. data/spec/integration/cli/destroy/migration_spec.rb +70 -0
  72. data/spec/integration/cli/destroy/model_spec.rb +113 -0
  73. data/spec/integration/cli/destroy_spec.rb +18 -0
  74. data/spec/integration/cli/generate/action_spec.rb +469 -0
  75. data/spec/integration/cli/generate/app_spec.rb +215 -0
  76. data/spec/integration/cli/generate/mailer_spec.rb +189 -0
  77. data/spec/integration/cli/generate/migration_spec.rb +72 -0
  78. data/spec/integration/cli/generate/model_spec.rb +290 -0
  79. data/spec/integration/cli/generate/secret_spec.rb +56 -0
  80. data/spec/integration/cli/generate_spec.rb +19 -0
  81. data/spec/integration/cli/new/database_spec.rb +235 -0
  82. data/spec/integration/cli/new/hanami_head_spec.rb +27 -0
  83. data/spec/integration/cli/new/template_spec.rb +118 -0
  84. data/spec/integration/cli/new/test_spec.rb +274 -0
  85. data/spec/integration/cli/new_spec.rb +970 -0
  86. data/spec/integration/cli/plugins_spec.rb +39 -0
  87. data/spec/integration/cli/routes_spec.rb +49 -0
  88. data/spec/integration/cli/server_spec.rb +626 -0
  89. data/spec/integration/cli/version_spec.rb +85 -0
  90. data/spec/integration/early_hints_spec.rb +35 -0
  91. data/spec/integration/handle_exceptions_spec.rb +244 -0
  92. data/spec/integration/head_spec.rb +89 -0
  93. data/spec/integration/http_headers_spec.rb +29 -0
  94. data/spec/integration/mailer_spec.rb +32 -0
  95. data/spec/integration/middleware_spec.rb +81 -0
  96. data/spec/integration/mount_applications_spec.rb +88 -0
  97. data/spec/integration/project_initializers_spec.rb +40 -0
  98. data/spec/integration/rackup_spec.rb +35 -0
  99. data/spec/integration/rake/with_minitest_spec.rb +67 -0
  100. data/spec/integration/rake/with_rspec_spec.rb +69 -0
  101. data/spec/integration/routing_helpers_spec.rb +61 -0
  102. data/spec/integration/security/content_security_policy_spec.rb +46 -0
  103. data/spec/integration/security/csrf_protection_spec.rb +42 -0
  104. data/spec/integration/security/force_ssl_spec.rb +29 -0
  105. data/spec/integration/security/x_content_type_options_spec.rb +46 -0
  106. data/spec/integration/security/x_frame_options_spec.rb +46 -0
  107. data/spec/integration/security/x_xss_protection_spec.rb +46 -0
  108. data/spec/integration/send_file_spec.rb +51 -0
  109. data/spec/integration/sessions_spec.rb +247 -0
  110. data/spec/integration/static_middleware_spec.rb +21 -0
  111. data/spec/integration/streaming_spec.rb +41 -0
  112. data/spec/integration/unsafe_send_file_spec.rb +52 -0
  113. data/spec/isolation/hanami/application/already_configured_spec.rb +19 -0
  114. data/spec/isolation/hanami/application/inherit_anonymous_class_spec.rb +10 -0
  115. data/spec/isolation/hanami/application/inherit_concrete_class_spec.rb +14 -0
  116. data/spec/isolation/hanami/application/not_configured_spec.rb +9 -0
  117. data/spec/isolation/hanami/application/routes/configured_spec.rb +44 -0
  118. data/spec/isolation/hanami/application/routes/not_configured_spec.rb +16 -0
  119. data/spec/isolation/hanami/boot/success_spec.rb +50 -0
  120. data/spec/new_integration/action/configuration_spec.rb +26 -0
  121. data/spec/new_integration/action/cookies_spec.rb +58 -0
  122. data/spec/new_integration/action/csrf_protection_spec.rb +54 -0
  123. data/spec/new_integration/action/routes_spec.rb +73 -0
  124. data/spec/new_integration/action/sessions_spec.rb +50 -0
  125. data/spec/new_integration/action/view_integration_spec.rb +165 -0
  126. data/spec/new_integration/action/view_rendering/automatic_rendering_spec.rb +247 -0
  127. data/spec/new_integration/action/view_rendering/paired_view_inference_spec.rb +115 -0
  128. data/spec/new_integration/action/view_rendering_spec.rb +107 -0
  129. data/spec/new_integration/code_loading/loading_from_app_spec.rb +152 -0
  130. data/spec/new_integration/code_loading/loading_from_slice_spec.rb +165 -0
  131. data/spec/new_integration/container/application_routes_helper_spec.rb +48 -0
  132. data/spec/new_integration/container/auto_injection_spec.rb +53 -0
  133. data/spec/new_integration/container/auto_registration_spec.rb +86 -0
  134. data/spec/new_integration/container/autoloader_spec.rb +80 -0
  135. data/spec/new_integration/container/imports_spec.rb +253 -0
  136. data/spec/new_integration/container/prepare_container_spec.rb +123 -0
  137. data/spec/new_integration/container/shutdown_spec.rb +91 -0
  138. data/spec/new_integration/container/standard_bootable_components_spec.rb +124 -0
  139. data/spec/new_integration/rack_app/middleware_spec.rb +215 -0
  140. data/spec/new_integration/rack_app/non_booted_rack_app_spec.rb +105 -0
  141. data/spec/new_integration/rack_app/rack_app_spec.rb +524 -0
  142. data/spec/new_integration/settings_spec.rb +115 -0
  143. data/spec/new_integration/slices/external_slice_spec.rb +92 -0
  144. data/spec/new_integration/slices/slice_configuration_spec.rb +40 -0
  145. data/spec/new_integration/slices/slice_routing_spec.rb +226 -0
  146. data/spec/new_integration/slices/slice_settings_spec.rb +141 -0
  147. data/spec/new_integration/slices_spec.rb +101 -0
  148. data/spec/new_integration/view/configuration_spec.rb +49 -0
  149. data/spec/new_integration/view/context/assets_spec.rb +67 -0
  150. data/spec/new_integration/view/context/inflector_spec.rb +48 -0
  151. data/spec/new_integration/view/context/request_spec.rb +61 -0
  152. data/spec/new_integration/view/context/routes_spec.rb +86 -0
  153. data/spec/new_integration/view/context/settings_spec.rb +50 -0
  154. data/spec/new_integration/view/inflector_spec.rb +57 -0
  155. data/spec/new_integration/view/part_namespace_spec.rb +96 -0
  156. data/spec/new_integration/view/path_spec.rb +56 -0
  157. data/spec/new_integration/view/template_spec.rb +68 -0
  158. data/spec/new_integration/view/views_spec.rb +103 -0
  159. data/spec/spec_helper.rb +16 -0
  160. data/spec/support/app_integration.rb +91 -0
  161. data/spec/support/coverage.rb +1 -0
  162. data/spec/support/fixtures/hanami-plugin/Gemfile +8 -0
  163. data/spec/support/fixtures/hanami-plugin/README.md +35 -0
  164. data/spec/support/fixtures/hanami-plugin/Rakefile +4 -0
  165. data/spec/support/fixtures/hanami-plugin/bin/console +15 -0
  166. data/spec/support/fixtures/hanami-plugin/bin/setup +8 -0
  167. data/spec/support/fixtures/hanami-plugin/hanami-plugin.gemspec +28 -0
  168. data/spec/support/fixtures/hanami-plugin/lib/hanami/plugin/cli.rb +19 -0
  169. data/spec/support/fixtures/hanami-plugin/lib/hanami/plugin/version.rb +7 -0
  170. data/spec/support/fixtures/hanami-plugin/lib/hanami/plugin.rb +8 -0
  171. data/spec/support/rspec.rb +27 -0
  172. data/spec/support/shared_examples/cli/generate/app.rb +494 -0
  173. data/spec/support/shared_examples/cli/generate/migration.rb +32 -0
  174. data/spec/support/shared_examples/cli/generate/model.rb +81 -0
  175. data/spec/support/shared_examples/cli/new.rb +97 -0
  176. data/spec/unit/hanami/configuration/actions/content_security_policy_spec.rb +102 -0
  177. data/spec/unit/hanami/configuration/actions/cookies_spec.rb +46 -0
  178. data/spec/unit/hanami/configuration/actions/csrf_protection_spec.rb +57 -0
  179. data/spec/unit/hanami/configuration/actions/default_values_spec.rb +52 -0
  180. data/spec/unit/hanami/configuration/actions/sessions_spec.rb +50 -0
  181. data/spec/unit/hanami/configuration/actions_spec.rb +78 -0
  182. data/spec/unit/hanami/configuration/base_url_spec.rb +25 -0
  183. data/spec/unit/hanami/configuration/inflector_spec.rb +35 -0
  184. data/spec/unit/hanami/configuration/logger_spec.rb +203 -0
  185. data/spec/unit/hanami/configuration/views_spec.rb +120 -0
  186. data/spec/unit/hanami/configuration_spec.rb +43 -0
  187. data/spec/unit/hanami/env_spec.rb +54 -0
  188. data/spec/unit/hanami/routes_spec.rb +25 -0
  189. data/spec/unit/hanami/settings/dotenv_store_spec.rb +119 -0
  190. data/spec/unit/hanami/settings_spec.rb +56 -0
  191. data/spec/unit/hanami/slice_configurable_spec.rb +104 -0
  192. data/spec/unit/hanami/slice_name_spec.rb +47 -0
  193. data/spec/unit/hanami/slice_spec.rb +17 -0
  194. data/spec/unit/hanami/version_spec.rb +7 -0
  195. data/spec/unit/hanami/web/rack_logger_spec.rb +78 -0
  196. metadata +358 -50
  197. data/lib/hanami/application/container/providers/inflector.rb +0 -7
  198. data/lib/hanami/application/container/providers/logger.rb +0 -7
  199. data/lib/hanami/application/container/providers/rack_logger.rb +0 -15
  200. data/lib/hanami/application/container/providers/rack_monitor.rb +0 -12
  201. data/lib/hanami/application/container/providers/routes_helper.rb +0 -9
  202. data/lib/hanami/application/container/providers/settings.rb +0 -7
  203. data/lib/hanami/application/routes.rb +0 -55
  204. data/lib/hanami/application/routes_helper.rb +0 -34
  205. data/lib/hanami/application/routing/resolver/node.rb +0 -50
  206. data/lib/hanami/application/routing/resolver/trie.rb +0 -59
  207. data/lib/hanami/application/routing/resolver.rb +0 -87
  208. data/lib/hanami/application/routing/router.rb +0 -36
  209. data/lib/hanami/application/settings/dotenv_store.rb +0 -60
  210. data/lib/hanami/application/settings.rb +0 -93
  211. data/lib/hanami/application/slice_registrar.rb +0 -107
  212. data/lib/hanami/application.rb +0 -299
  213. data/lib/hanami/boot/source_dirs.rb +0 -44
  214. data/lib/hanami/cli/application/cli.rb +0 -40
  215. data/lib/hanami/cli/application/command.rb +0 -47
  216. data/lib/hanami/cli/application/commands/console.rb +0 -81
  217. data/lib/hanami/cli/application/commands.rb +0 -16
  218. data/lib/hanami/cli/base_command.rb +0 -48
  219. data/lib/hanami/cli/commands/command.rb +0 -171
  220. data/lib/hanami/cli/commands/server.rb +0 -88
  221. data/lib/hanami/cli/commands.rb +0 -65
  222. data/lib/hanami/configuration/middleware.rb +0 -20
  223. data/lib/hanami/configuration/source_dirs.rb +0 -42
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "Project initializers", type: :integration do
4
+ it "mounts Rack middleware" do
5
+ with_project("project_initializers", gems: ["i18n"]) do
6
+ write "config/locales/en.yml", <<~EOF
7
+ en:
8
+ greeting: "Welcome stranger"
9
+ EOF
10
+
11
+ write "config/initializers/i18n.rb", <<~EOF
12
+ require 'i18n'
13
+ I18n.load_path = Dir['config/locales/*.yml']
14
+ I18n.backend.load_translations
15
+ EOF
16
+
17
+ generate "action web home#index --url=/"
18
+ rewrite "apps/web/views/home/index.rb", <<~EOF
19
+ module Web::Views::Home
20
+ class Index
21
+ include Web::View
22
+
23
+ def greeting
24
+ I18n.t(:greeting)
25
+ end
26
+ end
27
+ end
28
+ EOF
29
+
30
+ rewrite "apps/web/templates/home/index.html.erb", <<~EOF
31
+ <h1><%= greeting%></h1>
32
+ EOF
33
+ server do
34
+ get "/"
35
+
36
+ expect(last_response.body).to include("Welcome stranger")
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "rackup", type: :integration do
4
+ it "serves contents from database" do
5
+ with_project do
6
+ setup_model
7
+ console do |input, _, _|
8
+ input.puts("BookRepository.new.create(title: 'Learn Hanami')")
9
+ input.puts("exit")
10
+ end
11
+
12
+ generate "action web books#show --url=/books/:id"
13
+ rewrite "apps/web/controllers/books/show.rb", <<~EOF
14
+ module Web::Controllers::Books
15
+ class Show
16
+ include Web::Action
17
+ expose :book
18
+
19
+ def call(params)
20
+ @book = BookRepository.new.find(params[:id]) or halt(404)
21
+ end
22
+ end
23
+ end
24
+ EOF
25
+ rewrite "apps/web/templates/books/show.html.erb", <<~EOF
26
+ <h1><%= book.title %></h1>
27
+ EOF
28
+
29
+ rackup do
30
+ visit "/books/1"
31
+ expect(page).to have_content("Learn Hanami")
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,67 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "Rake: default task", type: :integration do
4
+ context "with Minitest" do
5
+ xit "runs tests" do
6
+ with_project("bookshelf", test: "minitest") do
7
+ setup_model
8
+
9
+ prepare_development_database
10
+ generate_development_data
11
+
12
+ prepare_test_database
13
+
14
+ write "spec/bookshelf/repositories/book_repository_spec.rb", <<~EOF
15
+ require 'spec_helper'
16
+
17
+ describe BookRepository do
18
+ before do
19
+ BookRepository.new.clear
20
+ end
21
+
22
+ it 'finds all the records' do
23
+ BookRepository.new.all.to_a.must_equal []
24
+ end
25
+ end
26
+ EOF
27
+
28
+ bundle_exec "rake"
29
+ expect(out).to include("2 runs, 3 assertions, 0 failures, 0 errors, 0 skips")
30
+
31
+ assert_development_data
32
+ end
33
+ end
34
+ end
35
+
36
+ private
37
+
38
+ def prepare_development_database
39
+ prepare_database
40
+ end
41
+
42
+ def prepare_test_database
43
+ prepare_database env: "test"
44
+ end
45
+
46
+ def generate_development_data
47
+ migrate
48
+
49
+ console do |input, _, _|
50
+ input.puts("BookRepository.new.create(title: 'Learn Hanami')")
51
+ input.puts("exit")
52
+ end
53
+ end
54
+
55
+ def assert_development_data
56
+ console do |input, _, _|
57
+ input.puts("BookRepository.new.all.to_a.count")
58
+ input.puts("exit")
59
+ end
60
+
61
+ expect(out).to include("\n1")
62
+ end
63
+
64
+ def prepare_database(env: nil)
65
+ hanami "db prepare", env: env
66
+ end
67
+ end
@@ -0,0 +1,69 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "Rake: default task", type: :integration do
4
+ context "with RSpec" do
5
+ it "runs tests" do
6
+ with_project("bookshelf", test: "rspec") do
7
+ setup_model
8
+
9
+ prepare_development_database
10
+ generate_development_data
11
+
12
+ prepare_test_database
13
+
14
+ generate "mailer bookshelf"
15
+
16
+ write "spec/bookshelf/repositories/book_repository_spec.rb", <<~EOF
17
+ RSpec.describe BookRepository do
18
+ before do
19
+ described_class.new.clear
20
+ end
21
+
22
+ it 'finds all the records' do
23
+ expect(described_class.new.all.to_a).to eq([])
24
+ end
25
+ end
26
+ EOF
27
+
28
+ bundle_exec "rake"
29
+
30
+ # The default mailer_spec fails on purpose so you set the correct delivery information.
31
+ expect(out).to include("3 examples, 1 failure")
32
+
33
+ assert_development_data
34
+ end
35
+ end
36
+ end
37
+
38
+ private
39
+
40
+ def prepare_development_database
41
+ prepare_database
42
+ end
43
+
44
+ def prepare_test_database
45
+ prepare_database env: "test"
46
+ end
47
+
48
+ def generate_development_data
49
+ migrate
50
+
51
+ console do |input, _, _|
52
+ input.puts("BookRepository.new.create(title: 'Learn Hanami')")
53
+ input.puts("exit")
54
+ end
55
+ end
56
+
57
+ def assert_development_data
58
+ console do |input, _, _|
59
+ input.puts("BookRepository.new.all.to_a.count")
60
+ input.puts("exit")
61
+ end
62
+
63
+ expect(out).to include("\n1")
64
+ end
65
+
66
+ def prepare_database(env: nil)
67
+ hanami "db prepare", env: env
68
+ end
69
+ end
@@ -0,0 +1,61 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "Routing helpers", type: :integration do
4
+ it "uses routing helpers within action" do
5
+ with_project do
6
+ generate "action web home#index --url=/"
7
+ generate "action web books#index --url=/books"
8
+
9
+ # Add `as:` option, so it can be used by the routing helper
10
+ replace "apps/web/config/routes.rb", "/books", "get '/books', to: 'books#index', as: :books"
11
+ rewrite "apps/web/controllers/home/index.rb", <<~EOF
12
+ module Web::Controllers::Home
13
+ class Index
14
+ include Web::Action
15
+
16
+ def call(params)
17
+ redirect_to routes.books_url
18
+ end
19
+ end
20
+ end
21
+ EOF
22
+
23
+ server do
24
+ visit "/"
25
+
26
+ expect(current_path).to eq("/books")
27
+ end
28
+ end
29
+ end
30
+
31
+ it "uses routing helpers within view" do
32
+ with_project do
33
+ generate "action web books#index --url=/books"
34
+ generate "action web books#show --url=/books/:id"
35
+
36
+ # Add `as:` option, so it can be used by the routing helper
37
+ replace "apps/web/config/routes.rb", "/books/:id", "get '/books/:id', to: 'books#show', as: :book"
38
+ rewrite "apps/web/views/books/index.rb", <<~EOF
39
+ module Web::Views::Books
40
+ class Index
41
+ include Web::View
42
+
43
+ def featured_book_path
44
+ routes.path(:book, id: 23)
45
+ end
46
+ end
47
+ end
48
+ EOF
49
+ rewrite "apps/web/templates/books/index.html.erb", <<~EOF
50
+ <h1>Books</h1>
51
+ <h2><a href="<%= featured_book_path %>">Featured Book</a></h2>
52
+ EOF
53
+
54
+ server do
55
+ visit "/books"
56
+
57
+ expect(page.body).to include(%(<a href="/books/23">Featured Book</a>))
58
+ end
59
+ end
60
+ end
61
+ end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "Content-Security-Policy header", type: :integration do
4
+ it "returns default value" do
5
+ with_project do
6
+ generate "action web home#index --url=/"
7
+
8
+ server do
9
+ get "/"
10
+
11
+ expect(last_response.status).to eq(200)
12
+ expect(last_response.headers["Content-Security-Policy"]).to eq("form-action 'self'; frame-ancestors 'self'; base-uri 'self'; default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self' https: data:; style-src 'self' 'unsafe-inline' https:; font-src 'self'; object-src 'none'; plugin-types app/pdf; child-src 'self'; frame-src 'self'; media-src 'self'")
13
+ end
14
+ end
15
+ end
16
+
17
+ it "returns custom value" do
18
+ with_project do
19
+ generate "action web home#index --url=/"
20
+
21
+ replace "apps/web/app.rb", "script-src 'self';", "script-src 'self' https://code.jquery.com;"
22
+
23
+ server do
24
+ get "/"
25
+
26
+ expect(last_response.status).to eq(200)
27
+ expect(last_response.headers["Content-Security-Policy"]).to eq("form-action 'self'; frame-ancestors 'self'; base-uri 'self'; default-src 'none'; script-src 'self' https://code.jquery.com; connect-src 'self'; img-src 'self' https: data:; style-src 'self' 'unsafe-inline' https:; font-src 'self'; object-src 'none'; plugin-types app/pdf; child-src 'self'; frame-src 'self'; media-src 'self'")
28
+ end
29
+ end
30
+ end
31
+
32
+ it "doesn't send header if setting is removed" do
33
+ with_project do
34
+ generate "action web home#index --url=/"
35
+
36
+ replace "apps/web/app.rb", "security.content_security_policy %{", "%{"
37
+
38
+ server do
39
+ get "/"
40
+
41
+ expect(last_response.status).to eq(200)
42
+ expect(last_response.headers).to_not have_key("Content-Security-Policy")
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "CSRF protection", type: :integration do
4
+ it "protects POST endpoints from invalid token" do
5
+ with_project do
6
+ generate "action web books#create --url=/books --method=POST"
7
+ replace "apps/web/app.rb", "# sessions :cookie, secret: ENV['WEB_SESSIONS_SECRET']", "sessions :cookie, secret: ENV['WEB_SESSIONS_SECRET']"
8
+
9
+ server do
10
+ post "/books", title: "TDD", _csrf_token: "invalid"
11
+
12
+ expect(last_response.status).to eq(500)
13
+ end
14
+ end
15
+ end
16
+
17
+ it "protects PATCH endpoints from invalid token" do
18
+ with_project do
19
+ generate "action web books#update --url=/books/:id --method=PATCH"
20
+ replace "apps/web/app.rb", "# sessions :cookie, secret: ENV['WEB_SESSIONS_SECRET']", "sessions :cookie, secret: ENV['WEB_SESSIONS_SECRET']"
21
+
22
+ server do
23
+ patch "/books/1", title: "Foo", _csrf_token: "invalid"
24
+
25
+ expect(last_response.status).to eq(500)
26
+ end
27
+ end
28
+ end
29
+
30
+ it "protects DELETE endpoints from invalid token" do
31
+ with_project do
32
+ generate "action web books#destroy --url=/books/:id --method=DELETE"
33
+ replace "apps/web/app.rb", "# sessions :cookie, secret: ENV['WEB_SESSIONS_SECRET']", "sessions :cookie, secret: ENV['WEB_SESSIONS_SECRET']"
34
+
35
+ server do
36
+ delete "/books/1", _csrf_token: "invalid"
37
+
38
+ expect(last_response.status).to eq(500)
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "force SSL", type: :integration do
4
+ it "forces SSL" do
5
+ project = "bookshelf_force_ssl"
6
+
7
+ with_project(project, server: :puma) do
8
+ generate "action web home#index --url=/"
9
+
10
+ inject_line_after "apps/web/app.rb", "configure do", "force_ssl true"
11
+
12
+ RSpec::Support::Env["HANAMI_ENV"] = "production"
13
+ RSpec::Support::Env["DATABASE_URL"] = "sqlite://#{Pathname.new('db').join('bookshelf.sqlite')}"
14
+ RSpec::Support::Env["SMTP_HOST"] = "localhost"
15
+ RSpec::Support::Env["SMTP_PORT"] = "25"
16
+
17
+ # key = Pathname.new(__dir__).join("..", "fixtures", "openssl", "server.key").realpath
18
+ # cert = Pathname.new(__dir__).join("..", "fixtures", "openssl", "server.crt").realpath
19
+
20
+ # bundle_exec "puma -b 'ssl://127.0.0.1:2300?key=#{key}&cert=#{cert}'" do
21
+ server do
22
+ # FIXME: I know, it's lame how I solved this problem, but I can't get Excon to do SSL handshake
23
+ expect do
24
+ get "/"
25
+ end.to raise_error(Excon::Error::Socket)
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "X-Content-Type-Options header", type: :integration do
4
+ it "returns default value" do
5
+ with_project do
6
+ generate "action web home#index --url=/"
7
+
8
+ server do
9
+ get "/"
10
+
11
+ expect(last_response.status).to eq(200)
12
+ expect(last_response.headers["X-Content-Type-Options"]).to eq("nosniff")
13
+ end
14
+ end
15
+ end
16
+
17
+ it "returns custom value" do
18
+ with_project do
19
+ generate "action web home#index --url=/"
20
+
21
+ replace "apps/web/app.rb", "security.x_content_type_options 'nosniff'", "security.x_content_type_options 'foo'"
22
+
23
+ server do
24
+ get "/"
25
+
26
+ expect(last_response.status).to eq(200)
27
+ expect(last_response.headers["X-Content-Type-Options"]).to eq("foo")
28
+ end
29
+ end
30
+ end
31
+
32
+ it "doesn't send header if setting is removed" do
33
+ with_project do
34
+ generate "action web home#index --url=/"
35
+
36
+ replace "apps/web/app.rb", "security.x_content_type_options 'nosniff'", ""
37
+
38
+ server do
39
+ get "/"
40
+
41
+ expect(last_response.status).to eq(200)
42
+ expect(last_response.headers).to_not have_key("X-Content-Type-Options")
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "X-Frame-Options header", type: :integration do
4
+ it "returns default value" do
5
+ with_project do
6
+ generate "action web home#index --url=/"
7
+
8
+ server do
9
+ get "/"
10
+
11
+ expect(last_response.status).to eq(200)
12
+ expect(last_response.headers["X-Frame-Options"]).to eq("DENY")
13
+ end
14
+ end
15
+ end
16
+
17
+ it "returns custom value" do
18
+ with_project do
19
+ generate "action web home#index --url=/"
20
+
21
+ replace "apps/web/app.rb", "security.x_frame_options 'DENY'", "security.x_frame_options 'ALLOW-FROM https://example.test/'"
22
+
23
+ server do
24
+ get "/"
25
+
26
+ expect(last_response.status).to eq(200)
27
+ expect(last_response.headers["X-Frame-Options"]).to eq("ALLOW-FROM https://example.test/")
28
+ end
29
+ end
30
+ end
31
+
32
+ it "doesn't send header if setting is removed" do
33
+ with_project do
34
+ generate "action web home#index --url=/"
35
+
36
+ replace "apps/web/app.rb", "security.x_frame_options 'DENY'", ""
37
+
38
+ server do
39
+ get "/"
40
+
41
+ expect(last_response.status).to eq(200)
42
+ expect(last_response.headers).to_not have_key("X-Frame-Options")
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "X-XSS-Protection header", type: :integration do
4
+ it "returns default value" do
5
+ with_project do
6
+ generate "action web home#index --url=/"
7
+
8
+ server do
9
+ get "/"
10
+
11
+ expect(last_response.status).to eq(200)
12
+ expect(last_response.headers["X-XSS-Protection"]).to eq("1; mode=block")
13
+ end
14
+ end
15
+ end
16
+
17
+ it "returns custom value" do
18
+ with_project do
19
+ generate "action web home#index --url=/"
20
+
21
+ replace "apps/web/app.rb", "security.x_xss_protection '1; mode=block'", "security.x_xss_protection '0'"
22
+
23
+ server do
24
+ get "/"
25
+
26
+ expect(last_response.status).to eq(200)
27
+ expect(last_response.headers["X-XSS-Protection"]).to eq("0")
28
+ end
29
+ end
30
+ end
31
+
32
+ it "doesn't send header if setting is removed" do
33
+ with_project do
34
+ generate "action web home#index --url=/"
35
+
36
+ replace "apps/web/app.rb", "security.x_xss_protection '1; mode=block'", ""
37
+
38
+ server do
39
+ get "/"
40
+
41
+ expect(last_response.status).to eq(200)
42
+ expect(last_response.headers).to_not have_key("X-XSS-Protection")
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,51 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe "Send file", type: :integration do
4
+ it "sends file from the public directory" do
5
+ with_project do
6
+ write "public/static.txt", "Static file"
7
+ generate "action web home#index --url=/"
8
+ rewrite "apps/web/controllers/home/index.rb", <<~EOF
9
+ module Web::Controllers::Home
10
+ class Index
11
+ include Web::Action
12
+
13
+ def call(params)
14
+ send_file "static.txt"
15
+ end
16
+ end
17
+ end
18
+ EOF
19
+
20
+ server do
21
+ get "/"
22
+
23
+ expect(last_response.status).to eq(200)
24
+ expect(last_response.body).to include("Static file")
25
+ end
26
+ end
27
+ end
28
+
29
+ it "doesn't send file outside of public directory" do
30
+ with_project do
31
+ generate "action web home#index --url=/"
32
+ rewrite "apps/web/controllers/home/index.rb", <<~EOF
33
+ module Web::Controllers::Home
34
+ class Index
35
+ include Web::Action
36
+
37
+ def call(params)
38
+ send_file __FILE__
39
+ end
40
+ end
41
+ end
42
+ EOF
43
+
44
+ server do
45
+ get "/"
46
+
47
+ expect(last_response.status).to eq(404)
48
+ end
49
+ end
50
+ end
51
+ end