-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# frozen_string_literal: true | ||
|
||
module Legitbot # :nodoc: | ||
# https://about.you.com/youbot/ | ||
class You < BotMatch | ||
ip_ranges %w[ | ||
20.59.40.22 | ||
] | ||
end | ||
|
||
rule Legitbot::You, %w[YouBot/] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'minitest/autorun' | ||
require 'legitbot' | ||
|
||
class YouTest < Minitest::Test | ||
def test_malicious_ip | ||
ip = '20.59.41.22' | ||
match = Legitbot::You.new ip | ||
refute_predicate match, :valid? | ||
end | ||
|
||
def test_valid_ip | ||
ip = '20.59.40.22' | ||
match = Legitbot::You.new ip | ||
assert_predicate match, :valid? | ||
end | ||
|
||
def test_malicious_ua | ||
bot = Legitbot.bot( | ||
'Mozilla/5.0 (compatible; YouBot/1.0; +https://about.you.com/youbot/)', | ||
'20.59.41.22' | ||
) | ||
assert bot | ||
refute_predicate bot, :valid? | ||
end | ||
|
||
def test_valid_ua | ||
bot = Legitbot.bot( | ||
'Mozilla/5.0 (compatible; YouBot/1.0; +https://about.you.com/youbot/)', | ||
'20.59.40.22' | ||
) | ||
assert bot | ||
assert_predicate bot, :valid? | ||
end | ||
end |