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
|
# frozen_string_literal: true
require_relative 'helper'
class TestPhoneNumberBR < Test::Unit::TestCase
include DeterministicHelper
assert_methods_are_deterministic(
FFaker::PhoneNumberBR,
:phone_number, :home_work_phone_number, :mobile_phone_number,
:international_phone_number, :international_mobile_phone_number,
:international_home_work_phone_number, :country_code
)
def setup
@tester = FFaker::PhoneNumberBR
end
def test_area_codes
assert(!@tester::AREA_CODE.empty?)
assert(@tester::AREA_CODE.sort.uniq == @tester::AREA_CODE)
@tester::AREA_CODE.each do |area_code|
assert_match(/\A[1-9]\d\z/, area_code)
end
end
def test_phone_number
10.times do
assert_match(/\A[1-9]\d\s?9?\d{4}-?\d{4}\z/, @tester.phone_number)
end
end
def test_home_work_phone_number
assert_match(/\A[1-9]\d\s?[2-5]\d{3}-?\d{4}\z/,
@tester.home_work_phone_number)
end
def test_mobile_phone_number
assert_match(/\A[1-9]\d\s?9[6-9]\d{3}-?\d{4}\z/,
@tester.mobile_phone_number)
end
def test_international_phone_number
10.times do
assert_match(/\A\+55\s?[1-9]\d\s?9?\d{4}-?\d{4}\z/,
@tester.international_phone_number)
end
end
def test_international_mobile_phone_number
assert_match(/\A\+55\s?[1-9]\d\s?9[6-9]\d{3}-?\d{4}\z/,
@tester.international_mobile_phone_number)
end
def test_international_home_work_phone_number
assert_match(/\A\+55\s?[1-9]\d\s?[2-5]\d{3}-?\d{4}\z/,
@tester.international_home_work_phone_number)
end
def test_country_code
assert_match('+55', @tester.country_code)
end
end
|