88 lines
2.6 KiB
Dart
88 lines
2.6 KiB
Dart
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_markdown_plus/flutter_markdown_plus.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'utils.dart';
|
|
|
|
void main() => defineTests();
|
|
|
|
void defineTests() {
|
|
group('Horizontal Rule', () {
|
|
testWidgets(
|
|
'3 consecutive hyphens',
|
|
(WidgetTester tester) async {
|
|
const String data = '---';
|
|
await tester.pumpWidget(boilerplate(const MarkdownBody(data: data)));
|
|
|
|
final Iterable<Widget> widgets = selfAndDescendantWidgetsOf(
|
|
find.byType(MarkdownBody),
|
|
tester,
|
|
);
|
|
expectWidgetTypes(widgets, <Type>[MarkdownBody, Container, DecoratedBox, Padding, LimitedBox, ConstrainedBox]);
|
|
},
|
|
);
|
|
|
|
testWidgets(
|
|
'5 consecutive hyphens',
|
|
(WidgetTester tester) async {
|
|
const String data = '-----';
|
|
await tester.pumpWidget(boilerplate(const MarkdownBody(data: data)));
|
|
|
|
final Iterable<Widget> widgets = selfAndDescendantWidgetsOf(
|
|
find.byType(MarkdownBody),
|
|
tester,
|
|
);
|
|
expectWidgetTypes(widgets, <Type>[MarkdownBody, Container, DecoratedBox, Padding, LimitedBox, ConstrainedBox]);
|
|
},
|
|
);
|
|
|
|
testWidgets(
|
|
'3 asterisks separated with spaces',
|
|
(WidgetTester tester) async {
|
|
const String data = '* * *';
|
|
await tester.pumpWidget(boilerplate(const MarkdownBody(data: data)));
|
|
|
|
final Iterable<Widget> widgets = selfAndDescendantWidgetsOf(
|
|
find.byType(MarkdownBody),
|
|
tester,
|
|
);
|
|
expectWidgetTypes(widgets, <Type>[MarkdownBody, Container, DecoratedBox, Padding, LimitedBox, ConstrainedBox]);
|
|
},
|
|
);
|
|
|
|
testWidgets(
|
|
'3 asterisks separated with spaces alongside text Markdown',
|
|
(WidgetTester tester) async {
|
|
const String data = '# h1\n ## h2\n* * *';
|
|
await tester.pumpWidget(boilerplate(const MarkdownBody(data: data)));
|
|
|
|
final Iterable<Widget> widgets = selfAndDescendantWidgetsOf(
|
|
find.byType(MarkdownBody),
|
|
tester,
|
|
);
|
|
expectWidgetTypes(widgets, <Type>[
|
|
MarkdownBody,
|
|
Column,
|
|
Column,
|
|
Wrap,
|
|
Text,
|
|
RichText,
|
|
SizedBox,
|
|
Column,
|
|
Wrap,
|
|
Text,
|
|
RichText,
|
|
SizedBox,
|
|
Container,
|
|
DecoratedBox,
|
|
Padding,
|
|
LimitedBox,
|
|
ConstrainedBox
|
|
]);
|
|
},
|
|
);
|
|
});
|
|
}
|