Sha256: 64feaac4ea97233460df3b137b112741cef201966769498736b58da238fef468

Contents?: true

Size: 1.42 KB

Versions: 24

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true

require "test_helper"
require "public_suffix"

# This test runs against the current PSL file and ensures
# the definitions satisfies the test suite.
class PslTest < Minitest::Test

  ROOT = File.expand_path("..", __dir__)

  # rubocop:disable Security/Eval
  def self.tests
    File.readlines(File.join(ROOT, "test/tests.txt")).map do |line|
      line = line.strip
      next if line.empty?
      next if line.start_with?("//")

      input, output = line.split(", ")

      # handle the case of eval("null"), it must be eval("nil")
      input  = "nil" if input  == "null"
      output = "nil" if output == "null"

      input  = eval(input)
      output = eval(output)
      [input, output]
    end
  end
  # rubocop:enable Security/Eval


  def test_valid
    # Parse the PSL and run the tests
    data = File.read(PublicSuffix::List::DEFAULT_LIST_PATH)
    PublicSuffix::List.default = PublicSuffix::List.parse(data)

    failures = []
    self.class.tests.each do |input, output|
      # Punycode domains are not supported ATM
      next if input =~ /xn--/

      domain = PublicSuffix.domain(input) rescue nil
      failures << [input, output, domain] if output != domain
    end

    message = "The following #{failures.size} tests fail:\n"
    failures.each { |i, o, d| message += format("Expected %s to be %s, got %s\n", i.inspect, o.inspect, d.inspect) }
    assert_equal 0, failures.size, message
  end

end

Version data entries

24 entries across 24 versions & 8 rubygems

Version Path
tdiary-5.2.4 vendor/bundle/ruby/3.1.0/gems/public_suffix-5.0.0/test/psl_test.rb
cloudsmith-api-1.142.3 vendor/bundle/ruby/2.6.0/gems/public_suffix-5.0.0/test/psl_test.rb
tdiary-5.2.3 vendor/bundle/ruby/3.1.0/gems/public_suffix-5.0.0/test/psl_test.rb
public_suffix-5.0.0 test/psl_test.rb