itamae-plugin-recipe-selenium 0.4.0 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48749a65c9241e3fc07de50a54b06abe87eb93bc5e9059965ed8ee9a0f289991
|
4
|
+
data.tar.gz: f746a1eb77de312b592586ba50e393da4b810398150cdcd8be1d1fcb3be86fd4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cee029419f266c394096b5d7469318015ad90d5126f66d63d709de47b55b99e526328855bbb5e53239f895b50e35c61059fcc5d96953c7d4d9f6965c027f95d6
|
7
|
+
data.tar.gz: b02cc7d086c7c900b557a84c382b2398100d01aca0c7d1a1e0685b47c4a825170c7316d6d7b32bd451e994295b24fdb0935dd9e8a7f64bba2b524415e2eb60af
|
@@ -7,8 +7,11 @@ template '/etc/yum.repos.d/google-chrome.repo' do
|
|
7
7
|
end
|
8
8
|
|
9
9
|
if ENV['CHROME_VERSION'].to_s.empty?
|
10
|
-
|
10
|
+
ENV['CHROME_VERSION'] = '117.0.5938.92'
|
11
|
+
|
12
|
+
execute "yum install -y https://dl.google.com/linux/chrome/rpm/stable/x86_64/google-chrome-stable-#{ENV['CHROME_VERSION']}-1.x86_64.rpm" do
|
11
13
|
user 'root'
|
14
|
+
not_if "which google-chrome-stable && google-chrome-stable --version | egrep 'Google Chrome (113|114|115|116|117)\.'"
|
12
15
|
end
|
13
16
|
else
|
14
17
|
execute "yum install -y https://dl.google.com/linux/chrome/rpm/stable/x86_64/google-chrome-stable-#{ENV['CHROME_VERSION']}-1.x86_64.rpm" do
|
@@ -16,8 +19,3 @@ else
|
|
16
19
|
not_if "which google-chrome-stable && google-chrome-stable --version | cut -d ' ' -f 3 | egrep \"^#{ENV['CHROME_VERSION']}$\""
|
17
20
|
end
|
18
21
|
end
|
19
|
-
|
20
|
-
execute 'yum update -y google-chrome-stable' do
|
21
|
-
user 'root'
|
22
|
-
not_if "which google-chrome-stable && google-chrome-stable --version | egrep 'Google Chrome (110|111|112|113|114)\.'"
|
23
|
-
end
|
@@ -1,4 +1,6 @@
|
|
1
|
-
require '
|
1
|
+
require 'json'
|
2
|
+
require 'net/https'
|
3
|
+
require 'uri'
|
2
4
|
|
3
5
|
module Itamae
|
4
6
|
module Plugin
|
@@ -32,41 +34,35 @@ module Itamae
|
|
32
34
|
private
|
33
35
|
|
34
36
|
def run_setup_chromedriver
|
35
|
-
host = 'chromedriver.storage.googleapis.com'
|
36
|
-
base_url = 'https://' + host
|
37
37
|
browser_version = run_command('sudo yum list | grep google-chrome-stable').stdout.split[1]
|
38
38
|
browser_version = Gem::Version.new(browser_version.to_s).segments[0..2].join('.')
|
39
39
|
|
40
|
-
driver_version_url =
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
download_url = base_url + "/#{driver_version}/chromedriver_linux64.zip"
|
47
|
-
header = Net::HTTP.start(host) { |http| http.head("/#{driver_version}/chromedriver_linux64.zip") }
|
48
|
-
etag = header['etag'][1...-1]
|
40
|
+
driver_version_url = 'https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json'
|
41
|
+
driver_versions = JSON.parse(Net::HTTP.get_response(URI(driver_version_url)).body)
|
42
|
+
driver_version_info = driver_versions['versions'].select{|hash| hash['version'].start_with?(browser_version) }.sort{|a, b| a['revision'] <=> b['revision'] }.last
|
43
|
+
driver_version = driver_version_info['version']
|
44
|
+
driver_download_url = driver_version_info['downloads']['chromedriver'].find{|hash| hash['platform'] == 'linux64' }&.[]('url')
|
49
45
|
|
50
46
|
Itamae.logger.info "browser version: #{browser_version}"
|
51
47
|
Itamae.logger.info "driver version: #{driver_version}"
|
52
|
-
Itamae.logger.
|
53
|
-
Itamae.logger.debug "etag: #{etag}"
|
48
|
+
Itamae.logger.info "driver download url: #{driver_download_url}"
|
54
49
|
|
55
50
|
run_command_if_not(
|
56
51
|
'download chromedriver',
|
57
|
-
"
|
52
|
+
"#{attributes.install_dir}chromedriver -v | grep 'ChromeDriver #{driver_version} '",
|
58
53
|
<<-COMMANDS
|
59
|
-
rm -
|
60
|
-
curl -o
|
54
|
+
rm -f chromedriver-linux64.zip
|
55
|
+
curl -o chromedriver-linux64.zip #{driver_download_url}
|
61
56
|
COMMANDS
|
62
57
|
)
|
63
58
|
|
64
59
|
run_command_if_not(
|
65
60
|
'install chromedriver',
|
66
|
-
"#{attributes.install_dir}chromedriver -v | grep 'ChromeDriver #{driver_version}'",
|
61
|
+
"#{attributes.install_dir}chromedriver -v | grep 'ChromeDriver #{driver_version} '",
|
67
62
|
<<-COMMANDS
|
68
|
-
|
69
|
-
|
63
|
+
rm -Rf chromedriver-linux64/
|
64
|
+
unzip chromedriver-linux64.zip
|
65
|
+
sudo mv -f chromedriver-linux64/chromedriver #{attributes.install_dir}
|
70
66
|
COMMANDS
|
71
67
|
)
|
72
68
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: itamae-plugin-recipe-selenium
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- y-matsuda
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: itamae
|
@@ -115,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
115
|
- !ruby/object:Gem::Version
|
116
116
|
version: '0'
|
117
117
|
requirements: []
|
118
|
-
rubygems_version: 3.3.
|
118
|
+
rubygems_version: 3.3.26
|
119
119
|
signing_key:
|
120
120
|
specification_version: 4
|
121
121
|
summary: itamae recipe for god process monitoring framework
|