dart-exercism/phone-number/test/phone_number_test.dart

203 lines
5.3 KiB
Dart
Raw Permalink Normal View History

2024-10-14 11:37:17 +02:00
import 'package:phone_number/phone_number.dart';
import 'package:test/test.dart';
void main() {
final phoneNumber = PhoneNumber();
group('PhoneNumber', () {
test('cleans the number', () {
final result = phoneNumber.clean('(223) 456-7890');
expect(result, equals('2234567890'));
}, skip: false);
test('cleans numbers with dots', () {
final result = phoneNumber.clean('223.456.7890');
expect(result, equals('2234567890'));
}, skip: true);
test('cleans numbers with multiple spaces', () {
final result = phoneNumber.clean('223 456 7890 ');
expect(result, equals('2234567890'));
}, skip: true);
test('invalid when 9 digits', () {
expect(
() => phoneNumber.clean('123456789'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'must not be fewer than 10 digits',
),
),
);
}, skip: true);
test('invalid when 11 digits does not start with a 1', () {
expect(
() => phoneNumber.clean('22234567890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'11 digits must start with 1',
),
),
);
}, skip: true);
test('valid when 11 digits and starting with 1', () {
final result = phoneNumber.clean('12234567890');
expect(result, equals('2234567890'));
}, skip: true);
test('valid when 11 digits and starting with 1 even with punctuation', () {
final result = phoneNumber.clean('+1 (223) 456-7890');
expect(result, equals('2234567890'));
}, skip: true);
test('invalid when more than 11 digits', () {
expect(
() => phoneNumber.clean('321234567890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'must not be greater than 11 digits',
),
),
);
}, skip: true);
test('invalid with letters', () {
expect(
() => phoneNumber.clean('523-abc-7890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'letters not permitted',
),
),
);
}, skip: true);
test('invalid with punctuations', () {
expect(
() => phoneNumber.clean('523-@:!-7890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'punctuations not permitted',
),
),
);
}, skip: true);
test('invalid if area code starts with 0', () {
expect(
() => phoneNumber.clean('(023) 456-7890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'area code cannot start with zero',
),
),
);
}, skip: true);
test('invalid if area code starts with 1', () {
expect(
() => phoneNumber.clean('(123) 456-7890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'area code cannot start with one',
),
),
);
}, skip: true);
test('invalid if exchange code starts with 0', () {
expect(
() => phoneNumber.clean('(223) 056-7890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'exchange code cannot start with zero',
),
),
);
}, skip: true);
test('invalid if exchange code starts with 1', () {
expect(
() => phoneNumber.clean('(223) 156-7890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'exchange code cannot start with one',
),
),
);
}, skip: true);
test('invalid if area code starts with 0 on valid 11-digit number', () {
expect(
() => phoneNumber.clean('1 (023) 456-7890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'area code cannot start with zero',
),
),
);
}, skip: true);
test('invalid if area code starts with 1 on valid 11-digit number', () {
expect(
() => phoneNumber.clean('1 (123) 456-7890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'area code cannot start with one',
),
),
);
}, skip: true);
test('invalid if exchange code starts with 0 on valid 11-digit number', () {
expect(
() => phoneNumber.clean('1 (223) 056-7890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'exchange code cannot start with zero',
),
),
);
}, skip: true);
test('invalid if exchange code starts with 1 on valid 11-digit number', () {
expect(
() => phoneNumber.clean('1 (223) 156-7890'),
throwsA(
isA<FormatException>().having(
(e) => e.message,
'message',
'exchange code cannot start with one',
),
),
);
}, skip: true);
});
}