File Coverage

blib/lib/Number/Phone/StubCountry/TC.pm
Criterion Covered Total %
statement 20 21 100.0
branch 2 2 100.0
condition n/a
subroutine 6 7 100.0
pod 2 2 100.0
total 30 32 100.0


line stmt bran cond sub pod time code
1             # automatically generated file, don't edit
2              
3              
4              
5             # Copyright 2023 David Cantrell, derived from data from libphonenumber
6             # http://code.google.com/p/libphonenumber/
7             #
8             # Licensed under the Apache License, Version 2.0 (the "License");
9             # you may not use this file except in compliance with the License.
10             # You may obtain a copy of the License at
11             #
12             # http://www.apache.org/licenses/LICENSE-2.0
13             #
14             # Unless required by applicable law or agreed to in writing, software
15             # distributed under the License is distributed on an "AS IS" BASIS,
16             # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17             # See the License for the specific language governing permissions and
18             # limitations under the License.
19             package Number::Phone::StubCountry::TC;
20 2     2   1104 use base qw(Number::Phone::StubCountry);
  2         9  
  2         219  
21              
22 2     2   24 use strict;
  2         5  
  2         53  
23 2     2   13 use warnings;
  2         5  
  2         60  
24 2     2   13 use utf8;
  2         7  
  2         15  
25             our $VERSION = 1.20230903131448;
26              
27             my $formatters = [
28             {
29             'format' => '$1-$2',
30             'leading_digits' => '310',
31             'pattern' => '(\\d{3})(\\d{4})'
32             },
33             {
34             'format' => '$1-$2',
35             'intl_format' => 'NA',
36             'leading_digits' => '
37             [24-9]|
38             3(?:
39             [02-9]|
40             1[1-9]
41             )
42             ',
43             'pattern' => '(\\d{3})(\\d{4})'
44             },
45             {
46             'format' => '($1) $2-$3',
47             'intl_format' => '$1-$2-$3',
48             'leading_digits' => '[2-9]',
49             'pattern' => '(\\d{3})(\\d{3})(\\d{4})'
50             }
51             ];
52              
53             my $validators = {
54             'fixed_line' => '
55             649(?:
56             266|
57             712|
58             9(?:
59             4\\d|
60             50
61             )
62             )\\d{4}
63             ',
64             'geographic' => '
65             649(?:
66             266|
67             712|
68             9(?:
69             4\\d|
70             50
71             )
72             )\\d{4}
73             ',
74             'mobile' => '
75             649(?:
76             2(?:
77             3[129]|
78             4[1-79]
79             )|
80             3\\d\\d|
81             4[34][1-3]
82             )\\d{4}
83             ',
84             'pager' => '',
85             'personal_number' => '
86             52(?:
87             3(?:
88             [2-46-9][02-9]\\d|
89             5(?:
90             [02-46-9]\\d|
91             5[0-46-9]
92             )
93             )|
94             4(?:
95             [2-478][02-9]\\d|
96             5(?:
97             [034]\\d|
98             2[024-9]|
99             5[0-46-9]
100             )|
101             6(?:
102             0[1-9]|
103             [2-9]\\d
104             )|
105             9(?:
106             [05-9]\\d|
107             2[0-5]|
108             49
109             )
110             )
111             )\\d{4}|
112             52[34][2-9]1[02-9]\\d{4}|
113             5(?:
114             00|
115             2[125-9]|
116             33|
117             44|
118             66|
119             77|
120             88
121             )[2-9]\\d{6}
122             ',
123             'specialrate' => '(900[2-9]\\d{6})',
124             'toll_free' => '
125             8(?:
126             00|
127             33|
128             44|
129             55|
130             66|
131             77|
132             88
133             )[2-9]\\d{6}
134             ',
135             'voip' => '
136             649(?:
137             71[01]|
138             966
139             )\\d{4}
140             '
141             };
142 2     2   334 use Number::Phone::NANP::Data;
  2         6  
  2         355  
143             sub areaname {
144             # uncoverable subroutine - no data for most NANP countries
145             # uncoverable statement
146 0     0 1 0 Number::Phone::NANP::Data::_areaname('1'.shift()->{number}); }
147              
148             sub new {
149 13     13 1 31 my $class = shift;
150 13         25 my $number = shift;
151 13         106 $number =~ s/(^\+1|\D)//g;
152 13         73 my $self = bless({ country_code => '1', number => $number, formatters => $formatters, validators => $validators, }, $class);
153 13 100       78 return $self->is_valid() ? $self : undef;
154             }
155             1;