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
|
<?php
/**
* @ingroup timedmedia
* @author dale
* @group medium
*/
class TestVideoThumbnail extends ApiTestCaseVideoUpload {
/**
* Once video files are uploaded test thumbnail generating
*
* @dataProvider mediaFilesProvider
* Broken as per bug 61877
* @group Broken
*/
function testApiThumbnails( $file ){
// Upload the file to the mediaWiki system
$result = $this->uploadFile( $file);
// Do a API request and check for valid thumbnails:
$fileName = basename( $file['filePath'] );
$params = array(
'action' => 'query',
'titles' => 'File:' . $fileName,
'prop' => 'imageinfo',
'iiprop' => "url|size|thumbmime",
);
// Do a request for a small ( 200px ) thumbnail
list($result,,) = $this->doApiRequest(
array_merge( $params, array(
'iiurlwidth' => '200'
)
)
);
// Check The thumbnail output:
$this->assertTrue( isset( $result['query'] ) );
$page = current( $result['query']['pages'] );
$this->assertTrue( isset( $page['imageinfo'] ) );
$imageInfo = current( $page['imageinfo'] );
// Make sure we got a 200 wide pixel image:
$this->assertEquals( 200, ( int )$imageInfo['thumbwidth'] );
// Thumbnails should be image/jpeg:
$this->assertEquals( 'image/jpeg', $imageInfo['thumbmime'] );
// Make sure the thumbnail url is valid and the correct size ( assuming php has getimagesize function)
if( function_exists( 'getimagesize' ) ){
list($width ,,,) = getimagesize ( $imageInfo[ 'thumburl'] );
$this->assertEquals( 200, $width );
}
/**
* We combine tests because fixtures don't play well with dataProvider
* see README for more info
*/
// Test a larger thumbnail with 1 second time offset
list( $result,, ) = $this->doApiRequest(
array_merge( $params, array(
'iiurlwidth' => '600',
'iiurlparam' => '1'
)
)
);
$page = current( $result['query']['pages'] );
$imageInfo = current( $page['imageinfo'] );
// Thumb should max out at source size ( no upscale )
$targetWidth = ( ( int )$file['width'] < 600 ) ? ( int )$file['width'] : 600;
$this->assertEquals( $targetWidth, ( int )$imageInfo['thumbwidth'] );
if( function_exists( 'getimagesize' ) ){
list( $srcImageWidth ,,,) = getimagesize ( $imageInfo[ 'thumburl'] );
$this->assertEquals( $targetWidth, $srcImageWidth );
}
}
}
|