Skip to content

Commit 99b0206

Browse files
authored
Merge pull request #4 from codergeek121/2-tests
Add GitHub Actions. Fixes #2.
2 parents f5acaf9 + 37a651a commit 99b0206

27 files changed

+236
-15
lines changed

.github/workflows/ruby.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
test:
16+
17+
runs-on: ubuntu-latest
18+
strategy:
19+
matrix:
20+
ruby-version: ['3.1', '3.2', '3.3']
21+
rails-version: ['7.0', '7.1']
22+
importmap-rails-version: ['2.0', '1.2']
23+
fail-fast: false
24+
25+
env:
26+
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails-version }}__importmap_rails_version_${{ matrix.importmap-rails-version }}.gemfile
27+
28+
steps:
29+
- uses: actions/checkout@v3
30+
- name: Set up Ruby
31+
uses: ruby/setup-ruby@v1
32+
with:
33+
ruby-version: ${{ matrix.ruby-version }}
34+
- name: Bundler
35+
run: bundle install
36+
- name: Run tests
37+
run: bin/test

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
/test/dummy/log/*.log
99
/test/dummy/storage/
1010
/test/dummy/tmp/
11+
/gemfiles/*.lock

Appraisals

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
appraise "rails_7.0__importmap_rails_version_1.2" do
2+
gem "rails", "~> 7.0"
3+
gem "importmap-rails", "~> 1.2"
4+
end
5+
6+
appraise "rails_7.0__importmap_rails_version_2.0" do
7+
gem "rails", "~> 7.0"
8+
gem "importmap-rails", "~> 2.0"
9+
end
10+
11+
appraise "rails_7.1__importmap_rails_version_1.2" do
12+
gem "rails", "~> 7.1"
13+
gem "importmap-rails", "~> 1.2"
14+
end
15+
16+
appraise "rails_7.1__importmap_rails_version_2.0" do
17+
gem "rails", "~> 7.1"
18+
gem "importmap-rails", "~> 2.0"
19+
end

Gemfile

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44
# Specify your gem's dependencies in custom_elements-rails.gemspec.
55
gemspec
66

7+
gem "importmap-rails"
8+
gem "propshaft"
9+
710
gem "puma"
811

9-
gem "sqlite3"
12+
gem "sqlite3", "~> 1.4"
1013

1114
# Start debugger with binding.b [https://github.com/ruby/debug]
1215
# gem "debug", ">= 1.0.0"
16+
gem "capybara"
17+
gem "selenium-webdriver"

Gemfile.lock

+48-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
custom_elements-rails (0.1.2)
5-
rails (>= 7)
5+
rails (>= 7.0.0)
66

77
GEM
88
remote: https://rubygems.org/
@@ -81,9 +81,24 @@ GEM
8181
minitest (>= 5.1)
8282
mutex_m
8383
tzinfo (~> 2.0)
84+
addressable (2.8.6)
85+
public_suffix (>= 2.0.2, < 6.0)
86+
appraisal (2.5.0)
87+
bundler
88+
rake
89+
thor (>= 0.14.0)
8490
base64 (0.2.0)
8591
bigdecimal (3.1.7)
8692
builder (3.2.4)
93+
capybara (3.40.0)
94+
addressable
95+
matrix
96+
mini_mime (>= 0.1.3)
97+
nokogiri (~> 1.11)
98+
rack (>= 1.6.0)
99+
rack-test (>= 0.6.3)
100+
regexp_parser (>= 1.5, < 3.0)
101+
xpath (~> 3.2)
87102
concurrent-ruby (1.2.3)
88103
connection_pool (2.4.1)
89104
crass (1.0.6)
@@ -94,6 +109,10 @@ GEM
94109
activesupport (>= 6.1)
95110
i18n (1.14.4)
96111
concurrent-ruby (~> 1.0)
112+
importmap-rails (2.0.1)
113+
actionpack (>= 6.0.0)
114+
activesupport (>= 6.0.0)
115+
railties (>= 6.0.0)
97116
io-console (0.7.2)
98117
irb (1.12.0)
99118
rdoc
@@ -107,6 +126,7 @@ GEM
107126
net-pop
108127
net-smtp
109128
marcel (1.0.4)
129+
matrix (0.4.2)
110130
mini_mime (1.1.5)
111131
minitest (5.22.3)
112132
mutex_m (0.2.0)
@@ -122,8 +142,16 @@ GEM
122142
nio4r (2.7.1)
123143
nokogiri (1.16.4-arm64-darwin)
124144
racc (~> 1.4)
145+
nokogiri (1.16.4-x86_64-linux)
146+
racc (~> 1.4)
147+
propshaft (0.8.0)
148+
actionpack (>= 7.0.0)
149+
activesupport (>= 7.0.0)
150+
rack
151+
railties (>= 7.0.0)
125152
psych (5.1.2)
126153
stringio
154+
public_suffix (5.0.5)
127155
puma (6.4.2)
128156
nio4r (~> 2.0)
129157
racc (1.7.3)
@@ -167,27 +195,45 @@ GEM
167195
rake (13.2.1)
168196
rdoc (6.6.3.1)
169197
psych (>= 4.0.0)
198+
regexp_parser (2.9.0)
170199
reline (0.5.1)
171200
io-console (~> 0.5)
201+
rexml (3.2.6)
202+
rubyzip (2.3.2)
203+
selenium-webdriver (4.19.0)
204+
base64 (~> 0.2)
205+
rexml (~> 3.2, >= 3.2.5)
206+
rubyzip (>= 1.2.2, < 3.0)
207+
websocket (~> 1.0)
172208
sqlite3 (1.7.3-arm64-darwin)
209+
sqlite3 (1.7.3-x86_64-linux)
173210
stringio (3.1.0)
174211
thor (1.3.1)
175212
timeout (0.4.1)
176213
tzinfo (2.0.6)
177214
concurrent-ruby (~> 1.0)
178215
webrick (1.8.1)
216+
websocket (1.2.10)
179217
websocket-driver (0.7.6)
180218
websocket-extensions (>= 0.1.0)
181219
websocket-extensions (0.1.5)
220+
xpath (3.2.0)
221+
nokogiri (~> 1.8)
182222
zeitwerk (2.6.13)
183223

184224
PLATFORMS
185225
arm64-darwin
226+
x86_64-linux
186227

187228
DEPENDENCIES
229+
appraisal
230+
capybara
188231
custom_elements-rails!
232+
importmap-rails
233+
propshaft
189234
puma
190-
sqlite3
235+
selenium-webdriver
236+
sqlite3 (~> 1.4)
191237

192238
BUNDLED WITH
193239
2.5.9

Rakefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
require "bundler/setup"
1+
APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
2+
load "rails/tasks/engine.rake"
3+
4+
load "rails/tasks/statistics.rake"
25

36
require "bundler/gem_tasks"

bin/rails

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env ruby
2+
# This command will automatically be run when you run "rails" with Rails gems
3+
# installed from the root of your application.
4+
5+
ENGINE_ROOT = File.expand_path("..", __dir__)
6+
ENGINE_PATH = File.expand_path("../lib/custom_elements/rails", __dir__)
7+
APP_PATH = File.expand_path("../test/dummy/config/application", __dir__)
8+
9+
# Set up gems listed in the Gemfile.
10+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
11+
require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"])
12+
13+
require "rails/all"
14+
require "rails/engine/commands"

custom_elements-rails.gemspec

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,7 @@ Gem::Specification.new do |spec|
1919
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
2020
end
2121

22-
spec.add_dependency "rails", ">= 7"
22+
spec.add_dependency "rails", ">= 7.0.0"
23+
24+
spec.add_development_dependency "appraisal"
2325
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "importmap-rails", "~> 1.2"
6+
gem "propshaft"
7+
gem "puma"
8+
gem "sqlite3", "~> 1.4"
9+
gem "capybara"
10+
gem "selenium-webdriver"
11+
gem "rails", "~> 7.0"
12+
13+
gemspec path: "../"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "importmap-rails", "~> 2.0"
6+
gem "propshaft"
7+
gem "puma"
8+
gem "sqlite3", "~> 1.4"
9+
gem "capybara"
10+
gem "selenium-webdriver"
11+
gem "rails", "~> 7.0"
12+
13+
gemspec path: "../"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "importmap-rails", "~> 1.2"
6+
gem "propshaft"
7+
gem "puma"
8+
gem "sqlite3", "~> 1.4"
9+
gem "capybara"
10+
gem "selenium-webdriver"
11+
gem "rails", "~> 7.1"
12+
13+
gemspec path: "../"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "importmap-rails", "~> 2.0"
6+
gem "propshaft"
7+
gem "puma"
8+
gem "sqlite3", "~> 1.4"
9+
gem "capybara"
10+
gem "selenium-webdriver"
11+
gem "rails", "~> 7.1"
12+
13+
gemspec path: "../"

lib/custom_elements/rails/railtie.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ module CustomElements
22
module Rails
33
class Railtie < ::Rails::Engine
44
initializer "custom_elements-rails.assets.precompile" do |app|
5-
app.config.assets.precompile += %w( custom_elements-rails.js )
5+
if app.config.respond_to? :assets
6+
app.config.assets.precompile += %w( custom_elements-rails.js )
7+
end
68
end
79
end
810
end
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
require "system_helper"
2+
3+
class CustomElements::IntegrationTest < ApplicationSystemTestCase
4+
test "hello_element.js connects" do
5+
visit elements_path
6+
7+
assert_text "connectedCallback(): hello_element.js"
8+
end
9+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class ElementsController < ApplicationController
2+
def show
3+
end
4+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module ElementsHelper
2+
end
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Configure your import map in config/importmap.rb. Read more: https://github.com/rails/importmap-rails
2+
import "custom_elements"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export default class extends HTMLElement {
2+
constructor() {
3+
super()
4+
}
5+
6+
connectedCallback() {
7+
this.textContent = "connectedCallback(): hello_element.js"
8+
}
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { eagerDefineCustomElementsFrom } from "custom_elements-rails"
2+
3+
eagerDefineCustomElementsFrom("custom_elements", { prefix: "app" })
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<h1>Elements#show</h1>
2+
3+
<app-hello></app-hello>

test/dummy/app/views/layouts/application.html.erb

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<%= csp_meta_tag %>
88

99
<%= stylesheet_link_tag "application" %>
10+
<%= javascript_importmap_tags %>
1011
</head>
1112

1213
<body>

test/dummy/bin/importmap

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env ruby
2+
3+
require_relative "../config/application"
4+
require "importmap/commands"

test/dummy/config/application.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Application < Rails::Application
1313
# Please, add to the `ignore` list any other `lib` subdirectories that do
1414
# not contain `.rb` files, or that should not be reloaded or eager loaded.
1515
# Common ones are `templates`, `generators`, or `middleware`, for example.
16-
config.autoload_lib(ignore: %w(assets tasks))
16+
# config.autoload_lib(ignore: %w(assets tasks))
1717

1818
# Configuration for the application, engines, and railties goes here.
1919
#

test/dummy/config/importmap.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pin "application"
2+
pin "custom_elements-rails"
3+
pin_all_from "app/javascript/custom_elements", under: "custom_elements"

test/dummy/config/routes.rb

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11
Rails.application.routes.draw do
2-
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
3-
4-
# Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.
5-
# Can be used by load balancers and uptime monitors to verify that the app is live.
6-
get "up" => "rails/health#show", as: :rails_health_check
7-
8-
# Defines the root path route ("/")
9-
# root "posts#index"
2+
resource :elements
103
end

test/dummy/vendor/javascript/.keep

Whitespace-only changes.

test/system_helper.rb

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
require "test_helper"
2+
3+
Capybara.server = :puma, { Silent: true }
4+
5+
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
6+
driven_by :selenium, using: :headless_chrome, screen_size: [1400, 1400]
7+
end

0 commit comments

Comments
 (0)