Sha256: cbb37210bd96950223ea33eab1ba6c94af880545d7563c0a2ae6512d9e0f4882

Contents?: true

Size: 817 Bytes

Versions: 20

Compression:

Stored size: 817 Bytes

Contents

# frozen_string_literal: true

require_relative 'test_helper'

class AhrefsTest < Minitest::Test
  include Minitest::Hooks
  include DnsServerMock

  def test_malicious_ip
    ip = '149.210.164.47'
    match = Legitbot::Ahrefs.new ip

    refute_predicate match, :valid?
  end

  def test_valid_ip
    ip = '54.36.148.0'
    match = Legitbot::Ahrefs.new ip

    assert_predicate match, :valid?
  end

  def test_malicious_ua
    bot = Legitbot.bot(
      'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)',
      '149.210.164.47'
    )

    assert bot
    refute_predicate bot, :valid?
  end

  def test_valid_ua
    bot = Legitbot.bot(
      'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)',
      '54.36.148.0'
    )

    assert bot
    assert_predicate bot, :valid?
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
legitbot-1.11.6 test/ahrefs_test.rb
legitbot-1.11.5 test/ahrefs_test.rb
legitbot-1.11.4 test/ahrefs_test.rb
legitbot-1.11.3 test/ahrefs_test.rb
legitbot-1.11.2 test/ahrefs_test.rb
legitbot-1.11.1 test/ahrefs_test.rb
legitbot-1.11.0 test/ahrefs_test.rb
legitbot-1.10.6 test/ahrefs_test.rb
legitbot-1.10.5 test/ahrefs_test.rb
legitbot-1.10.4 test/ahrefs_test.rb
legitbot-1.10.3 test/ahrefs_test.rb
legitbot-1.10.1 test/ahrefs_test.rb
legitbot-1.10.0 test/ahrefs_test.rb
legitbot-1.9.4 test/ahrefs_test.rb
legitbot-1.9.3 test/ahrefs_test.rb
legitbot-1.9.2 test/ahrefs_test.rb
legitbot-1.9.1 test/ahrefs_test.rb
legitbot-1.9.0 test/ahrefs_test.rb
legitbot-1.8.0 test/ahrefs_test.rb
legitbot-1.7.3 test/ahrefs_test.rb