File: bm_find.rb

package info (click to toggle)
ruby-public-suffix 3.0.3%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 284 kB
  • sloc: ruby: 1,431; makefile: 22
file content (66 lines) | stat: -rw-r--r-- 1,728 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
require 'benchmark'
require_relative "../../lib/public_suffix"

NAME_SHORT  = "example.de"
NAME_MEDIUM = "www.subdomain.example.de"
NAME_LONG   = "one.two.three.four.five.example.de"
NAME_WILD   = "one.two.three.four.five.example.bd"
NAME_EXCP   = "one.two.three.four.five.www.ck"

IAAA = "www.example.ac"
IZZZ = "www.example.zone"

PAAA = "one.two.three.four.five.example.beep.pl"
PZZZ = "one.two.three.four.five.example.now.sh"

JP   = "www.yokoshibahikari.chiba.jp"
IT   = "www.example.it"
COM  = "www.example.com"

TIMES = (ARGV.first || 50_000).to_i

# Initialize
PublicSuffixList = PublicSuffix::List.default
PublicSuffixList.find("example.com")

Benchmark.bmbm(25) do |x|
  x.report("NAME_SHORT") do
    TIMES.times { PublicSuffixList.find(NAME_SHORT) != nil }
  end
  x.report("NAME_MEDIUM") do
    TIMES.times { PublicSuffixList.find(NAME_MEDIUM) != nil }
  end
  x.report("NAME_LONG") do
    TIMES.times { PublicSuffixList.find(NAME_LONG) != nil }
  end
  x.report("NAME_WILD") do
    TIMES.times { PublicSuffixList.find(NAME_WILD) != nil }
  end
  x.report("NAME_EXCP") do
    TIMES.times { PublicSuffixList.find(NAME_EXCP) != nil }
  end

  x.report("IAAA") do
    TIMES.times { PublicSuffixList.find(IAAA) != nil }
  end
  x.report("IZZZ") do
    TIMES.times { PublicSuffixList.find(IZZZ) != nil }
  end

  x.report("PAAA") do
    TIMES.times { PublicSuffixList.find(PAAA) != nil }
  end
  x.report("PZZZ") do
    TIMES.times { PublicSuffixList.find(PZZZ) != nil }
  end

  x.report("JP") do
    TIMES.times { PublicSuffixList.find(JP) != nil }
  end
  x.report("IT") do
    TIMES.times { PublicSuffixList.find(IT) != nil }
  end
  x.report("COM") do
    TIMES.times { PublicSuffixList.find(COM) != nil }
  end
end