forked from timber/timber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-timber-attachment.php
309 lines (267 loc) · 10.6 KB
/
test-timber-attachment.php
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<?php
use Timber\Attachment;
use Timber\Image;
use Timber\Timber;
use Timber\URLHelper;
/**
* @group posts-api
* @group attachments
*/
class TestTimberAttachment extends TimberAttachment_UnitTestCase
{
public function testGetAttachmentByUrl()
{
$pid = $this->factory->post->create();
$iid = self::get_attachment($pid, 'dummy-pdf.pdf');
$url = Timber::get_post($iid)->src();
$attachment = Timber::get_attachment_by('url', $url);
$this->assertInstanceOf(Attachment::class, $attachment);
$this->assertEquals('dummy-pdf.pdf', basename($attachment->src()));
}
public function testGetAttachmentByPath()
{
$pid = $this->factory->post->create();
$iid = self::get_attachment($pid, 'dummy-pdf.pdf');
$path = URLHelper::url_to_file_system(Timber::get_post($iid)->src());
$attachment = Timber::get_attachment_by('path', $path);
$this->assertInstanceOf(Attachment::class, $attachment);
$this->assertEquals('dummy-pdf.pdf', basename($attachment->src()));
}
public function testGetAttachmentByPathRelative()
{
$pid = $this->factory->post->create();
$iid = self::get_attachment($pid, 'dummy-pdf.pdf');
$path = URLHelper::url_to_file_system(Timber::get_post($iid)->src());
$attachment = Timber::get_attachment_by('path', str_replace(ABSPATH, '/', $path));
$this->assertInstanceOf(Attachment::class, $attachment);
$this->assertEquals('dummy-pdf.pdf', basename($attachment->src()));
}
public function testGetAttachmentBy()
{
$pid = $this->factory->post->create();
$iid = self::get_attachment($pid, 'dummy-pdf.pdf');
$url = Timber::get_post($iid)->src();
$path = URLHelper::url_to_file_system($url);
$this->assertInstanceOf(Attachment::class, Timber::get_attachment_by($url));
$this->assertInstanceOf(Attachment::class, Timber::get_attachment_by($path));
}
public function testGetImageByUrl()
{
$pid = $this->factory->post->create();
$iid = self::get_attachment($pid, 'jarednova.jpeg');
$url = Timber::get_post($iid)->src();
$this->assertInstanceOf(Image::class, Timber::get_attachment_by($url));
}
public function testGetAttachmentByUrlNonsense()
{
// Nonsense URL
$this->assertNull(Timber::get_attachment_by('url', 'life, uh, finds a way'));
// Nonsense Path
$this->assertNull(Timber::get_attachment_by('path', 'must go faster'));
// Nonsense single arg
$this->assertNull(Timber::get_attachment_by('you two, dig up, dig up dinosaurs'));
}
/**
* @expectedIncorrectUsage Timber::get_attachment_by()
*/
public function testGetAttachmentByUrlDoingItWrong()
{
$this->assertNull(Timber::get_attachment_by('url'));
}
/**
* @expectedIncorrectUsage Timber::get_attachment_by()
*/
public function testGetAttachmentByPathDoingItWrong()
{
$this->assertNull(Timber::get_attachment_by('path'));
}
public function testAttachmentByExtension()
{
// Add support for "uploading" WEBP images.
$this->add_filter_temporarily('upload_mimes', function ($types) {
return array_merge($types, [
'webp' => 'image/webp',
]);
});
// Create 7 attachment posts with different extensions.
$pids = $this->factory->post->create_many(7, [
'post_type' => 'attachment',
]);
$attachment_ids = array_map([self::class, 'get_attachment'], $pids, [
'hebrew.jpg',
'jarednova.jpeg',
'robocop.gif',
'flag.png',
'mountains.webp',
'dummy-pdf.pdf',
'white-castle.tif',
]);
// Instantiate our various attachment posts.
$attachments = array_map([Timber::class, 'get_post'], $attachment_ids);
$this->assertInstanceOf(Image::class, $attachments[0]); // hebrew.jpg
$this->assertInstanceOf(Image::class, $attachments[1]); // jarednova.jpeg
$this->assertInstanceOf(Image::class, $attachments[2]); // robocop.gif
$this->assertInstanceOf(Image::class, $attachments[3]); // flag.png
$this->assertInstanceOf(Image::class, $attachments[4]); // mountains.webp
// PDFs and TIFs should be returned as Attachments but NOT images.
$this->assertEquals(Attachment::class, get_class($attachments[5]));
$this->assertEquals(Attachment::class, get_class($attachments[6]));
}
public function testAttachmentWithExtentionFilter()
{
// Add support for "uploading" WEBP images.
$this->add_filter_temporarily('upload_mimes', function ($types) {
return array_merge($types, [
'tiff|tif' => 'image/tiff',
'webp' => 'image/webp',
]);
});
// Create 7 attachment posts with different extensions.
$pids = $this->factory->post->create_many(7, [
'post_type' => 'attachment',
]);
$attachment_ids = array_map([self::class, 'get_attachment'], $pids, [
'hebrew.jpg',
'jarednova.jpeg',
'robocop.gif',
'flag.png',
'mountains.webp',
'dummy-pdf.pdf',
'white-castle.tif',
]);
$this->add_filter_temporarily('timber/post/image_extensions', function () {
// ONLY these extensions should be considered images.
return ['webp', 'pdf', 'tif'];
});
// Instantiate our various attachment posts.
$attachments = array_map([Timber::class, 'get_post'], $attachment_ids);
$this->assertEquals(Attachment::class, get_class($attachments[0])); // hebrew.jpg
$this->assertEquals(Attachment::class, get_class($attachments[1])); // jarednova.jpeg
$this->assertEquals(Attachment::class, get_class($attachments[2])); // robocop.gif
$this->assertEquals(Attachment::class, get_class($attachments[3])); // flag.png
$this->assertEquals(Image::class, get_class($attachments[4])); // mountains.webp
$this->assertEquals(Image::class, get_class($attachments[5])); // dummy-pdf.pdf
$this->assertEquals(Image::class, get_class($attachments[6])); // white-castle.tif
}
public function testAttachmentLink()
{
self::setPermalinkStructure();
$attach = self::get_attachment();
$image = Timber::get_post($attach);
$links = [];
$links[] = 'http://example.org/' . $image->post_name . '/';
$links[] = 'http://example.org/?attachment_id=' . $image->ID;
$this->assertContains($image->link(), $links);
}
public function testAttachmentInitWithWP_Post()
{
$aid = self::get_attachment();
$wp_post = get_post($aid);
$attach = Timber::get_post($wp_post);
$this->assertEquals($wp_post->ID, $attach->id);
}
public function testAttachmentAcfArray()
{
$post_id = $this->factory->post->create();
$filename = self::copyTestAttachment('arch.jpg');
$attachment = [
'post_mime_type' => 'image/jpeg',
'post_title' => preg_replace('/\.[^.]+$/', '', basename($filename)),
'post_content' => '',
'post_status' => 'inherit',
];
$attach_id = wp_insert_attachment($attachment, $filename, $post_id);
$image = Timber::get_post([
'ID' => $attach_id,
]);
$path = explode('/', $image->file);
$this->assertEquals('arch.jpg', $path[2]);
}
public function testInitFromID()
{
$pid = $this->factory->post->create();
$filename = self::copyTestAttachment('arch.jpg');
$attachment = [
'post_title' => 'The Arch',
'post_content' => '',
];
$iid = wp_insert_attachment($attachment, $filename, $pid);
$attachment = Timber::get_post($iid);
$this->assertEquals('The Arch', $attachment->title());
}
public function testPathInfo()
{
$pid = $this->factory->post->create();
$filename = self::copyTestAttachment('arch.jpg');
$attachment = [
'post_title' => 'The Arch',
'post_content' => '',
];
$iid = wp_insert_attachment($attachment, $filename, $pid);
$image = Timber::get_attachment_by('path', $filename);
$path_parts = $image->pathinfo();
$this->assertEquals('jpg', $path_parts['extension']);
}
public function testTimberAttachmentSrc()
{
$iid = self::get_attachment();
$attachment = Timber::get_post($iid);
$post = get_post($iid);
$str = '{{ get_post(post).src }}';
$result = Timber::compile_string($str, [
'post' => $post,
]);
$this->assertEquals($attachment->src(), $result);
}
// Test document like pdf, docx
public function testAttachmentSrc()
{
$pid = $this->factory->post->create();
$iid = self::get_attachment($pid, 'dummy-pdf.pdf');
$str = '{{ get_post(post).src }}';
$result = Timber::compile_string($str, [
'post' => $iid,
]);
$this->assertEquals('http://example.org/wp-content/uploads/' . date('Y/m') . '/dummy-pdf.pdf', $result);
}
public function testFileSize()
{
$pid = $this->factory->post->create();
$iid = self::get_attachment($pid, 'dummy-pdf.pdf');
$attachment = Timber::get_post($iid);
$this->assertSame(16555, $attachment->size());
}
public function testFileSizeMissingInMetadata()
{
$pid = $this->factory->post->create();
$iid = self::get_attachment($pid, 'dummy-pdf.pdf', false);
$attachment = Timber::get_post($iid);
$this->assertSame(16555, $attachment->size());
}
public function testFileExtension()
{
$pid = $this->factory->post->create();
$iid = self::get_attachment($pid, 'dummy-pdf.pdf');
$str = '{{ get_post(post).extension }}';
$result = Timber::compile_string($str, [
'post' => $iid,
]);
$this->assertEquals('pdf', $result);
}
/**
* @ticket https://github.com/timber/timber/issues/2607
* @return void
*/
public function testAttachmentCaption()
{
$caption = 'Hummingbirds can’t walk.';
$post_id = $this->factory->post->create();
$attachment_id = self::get_attachment($post_id, 'dummy-pdf.pdf');
wp_update_post([
'ID' => $attachment_id,
'post_excerpt' => $caption,
]);
$attachment = Timber::get_post($attachment_id);
$this->assertEquals($caption, $attachment->caption());
}
}