webpacker 5.0.1 → 6.0.0.beta

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 (172) hide show
  1. checksums.yaml +4 -4
  2. data/.eslintrc.js +8 -8
  3. data/.github/workflows/jest.yml +38 -0
  4. data/.github/workflows/js-lint.yml +39 -0
  5. data/.github/workflows/rubocop.yml +39 -0
  6. data/.github/workflows/ruby.yml +70 -0
  7. data/.gitignore +2 -0
  8. data/.node-version +1 -1
  9. data/.rubocop.yml +11 -16
  10. data/6_0_upgrade.md +43 -0
  11. data/CHANGELOG.md +49 -3
  12. data/CONTRIBUTING.md +1 -1
  13. data/Gemfile.lock +91 -85
  14. data/README.md +233 -133
  15. data/lib/install/config/webpack/base.js +3 -0
  16. data/lib/install/config/webpack/development.js +2 -2
  17. data/lib/install/config/webpack/production.js +2 -2
  18. data/lib/install/config/webpack/test.js +2 -2
  19. data/lib/install/config/webpacker.yml +9 -42
  20. data/lib/install/javascript/packs/application.css +9 -0
  21. data/lib/install/javascript/packs/application.js +3 -1
  22. data/lib/install/template.rb +33 -19
  23. data/lib/tasks/webpacker.rake +2 -11
  24. data/lib/tasks/webpacker/binstubs.rake +6 -4
  25. data/lib/tasks/webpacker/check_binstubs.rake +4 -4
  26. data/lib/tasks/webpacker/check_node.rake +1 -1
  27. data/lib/tasks/webpacker/check_yarn.rake +2 -3
  28. data/lib/tasks/webpacker/compile.rake +4 -2
  29. data/lib/tasks/webpacker/info.rake +12 -10
  30. data/lib/tasks/webpacker/install.rake +6 -4
  31. data/lib/tasks/webpacker/verify_install.rake +2 -1
  32. data/lib/tasks/webpacker/yarn_install.rake +9 -1
  33. data/lib/webpacker/commands.rb +1 -1
  34. data/lib/webpacker/compiler.rb +22 -11
  35. data/lib/webpacker/configuration.rb +7 -27
  36. data/lib/webpacker/dev_server_proxy.rb +3 -1
  37. data/lib/webpacker/dev_server_runner.rb +23 -4
  38. data/lib/webpacker/helper.rb +55 -46
  39. data/lib/webpacker/manifest.rb +1 -1
  40. data/lib/webpacker/railtie.rb +0 -43
  41. data/lib/webpacker/runner.rb +1 -0
  42. data/lib/webpacker/version.rb +1 -1
  43. data/lib/webpacker/webpack_runner.rb +7 -2
  44. data/package.json +27 -43
  45. data/package/__tests__/config.js +6 -27
  46. data/package/__tests__/dev_server.js +2 -0
  47. data/package/__tests__/development.js +18 -7
  48. data/package/__tests__/env.js +12 -4
  49. data/package/__tests__/production.js +6 -6
  50. data/package/__tests__/staging.js +7 -6
  51. data/package/__tests__/test.js +4 -5
  52. data/package/babel/preset.js +55 -0
  53. data/package/config.js +4 -9
  54. data/package/configPath.js +3 -0
  55. data/package/dev_server.js +1 -1
  56. data/package/env.js +9 -4
  57. data/package/environments/__tests__/base.js +21 -36
  58. data/package/environments/base.js +63 -127
  59. data/package/environments/development.js +46 -39
  60. data/package/environments/production.js +63 -70
  61. data/package/environments/test.js +2 -2
  62. data/package/index.js +13 -8
  63. data/package/rules/babel.js +20 -11
  64. data/package/rules/coffee.js +6 -0
  65. data/package/rules/erb.js +15 -0
  66. data/package/rules/file.js +19 -18
  67. data/package/rules/index.js +15 -18
  68. data/package/rules/less.js +22 -0
  69. data/package/rules/sass.js +13 -10
  70. data/package/rules/svg.js +20 -0
  71. data/package/utils/get_style_rule.js +26 -36
  72. data/package/utils/helpers.js +26 -35
  73. data/test/compiler_test.rb +4 -11
  74. data/test/configuration_test.rb +2 -32
  75. data/test/dev_server_runner_test.rb +25 -6
  76. data/test/engine_rake_tasks_test.rb +39 -0
  77. data/test/helper_test.rb +18 -9
  78. data/test/mounted_app/Rakefile +4 -0
  79. data/test/mounted_app/test/dummy/Rakefile +3 -0
  80. data/test/mounted_app/test/dummy/bin/rails +3 -0
  81. data/test/mounted_app/test/dummy/bin/rake +3 -0
  82. data/test/mounted_app/test/dummy/config.ru +5 -0
  83. data/test/mounted_app/test/dummy/config/application.rb +10 -0
  84. data/test/mounted_app/test/dummy/config/environment.rb +3 -0
  85. data/test/mounted_app/test/dummy/config/webpacker.yml +75 -0
  86. data/test/mounted_app/test/dummy/package.json +7 -0
  87. data/test/rake_tasks_test.rb +1 -10
  88. data/test/test_app/config/application.rb +0 -1
  89. data/test/test_app/config/webpacker.yml +3 -21
  90. data/test/test_app/config/webpacker_public_root.yml +0 -1
  91. data/test/test_app/public/packs/manifest.json +18 -13
  92. data/test/test_app/some.config.js +0 -0
  93. data/test/webpack_runner_test.rb +10 -4
  94. data/webpacker.gemspec +1 -1
  95. data/yarn.lock +2657 -6224
  96. metadata +49 -90
  97. data/.travis.yml +0 -43
  98. data/docs/assets.md +0 -119
  99. data/docs/cloud9.md +0 -310
  100. data/docs/css.md +0 -253
  101. data/docs/deployment.md +0 -130
  102. data/docs/docker.md +0 -68
  103. data/docs/engines.md +0 -213
  104. data/docs/env.md +0 -65
  105. data/docs/es6.md +0 -72
  106. data/docs/folder-structure.md +0 -66
  107. data/docs/integrations.md +0 -220
  108. data/docs/misc.md +0 -23
  109. data/docs/props.md +0 -223
  110. data/docs/testing.md +0 -137
  111. data/docs/troubleshooting.md +0 -156
  112. data/docs/typescript.md +0 -125
  113. data/docs/v4-upgrade.md +0 -142
  114. data/docs/webpack-dev-server.md +0 -92
  115. data/docs/webpack.md +0 -364
  116. data/docs/yarn.md +0 -23
  117. data/lib/install/angular.rb +0 -23
  118. data/lib/install/coffee.rb +0 -25
  119. data/lib/install/config/.browserslistrc +0 -1
  120. data/lib/install/config/babel.config.js +0 -72
  121. data/lib/install/config/postcss.config.js +0 -12
  122. data/lib/install/config/webpack/environment.js +0 -3
  123. data/lib/install/elm.rb +0 -39
  124. data/lib/install/erb.rb +0 -25
  125. data/lib/install/examples/angular/hello_angular.js +0 -7
  126. data/lib/install/examples/angular/hello_angular/app/app.component.ts +0 -9
  127. data/lib/install/examples/angular/hello_angular/app/app.module.ts +0 -16
  128. data/lib/install/examples/angular/hello_angular/index.ts +0 -8
  129. data/lib/install/examples/angular/hello_angular/polyfills.ts +0 -73
  130. data/lib/install/examples/coffee/hello_coffee.coffee +0 -4
  131. data/lib/install/examples/elm/Main.elm +0 -55
  132. data/lib/install/examples/elm/hello_elm.js +0 -16
  133. data/lib/install/examples/erb/hello_erb.js.erb +0 -6
  134. data/lib/install/examples/react/babel.config.js +0 -87
  135. data/lib/install/examples/react/hello_react.jsx +0 -26
  136. data/lib/install/examples/react/tsconfig.json +0 -20
  137. data/lib/install/examples/stimulus/application.js +0 -1
  138. data/lib/install/examples/stimulus/controllers/hello_controller.js +0 -18
  139. data/lib/install/examples/stimulus/controllers/index.js +0 -9
  140. data/lib/install/examples/svelte/app.svelte +0 -11
  141. data/lib/install/examples/svelte/hello_svelte.js +0 -20
  142. data/lib/install/examples/typescript/hello_typescript.ts +0 -4
  143. data/lib/install/examples/typescript/tsconfig.json +0 -23
  144. data/lib/install/examples/vue/app.vue +0 -22
  145. data/lib/install/examples/vue/hello_vue.js +0 -72
  146. data/lib/install/loaders/coffee.js +0 -6
  147. data/lib/install/loaders/elm.js +0 -25
  148. data/lib/install/loaders/erb.js +0 -11
  149. data/lib/install/loaders/svelte.js +0 -9
  150. data/lib/install/loaders/typescript.js +0 -11
  151. data/lib/install/loaders/vue.js +0 -6
  152. data/lib/install/react.rb +0 -18
  153. data/lib/install/stimulus.rb +0 -12
  154. data/lib/install/svelte.rb +0 -29
  155. data/lib/install/typescript.rb +0 -46
  156. data/lib/install/vue.rb +0 -49
  157. data/lib/tasks/installers.rake +0 -42
  158. data/package/config_types/__tests__/config_list.js +0 -118
  159. data/package/config_types/__tests__/config_object.js +0 -43
  160. data/package/config_types/config_list.js +0 -75
  161. data/package/config_types/config_object.js +0 -55
  162. data/package/config_types/index.js +0 -7
  163. data/package/rules/module.css.js +0 -3
  164. data/package/rules/module.sass.js +0 -8
  165. data/package/rules/node_modules.js +0 -24
  166. data/package/utils/__tests__/deep_assign.js +0 -32
  167. data/package/utils/__tests__/deep_merge.js +0 -10
  168. data/package/utils/__tests__/get_style_rule.js +0 -65
  169. data/package/utils/__tests__/objectify.js +0 -9
  170. data/package/utils/deep_assign.js +0 -22
  171. data/package/utils/deep_merge.js +0 -22
  172. data/package/utils/objectify.js +0 -3
