69 lines
1.8 KiB
Dart
69 lines
1.8 KiB
Dart
import 'package:sharedinbox/core/utils/html_utils.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
group('htmlToPlain', () {
|
|
test('returns plain text unchanged', () {
|
|
expect(htmlToPlain('Hello world'), 'Hello world');
|
|
});
|
|
|
|
test('strips simple tags', () {
|
|
expect(htmlToPlain('<b>bold</b> text'), 'bold text');
|
|
});
|
|
|
|
test('converts <br> to newline', () {
|
|
expect(htmlToPlain('line1<br>line2'), 'line1\nline2');
|
|
});
|
|
|
|
test('converts self-closing <br/> to newline', () {
|
|
expect(htmlToPlain('line1<br/>line2'), 'line1\nline2');
|
|
});
|
|
|
|
test('converts <p> to newline', () {
|
|
expect(htmlToPlain('<p>paragraph</p>'), 'paragraph');
|
|
});
|
|
|
|
test('decodes &', () {
|
|
expect(htmlToPlain('a & b'), 'a & b');
|
|
});
|
|
|
|
test('decodes < and >', () {
|
|
expect(htmlToPlain('<tag>'), '<tag>');
|
|
});
|
|
|
|
test('decodes "', () {
|
|
expect(htmlToPlain('say "hi"'), 'say "hi"');
|
|
});
|
|
|
|
test('decodes '', () {
|
|
expect(htmlToPlain('it's'), "it's");
|
|
});
|
|
|
|
test('decodes as space', () {
|
|
expect(htmlToPlain('a b'), 'a b');
|
|
});
|
|
|
|
test('trims surrounding whitespace', () {
|
|
expect(htmlToPlain(' hello '), 'hello');
|
|
});
|
|
|
|
test('handles empty string', () {
|
|
expect(htmlToPlain(''), '');
|
|
});
|
|
|
|
test('handles nested tags', () {
|
|
expect(htmlToPlain('<div><p>text</p></div>'), 'text');
|
|
});
|
|
|
|
test('real-world HTML email snippet', () {
|
|
const html = '<p>Hello <b>Alice</b>,</p>'
|
|
'<p>Please find the invoice attached.</p>'
|
|
'<p>Best regards,<br/>Bob</p>';
|
|
final result = htmlToPlain(html);
|
|
expect(result, contains('Hello Alice,'));
|
|
expect(result, contains('Best regards,'));
|
|
expect(result, contains('Bob'));
|
|
});
|
|
});
|
|
}
|