mangayomi-mirror/epubx/test/ref_entities/epub_chapter_ref_test.dart
2025-05-04 23:45:46 +02:00

107 lines
3.4 KiB
Dart

library epubreadertest;
import 'package:archive/archive.dart';
import 'package:epubx/epub.dart';
import 'package:epubx/src/ref_entities/epub_chapter_ref.dart';
import 'package:epubx/src/ref_entities/epub_text_content_file_ref.dart';
import 'package:test/test.dart';
main() async {
var arch = new Archive();
var bookRef = new EpubBookRef(arch);
var contentFileRef = new EpubTextContentFileRef(bookRef);
var reference = new EpubChapterRef(contentFileRef);
reference
..Anchor = "anchor"
..ContentFileName = "orthros"
..SubChapters = []
..Title = "A New Look at Chapters";
EpubBookRef bookRef2;
EpubChapterRef testChapterRef;
setUp(() async {
var arch2 = new Archive();
bookRef2 = new EpubBookRef(arch2);
var contentFileRef2 = new EpubTextContentFileRef(bookRef2);
testChapterRef = new EpubChapterRef(contentFileRef2);
testChapterRef
..Anchor = "anchor"
..ContentFileName = "orthros"
..SubChapters = []
..Title = "A New Look at Chapters";
});
tearDown(() async {
testChapterRef = null;
bookRef2 = null;
});
group("EpubChapterRef", () {
group(".equals", () {
test("is true for equivalent objects", () async {
expect(testChapterRef, equals(reference));
});
test("is false when Anchor changes", () async {
testChapterRef.Anchor = "NotAnAnchor";
expect(testChapterRef, isNot(reference));
});
test("is false when ContentFileName changes", () async {
testChapterRef.ContentFileName = "NotOrthros";
expect(testChapterRef, isNot(reference));
});
test("is false when SubChapters changes", () async {
var subchapterContentFileRef = new EpubTextContentFileRef(bookRef2);
var chapter = new EpubChapterRef(subchapterContentFileRef);
chapter
..Title = "A Brave new Epub"
..ContentFileName = "orthros.txt";
testChapterRef.SubChapters = [chapter];
expect(testChapterRef, isNot(reference));
});
test("is false when Title changes", () async {
testChapterRef.Title = "A Boring Old World";
expect(testChapterRef, isNot(reference));
});
});
group(".hashCode", () {
test("is true for equivalent objects", () async {
expect(testChapterRef.hashCode, equals(reference.hashCode));
});
test("is true for equivalent objects", () async {
expect(testChapterRef.hashCode, equals(reference.hashCode));
});
test("is false when Anchor changes", () async {
testChapterRef.Anchor = "NotAnAnchor";
expect(testChapterRef.hashCode, isNot(reference.hashCode));
});
test("is false when ContentFileName changes", () async {
testChapterRef.ContentFileName = "NotOrthros";
expect(testChapterRef.hashCode, isNot(reference.hashCode));
});
test("is false when SubChapters changes", () async {
var subchapterContentFileRef = new EpubTextContentFileRef(bookRef2);
var chapter = new EpubChapterRef(subchapterContentFileRef);
chapter
..Title = "A Brave new Epub"
..ContentFileName = "orthros.txt";
testChapterRef.SubChapters = [chapter];
expect(testChapterRef, isNot(reference));
});
test("is false when Title changes", () async {
testChapterRef.Title = "A Boring Old World";
expect(testChapterRef.hashCode, isNot(reference.hashCode));
});
});
});
}