aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/Thumb/EpubthumbTest.php
blob: d381d940e88cea0624f3e1948aa1d1c06bf2e500 (plain) (blame)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
/*
 * SPDX-FileCopyrightText: 2024 Hubzilla Community
 * SPDX-FileContributor: Harald Eilertsen
 *
 * SPDX-License-Identifier: MIT
 */

namespace Zotlabs\Tests\Unit\Thumbs;

use PHPUnit\Framework\Attributes\{AfterClass, Before, BeforeClass};
use Zotlabs\Thumbs\Epubthumb;
use Zotlabs\Tests\Unit\UnitTestCase;

use ZipArchive;

class EpubthumbTest extends UnitTestCase {
	private const TMPDIR = __DIR__ . '/tmp';

	private Epubthumb	$thumbnailer;

	/**
	 * Create a temp dir to use for the tests in this class.
	 */
	#[BeforeClass]
	static function setupTmpDir(): void {
		if (!is_dir(self::TMPDIR)) {
			mkdir(self::TMPDIR);
		}
	}

	/**
	 * Clean up and remove the temp dir after the tests.
	 */
	#[AfterClass]
	static function cleanupTmpDir(): void {
		$files = scandir(self::TMPDIR);
		if ($files !== false) {
			foreach($files as $f) {
				if ($f[0] !== '.') {
					unlink(self::TMPDIR . '/' . $f);
				}
			}
		}
		rmdir(self::TMPDIR);
	}

	/**
	 * Create the thumbnailer object for tests.
	 *
	 * This is run before each test, so that each test has it's own
	 * instance of the thumbnailer.
	 */
	#[Before]
	function createThumbnailer(): void {
		$this->thumbnailer = new Epubthumb();
	}

	/*
	 * Tests
	 */

	public function testEpubThumbMatch(): void {
		$this->assertTrue($this->thumbnailer->Match('application/epub+zip'));
		$this->assertFalse($this->thumbnailer->Match('application/zip'));
	}

	public function testNoThumbnailCreatedForFileThatDontExist(): void {
		$this->checkCreateThumbnail(self::TMPDIR . '/nonexisting.epub', false);
	}

	public function testNoThumbnailCreatedIfNotAZipArchive(): void {
		$filename = self::TMPDIR . '/notazip.epub';

		file_put_contents($filename, 'This is not a ZIP file!');

		$this->checkCreateThumbnail($filename, false);
	}

	public function testNoThumbnailCreatedIfInvalidEpub(): void {
		$filename = self::TMPDIR . '/nocontainer.epub';

		$epub = new ZipArchive();
		$epub->open($filename, ZipArchive::CREATE);
		$epub->addFromString('somefile.txt', 'It was a dark an stormy night...');
		$epub->close();

		$this->checkCreateThumbnail($filename, false);
	}

	public function testNoThumbnailCreatedIfCoverFileMissing(): void {
		$filename = self::TMPDIR . '/good.epub';

		$epub = new ZipArchive();
		$epub->open($filename, ZipArchive::CREATE);
		$this->addEpubContainer($epub);
		$this->addEpubPackage($epub);
		$epub->close();

		$this->checkCreateThumbnail($filename, false);
	}

	public function testCreateCoverFromEpub(): void {
		$filename = self::TMPDIR . '/good.epub';

		$epub = new ZipArchive();
		$epub->open($filename, ZipArchive::CREATE);
		$this->addEpubContainer($epub);
		$this->addEpubPackage($epub);
		$epub->addFile(PROJECT_BASE . '/images/red-koala.png', 'EPUB/cover.png');
		$epub->close();

		$this->checkCreateThumbnail($filename, true);
	}

	/*
	 * Helper functions
	 */

	private function checkCreateThumbnail(string $filename, bool $expectThumbnail): void {
		$attach = [ 'content' => $filename ];
		$this->thumbnailer->Thumb($attach, 0);

		$this->assertEquals($expectThumbnail, file_exists($filename . '.thumb'));
	}

	private function addEpubContainer(ZipArchive $epub): void {
		$xml = <<<XML
			<?xml version="1.0" encoding="UTF-8"?>
			<container version="1.0" xmlns="urn:oasis:names:tc:opendocument:xmlns:container">
			  <rootfiles>
				<rootfile full-path="EPUB/package.opf" media-type="application/oebps-package+xml"/>
			  </rootfiles>
			</container>
			XML;

		$epub->addEmptyDir('META-INF');
		$epub->addFromString('META-INF/container.xml', $xml);
	}

	private function addEpubPackage(ZipArchive $epub): void {
		$xml = <<<XML
			<?xml version="1.0" encoding="UTF-8"?>
			<package xmlns="http://www.idpf.org/2007/opf" version="3.0" unique-identifier="pub-identifier">
				<manifest>
					<item
						properties="cover-image"
						id="ci"
						href="cover.png"
						media-type="image/png" />
				</manifest>
			</package>
			XML;

		$epub->addEmptyDir('EPUB');
		$epub->addFromString('EPUB/package.opf', $xml);
	}
}