Sha256: 91bfa306d6315298254f611894c387a0143150a29d5758db3d96532899857a74
Contents?: true
Size: 1.37 KB
Versions: 8
Compression:
Stored size: 1.37 KB
Contents
# frozen_string_literal: true require_relative 'test_helper' class FacebookTest < Minitest::Test def test_valid_ip ip = '69.63.186.89' match = Legitbot::Facebook.new(ip) assert_predicate match, :valid? ip = '69.171.251.1' match = Legitbot::Facebook.new(ip) assert_predicate match, :valid? end def test_invalid_ip ip = '127.0.0.1' match = Legitbot::Facebook.new(ip) assert_predicate match, :fake? end def test_user_agent1 Legitbot.bot( 'facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)', '31.13.76.56' ) do |bot| assert_equal :facebook, bot.detected_as assert_predicate bot, :valid? end end def test_user_agent2 Legitbot.bot( 'facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)', '173.252.87.8' ) do |bot| assert_equal :facebook, bot.detected_as assert_predicate bot, :valid? end end # rubocop:disable Layout/LineLength def test_user_agent3 Legitbot.bot( 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0', '92.243.181.7' ) do |bot| assert_includes %i[facebook twitter], bot.detected_as assert_predicate bot, :fake? end end # rubocop:enable Layout/LineLength end
Version data entries
8 entries across 8 versions & 1 rubygems