@@ -1,14 +1,17 @@
1
+ /* eslint global-require: 0 */
2
+
1
3
  const getStyleRule = require('../utils/get_style_rule')
2
- const { resolved_paths: includePaths } = require('../config')
4
+ const { canProcess } = require('../utils/helpers')
5
+ const { additional_paths: includePaths } = require('../config')
3
6
 
4
- module.exports = getStyleRule(/\.(scss|sass)(\.erb)?$/i, false, [
5
- {
6
- loader: 'sass-loader',
7
- options: {
8
- sourceMap: true,
9
- sassOptions: {
10
- includePaths
7
+ module.exports = canProcess('sass-loader', (resolvedPath) =>
8
+ getStyleRule(/\.(scss|sass)(\.erb)?$/i, [
9
+ {
10
+ loader: resolvedPath,
11
+ options: {
12
+ sassOptions: { includePaths },
13
+ implementation: require('sass')
11
14
  }
12
15
  }
13
- }
14
- ])
16
+ ])
17
+ )
@@ -0,0 +1,20 @@
1
+ /* eslint global-require: 0 */
2
+ /* eslint import/no-dynamic-require: 0 */
3
+ const { moduleExists } = require('../utils/helpers')
4
+
5
+ module.exports = {
6
+ test: /\.svg$/i,
7
+ type: 'asset/inline',
8
+ generator: {
9
+ dataUrl: (content) => {
10
+ let optimisedContent = content
11
+
12
+ if (moduleExists('mini-svg-data-uri')) {
13
+ const svgToMiniDataURI = require('mini-svg-data-uri')
14
+ optimisedContent = svgToMiniDataURI(content.toString())
15
+ }
16
+
17
+ return optimisedContent
18
+ }
19
+ }
20
+ }
@@ -1,45 +1,35 @@
1
- const MiniCssExtractPlugin = require('mini-css-extract-plugin')
2
- const { resolve } = require('path')
3
- const config = require('../config')
1
+ /* eslint global-require: 0 */
4
2
 
5
- const styleLoader = {
6
- loader: 'style-loader'
7
- }
3
+ const { canProcess, moduleExists } = require('./helpers')
8
4
 
9
- const getStyleRule = (test, modules = false, preprocessors = []) => {
10
- const use = [
11
- {
12
- loader: 'css-loader',
13
- options: {
14
- sourceMap: true,
15
- importLoaders: 2,
16
- modules: modules ? {
17
- localIdentName: '[name]__[local]___[hash:base64:5]'
18
- } : false
19
- }
20
- },
21
- {
22
- loader: 'postcss-loader',
23
- options: {
24
- config: { path: resolve() },
25
- sourceMap: true
26
- }
27
- },
28
- ...preprocessors
29
- ]
5
+ const getStyleRule = (test, preprocessors = []) => {
6
+ if (moduleExists('css-loader')) {
7
+ const tryPostcss = () =>
8
+ canProcess('postcss-loader', (loaderPath) => ({
9
+ loader: loaderPath,
10
+ options: { sourceMap: true }
11
+ }))
30
12
 
31
- const options = modules ? { include: /\.module\.[a-z]+$/ } : { exclude: /\.module\.[a-z]+$/ }
13
+ const use = [
14
+ { loader: require('mini-css-extract-plugin').loader },
15
+ {
16
+ loader: require.resolve('css-loader'),
17
+ options: {
18
+ sourceMap: true,
19
+ importLoaders: 2
20
+ }
21
+ },
22
+ tryPostcss(),
23
+ ...preprocessors
24
+ ].filter(Boolean)
32
25
 
33
- if (config.extract_css) {
34
- use.unshift(MiniCssExtractPlugin.loader)
35
- } else {
36
- use.unshift(styleLoader)
26
+ return {
27
+ test,
28
+ use
29
+ }
37
30
  }
38
31
 
39
- // sideEffects - See https://github.com/webpack/webpack/issues/6571
40
- return {
41
- test, use, sideEffects: !modules, ...options
42
- }
32
+ return null
43
33
  }
44
34
 
45
35
  module.exports = getStyleRule
@@ -1,30 +1,5 @@
1
- const { stringify } = require('flatted/cjs')
2
-
3
- const isObject = (value) => typeof value === 'object'
4
- && value !== null
5
- && (value.length === undefined || value.length === null)
6
-
7
- const isNotObject = (value) => !isObject(value)
8
-
9
- const isBoolean = (str) => /^true/.test(str) || /^false/.test(str)
10
-
11
- const isEmpty = (value) => value === null || value === undefined
12
-
13
- const isString = (key) => key && typeof key === 'string'
14
-
15
- const isStrPath = (key) => {
16
- if (!isString(key)) throw new Error(`Key ${key} should be string`)
17
- return isString(key) && key.includes('.')
18
- }
19
-
20
1
  const isArray = (value) => Array.isArray(value)
21
-
22
- const isEqual = (target, source) => stringify(target) === stringify(source)
23
-
24
- const canMerge = (value) => isObject(value) || isArray(value)
25
-
26
- const prettyPrint = (obj) => JSON.stringify(obj, null, 2)
27
-
2
+ const isBoolean = (str) => /^true/.test(str) || /^false/.test(str)
28
3
  const chdirTestApp = () => {
29
4
  try {
30
5
  return process.chdir('test/test_app')
@@ -41,18 +16,34 @@ const resetEnv = () => {
41
16
 
42
17
  const ensureTrailingSlash = (path) => (path.endsWith('/') ? path : `${path}/`)
43
18
 
19
+ const moduleExists = (packageName) => {
20
+ try {
21
+ return require.resolve(packageName)
22
+ } catch (e) {
23
+ if (e.code !== 'MODULE_NOT_FOUND') {
24
+ throw e
25
+ }
26
+ return null
27
+ }
28
+ }
29
+
30
+ const canProcess = (rule, fn) => {
31
+ const modulePath = moduleExists(rule)
32
+
33
+ if (modulePath) {
34
+ return fn(modulePath)
35
+ }
36
+
37
+ return null
38
+ }
39
+
44
40
  module.exports = {
45
41
  chdirTestApp,
46
42
  chdirCwd,
47
- ensureTrailingSlash,
48
- isObject,
49
- isNotObject,
50
- isBoolean,
51
43
  isArray,
52
- isEqual,
53
- isEmpty,
54
- isStrPath,
55
- canMerge,
56
- prettyPrint,
44
+ isBoolean,
45
+ ensureTrailingSlash,
46
+ canProcess,
47
+ moduleExists,
57
48
  resetEnv
58
49
  }
@@ -23,22 +23,15 @@ class CompilerTest < Minitest::Test
23
23
  Webpacker.compiler.env = {}
24
24
  end
25
25
 
26
- def test_default_watched_paths
27
- assert_equal Webpacker.compiler.send(:default_watched_paths), [
28
- "app/assets/**/*{.mjs,.js,.sass,.scss,.css,.module.sass,.module.scss,.module.css,.png,.svg,.gif,.jpeg,.jpg}",
29
- "/etc/yarn/**/*{.mjs,.js,.sass,.scss,.css,.module.sass,.module.scss,.module.css,.png,.svg,.gif,.jpeg,.jpg}",
30
- "app/javascript/**/*{.mjs,.js,.sass,.scss,.css,.module.sass,.module.scss,.module.css,.png,.svg,.gif,.jpeg,.jpg}",
31
- "yarn.lock",
32
- "package.json",
33
- "config/webpack/**/*"
34
- ]
35
- end
36
-
37
26
  def test_freshness
38
27
  assert Webpacker.compiler.stale?
39
28
  assert !Webpacker.compiler.fresh?
40
29
  end
41
30
 
31
+ def test_compile
32
+ assert !Webpacker.compiler.compile
33
+ end
34
+
42
35
  def test_freshness_on_compile_success
43
36
  status = OpenStruct.new(success?: true)
44
37
 
@@ -14,11 +14,6 @@ class ConfigurationTest < Webpacker::Test
14
14
  assert_equal source_path, @config.source_path.to_s
15
15
  end
16
16
 
17
- def test_source_path_globbed
18
- assert_equal @config.source_path_globbed,
19
- "app/javascript/**/*{.mjs,.js,.sass,.scss,.css,.module.sass,.module.scss,.module.css,.png,.svg,.gif,.jpeg,.jpg}"
20
- end
21
-
22
17
  def test_source_entry_path
23
18
  source_entry_path = File.expand_path File.join(File.dirname(__FILE__), "test_app/app/javascript", "packs").to_s
24
19
  assert_equal @config.source_entry_path.to_s, source_entry_path
@@ -53,21 +48,8 @@ class ConfigurationTest < Webpacker::Test
53
48
  assert_equal @config.cache_path.to_s, cache_path
54
49
  end
55
50
 
56
- def test_resolved_paths
57
- assert_equal @config.resolved_paths, ["app/assets", "/etc/yarn"]
58
- end
59
-
60
- def test_resolved_paths_globbed
61
- assert_equal @config.resolved_paths_globbed, [
62
- "app/assets/**/*{.mjs,.js,.sass,.scss,.css,.module.sass,.module.scss,.module.css,.png,.svg,.gif,.jpeg,.jpg}",
63
- "/etc/yarn/**/*{.mjs,.js,.sass,.scss,.css,.module.sass,.module.scss,.module.css,.png,.svg,.gif,.jpeg,.jpg}"
64
- ]
65
- end
66
-
67
- def test_extensions
68
- config_path = File.expand_path File.join(File.dirname(__FILE__), "test_app/config/webpacker.yml").to_s
69
- webpacker_yml = YAML.load_file(config_path)
70
- assert_equal @config.extensions, webpacker_yml["default"]["extensions"]
51
+ def test_additional_paths
52
+ assert_equal @config.additional_paths, ["app/assets", "/etc/yarn", "some.config.js", "app/elm"]
71
53
  end
72
54
 
73
55
  def test_cache_manifest?
@@ -93,16 +75,4 @@ class ConfigurationTest < Webpacker::Test
93
75
  assert Webpacker.config.compile?
94
76
  end
95
77
  end
96
-
97
- def test_extract_css?
98
- assert @config.extract_css?
99
-
100
- with_rails_env("development") do
101
- refute Webpacker.config.extract_css?
102
- end
103
-
104
- with_rails_env("test") do
105
- refute Webpacker.config.extract_css?
106
- end
107
- end
108
78
  end
@@ -13,34 +13,53 @@ class DevServerRunnerTest < Webpacker::Test
13
13
  end
14
14
 
15
15
  def test_run_cmd_via_node_modules
16
- cmd = ["#{test_app_path}/node_modules/.bin/webpack-dev-server", "--config", "#{test_app_path}/config/webpack/development.js"]
16
+ cmd = ["#{test_app_path}/node_modules/.bin/webpack", "serve", "--config", "#{test_app_path}/config/webpack/development.js"]
17
17
 
18
18
  verify_command(cmd, use_node_modules: true)
19
19
  end
20
20
 
21
21
  def test_run_cmd_via_yarn
22
- cmd = ["yarn", "webpack-dev-server", "--config", "#{test_app_path}/config/webpack/development.js"]
22
+ cmd = ["yarn", "webpack", "serve", "--config", "#{test_app_path}/config/webpack/development.js"]
23
23
 
24
24
  verify_command(cmd, use_node_modules: false)
25
25
  end
26
26
 
27
+ def test_run_cmd_argv
28
+ cmd = ["#{test_app_path}/node_modules/.bin/webpack", "serve", "--config", "#{test_app_path}/config/webpack/development.js", "--quiet"]
29
+
30
+ verify_command(cmd, argv: ["--quiet"])
31
+ end
32
+
33
+ def test_run_cmd_argv_with_https
34
+ cmd = ["#{test_app_path}/node_modules/.bin/webpack", "serve", "--config", "#{test_app_path}/config/webpack/development.js", "--https"]
35
+
36
+ dev_server = Webpacker::DevServer.new({})
37
+ def dev_server.host; "localhost"; end
38
+ def dev_server.port; "3035"; end
39
+ def dev_server.pretty?; false; end
40
+ def dev_server.https?; true; end
41
+ Webpacker::DevServer.stub(:new, dev_server) do
42
+ verify_command(cmd, argv: ["--https"])
43
+ end
44
+ end
45
+
27
46
  private
28
47
  def test_app_path
29
48
  File.expand_path("test_app", __dir__)
30
49
  end
31
50
 
32
- def verify_command(cmd, use_node_modules: true)
51
+ def verify_command(cmd, use_node_modules: true, argv: [])
33
52
  cwd = Dir.pwd
34
53
  Dir.chdir(test_app_path)
35
54
 
36
55
  klass = Webpacker::DevServerRunner
37
- instance = klass.new([])
56
+ instance = klass.new(argv)
38
57
  mock = Minitest::Mock.new
39
- mock.expect(:call, nil, [{}, *cmd])
58
+ mock.expect(:call, nil, [Webpacker::Compiler.env, *cmd])
40
59
 
41
60
  klass.stub(:new, instance) do
42
61
  instance.stub(:node_modules_bin_exist?, use_node_modules) do
43
- Kernel.stub(:exec, mock) { klass.run([]) }
62
+ Kernel.stub(:exec, mock) { klass.run(argv) }
44
63
  end
45
64
  end
46
65
 
@@ -0,0 +1,39 @@
1
+ require "test_helper"
2
+
3
+ class EngineRakeTasksTest < Minitest::Test
4
+ def setup
5
+ remove_webpack_binstubs
6
+ end
7
+
8
+ def teardown
9
+ remove_webpack_binstubs
10
+ end
11
+
12
+ def test_task_mounted
13
+ output = Dir.chdir(mounted_app_path) { `rake -T` }
14
+ assert_includes output, "app:webpacker"
15
+ end
16
+
17
+ def test_binstubs
18
+ Dir.chdir(mounted_app_path) { `bundle exec rake app:webpacker:binstubs` }
19
+ webpack_binstub_paths.each { |path| assert File.exist?(path) }
20
+ end
21
+
22
+ private
23
+ def mounted_app_path
24
+ File.expand_path("mounted_app", __dir__)
25
+ end
26
+
27
+ def webpack_binstub_paths
28
+ [
29
+ "#{mounted_app_path}/test/dummy/bin/webpack",
30
+ "#{mounted_app_path}/test/dummy/bin/webpack-dev-server",
31
+ ]
32
+ end
33
+
34
+ def remove_webpack_binstubs
35
+ webpack_binstub_paths.each do |path|
36
+ File.delete(path) if File.exist?(path)
37
+ end
38
+ end
39
+ end
@@ -17,21 +17,27 @@ class HelperTest < ActionView::TestCase
17
17
  def test_asset_pack_path
18
18
  assert_equal "/packs/bootstrap-300631c4f0e0f9c865bc.js", asset_pack_path("bootstrap.js")
19
19
  assert_equal "/packs/bootstrap-c38deda30895059837cf.css", asset_pack_path("bootstrap.css")
20
-
21
- Webpacker.config.stub :extract_css?, false do
22
- assert_nil asset_pack_path("bootstrap.css")
23
- assert_equal "/packs/application-k344a6d59eef8632c9d1.png", asset_pack_path("application.png")
24
- end
25
20
  end
26
21
 
27
22
  def test_asset_pack_url
28
23
  assert_equal "https://example.com/packs/bootstrap-300631c4f0e0f9c865bc.js", asset_pack_url("bootstrap.js")
29
24
  assert_equal "https://example.com/packs/bootstrap-c38deda30895059837cf.css", asset_pack_url("bootstrap.css")
25
+ end
30
26
 
31
- Webpacker.config.stub :extract_css?, false do
32
- assert_nil asset_pack_path("bootstrap.css")
33
- assert_equal "https://example.com/packs/application-k344a6d59eef8632c9d1.png", asset_pack_url("application.png")
34
- end
27
+ def test_image_pack_path
28
+ assert_equal "/packs/application-k344a6d59eef8632c9d1.png", image_pack_path("application.png")
29
+ assert_equal "/packs/media/images/image-c38deda30895059837cf.jpg", image_pack_path("image.jpg")
30
+ assert_equal "/packs/media/images/image-c38deda30895059837cf.jpg", image_pack_path("media/images/image.jpg")
31
+ assert_equal "/packs/media/images/nested/image-c38deda30895059837cf.jpg", image_pack_path("nested/image.jpg")
32
+ assert_equal "/packs/media/images/nested/image-c38deda30895059837cf.jpg", image_pack_path("media/images/nested/image.jpg")
33
+ end
34
+
35
+ def test_image_pack_url
36
+ assert_equal "https://example.com/packs/application-k344a6d59eef8632c9d1.png", image_pack_url("application.png")
37
+ assert_equal "https://example.com/packs/media/images/image-c38deda30895059837cf.jpg", image_pack_url("image.jpg")
38
+ assert_equal "https://example.com/packs/media/images/image-c38deda30895059837cf.jpg", image_pack_url("media/images/image.jpg")
39
+ assert_equal "https://example.com/packs/media/images/nested/image-c38deda30895059837cf.jpg", image_pack_url("nested/image.jpg")
40
+ assert_equal "https://example.com/packs/media/images/nested/image-c38deda30895059837cf.jpg", image_pack_url("media/images/nested/image.jpg")
35
41
  end
36
42
 
37
43
  def test_image_pack_tag
@@ -50,6 +56,9 @@ class HelperTest < ActionView::TestCase
50
56
  assert_equal \
51
57
  "<img alt=\"Edit Entry\" src=\"/packs/media/images/nested/image-c38deda30895059837cf.jpg\" width=\"16\" height=\"10\" />",
52
58
  image_pack_tag("media/images/nested/image.jpg", size: "16x10", alt: "Edit Entry")
59
+ assert_equal \
60
+ "<img srcset=\"/packs/media/images/image-2x-7cca48e6cae66ec07b8e.jpg 2x\" src=\"/packs/media/images/image-c38deda30895059837cf.jpg\" />",
61
+ image_pack_tag("media/images/image.jpg", srcset: { "media/images/image-2x.jpg" => "2x" })
53
62
  end
54
63
 
55
64
  def test_favicon_pack_tag
@@ -0,0 +1,4 @@
1
+ require "bundler/setup"
2
+
3
+ APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
4
+ load "rails/tasks/engine.rake"
@@ -0,0 +1,3 @@
1
+ require_relative "config/application"
2
+
3
+ Rails.application.load_tasks
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path("../config/application", __dir__)
3
+ require "rails/commands"
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require "rake"
3
+ Rake.application.run
@@ -0,0 +1,5 @@
1
+ # This file allows the `Rails.root` to be correctly determined.
2
+
3
+ require_relative "config/environment"
4
+
5
+ run Rails.application