1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
#! /usr/bin/env ruby
# frozen_string_literal: true
#
# this script is intended to run as part of the CI test suite.
#
# it ensures that nokogumbo can install and run using the installed nokogiri gem.
#
# this file isn't in the `test/` subdirectory because it's intended to be run standalone against an
# installed gem (and not against the source code or behavior of the gem itself).
#
if RUBY_PLATFORM.include?("java")
puts "Skip: Nokogumbo does not support JRuby"
exit 0
end
if Gem::Requirement.new(">= 3.2.0").satisfied_by?(Gem::Version.new(RUBY_VERSION))
puts "Skip: Nokogumbo does not support Ruby #{RUBY_VERSION}"
exit 0
end
# this line needs to come before the bundler bit, to assert that we're running against an
# already-installed version (and not some other version that bundler/inline might install if it came
# first)
gemspec = Gem::Specification.find_all_by_name("nokogiri").sort_by(&:version).last
raise "could not find installed gem" unless gemspec
require "bundler/inline"
nokogumbo_version = if /\d+\.\d+\.\d+/.match?(ARGV[0])
ARGV[0]
end
gemfile(true) do
source "https://rubygems.org"
gem "minitest"
gem "minitest-reporters"
gem "nokogiri", "=#{gemspec.version}"
if nokogumbo_version
gem "nokogumbo", "=#{nokogumbo_version}"
else
gem "nokogumbo"
end
end
nokogumbo_gemspec = Gem::Specification.find_by_name("nokogumbo")
require "nokogumbo"
require "yaml"
if ARGV.include?("-v")
puts "---------- Nokogiri version info ----------"
puts Nokogiri::VERSION_INFO.to_yaml
puts
puts "---------- Nokogiri installed gemspec ----------"
puts gemspec.to_ruby
puts
puts "---------- Nokogumbo installed gemspec ----------"
puts nokogumbo_gemspec.to_ruby
puts
end
require "minitest/autorun"
require "minitest/reporters"
Minitest::Reporters.use!([Minitest::Reporters::SpecReporter.new])
puts "Testing #{gemspec.full_name} installed in #{gemspec.base_dir}"
describe gemspec.full_name do
it "works" do
doc = Nokogiri::HTML5::Document.parse("<div>ahoy</div>")
assert(doc)
assert_equal("ahoy", doc.at_css("/html/body/div").text)
end
end
|