Sha256: fc4ee4b20d8ea6ccc6266f70bdb4773bebc7da24dc6654884c594915087df90d

Contents?: true

Size: 719 Bytes

Versions: 1

Compression:

Stored size: 719 Bytes

Contents

require 'minitest/autorun'
require 'legitbot'

class AppleTest < Minitest::Test
  def test_valid_ip
    ip = "17.58.98.60"
    match = Legitbot::Apple.new(ip)
    assert match.valid?, msg: "#{ip} is a valid Applebot IP"
  end

  def test_invalid_ip
    ip = "127.0.0.1"
    match = Legitbot::Apple.new(ip)
    assert match.fake?, msg: "#{ip} is a fake Applebot IP"
  end

  def test_user_agent
    bot = Legitbot.bot("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)", "17.58.98.60")
    assert_equal "Apple", bot.detected_as
    assert bot.valid?, msg: "A valid Applebot User-agent and IP"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
legitbot-0.1.2 test/apple_test.rb