Fixes for r92251:
[lhc/web/wiklou.git] / tests / phpunit / includes / api / RandomImageGenerator.php
1 <?php
2
3 /*
4 * RandomImageGenerator -- does what it says on the tin.
5 * Requires Imagick, the ImageMagick library for PHP, or the command line equivalent (usually 'convert').
6 *
7 * Because MediaWiki tests the uniqueness of media upload content, and filenames, it is sometimes useful to generate
8 * files that are guaranteed (or at least very likely) to be unique in both those ways.
9 * This generates a number of filenames with random names and random content (colored triangles)
10 *
11 * It is also useful to have fresh content because our tests currently run in a "destructive" mode, and don't create a fresh new wiki for each
12 * test run.
13 * Consequently, if we just had a few static files we kept re-uploading, we'd get lots of warnings about matching content or filenames,
14 * and even if we deleted those files, we'd get warnings about archived files.
15 *
16 * This can also be used with a cronjob to generate random files all the time -- I use it to have a constant, never ending supply when I'm
17 * testing interactively.
18 *
19 * @file
20 * @author Neil Kandalgaonkar <neilk@wikimedia.org>
21 */
22
23 /**
24 * RandomImageGenerator: does what it says on the tin.
25 * Can fetch a random image, or also write a number of them to disk with random filenames.
26 */
27 class RandomImageGenerator {
28
29 private $dictionaryFile;
30 private $minWidth = 400;
31 private $maxWidth = 800;
32 private $minHeight = 400;
33 private $maxHeight = 800;
34 private $shapesToDraw = 5;
35 private $imageWriteMethod;
36
37 /**
38 * Orientations: 0th row, 0th column, EXIF orientation code, rotation 2x2 matrix that is opposite of orientation
39 * n.b. we do not handle the 'flipped' orientations, which is why there is no entry for 2, 4, 5, or 7. Those
40 * seem to be rare in real images anyway
41 * (we also would need a non-symmetric shape for the images to test those, like a letter F)
42 */
43 private static $orientations = array(
44 array(
45 '0thRow' => 'top',
46 '0thCol' => 'left',
47 'exifCode' => 1,
48 'counterRotation' => array( array( 1, 0 ), array( 0, 1 ) )
49 ),
50 array(
51 '0thRow' => 'bottom',
52 '0thCol' => 'right',
53 'exifCode' => 3,
54 'counterRotation' => array( array( -1, 0 ), array( 0, -1 ) )
55 ),
56 array(
57 '0thRow' => 'right',
58 '0thCol' => 'top',
59 'exifCode' => 6,
60 'counterRotation' => array( array( 0, 1 ), array( 1, 0 ) )
61 ),
62 array(
63 '0thRow' => 'left',
64 '0thCol' => 'bottom',
65 'exifCode' => 8,
66 'counterRotation' => array( array( 0, -1 ), array( -1, 0 ) )
67 )
68 );
69
70
71 public function __construct( $options = array() ) {
72 foreach ( array( 'dictionaryFile', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'shapesToDraw' ) as $property ) {
73 if ( isset( $options[$property] ) ) {
74 $this->$property = $options[$property];
75 }
76 }
77
78 // find the dictionary file, to generate random names
79 if ( !isset( $this->dictionaryFile ) ) {
80 foreach ( array(
81 '/usr/share/dict/words',
82 '/usr/dict/words',
83 dirname( __FILE__ ) . '/words.txt' )
84 as $dictionaryFile ) {
85 if ( is_file( $dictionaryFile ) and is_readable( $dictionaryFile ) ) {
86 $this->dictionaryFile = $dictionaryFile;
87 break;
88 }
89 }
90 }
91 if ( !isset( $this->dictionaryFile ) ) {
92 throw new Exception( "RandomImageGenerator: dictionary file not found or not specified properly" );
93 }
94 }
95
96 /**
97 * Writes random images with random filenames to disk in the directory you specify, or current working directory
98 *
99 * @param $number Integer: number of filenames to write
100 * @param $format String: optional, must be understood by ImageMagick, such as 'jpg' or 'gif'
101 * @param $dir String: directory, optional (will default to current working directory)
102 * @return Array: filenames we just wrote
103 */
104 function writeImages( $number, $format = 'jpg', $dir = null ) {
105 $filenames = $this->getRandomFilenames( $number, $format, $dir );
106 $imageWriteMethod = $this->getImageWriteMethod( $format );
107 foreach( $filenames as $filename ) {
108 $this->{$imageWriteMethod}( $this->getImageSpec(), $format, $filename );
109 }
110 return $filenames;
111 }
112
113
114 /**
115 * Figure out how we write images. This is a factor of both format and the local system
116 * @param $format (a typical extension like 'svg', 'jpg', etc.)
117 */
118 function getImageWriteMethod( $format ) {
119 global $wgUseImageMagick, $wgImageMagickConvertCommand;
120 if ( $format === 'svg' ) {
121 return 'writeSvg';
122 } else {
123 // figure out how to write images
124 global $wgExiv2Command;
125 if ( class_exists( 'Imagick' ) && $wgExiv2Command && is_executable( $wgExiv2Command ) ) {
126 return 'writeImageWithApi';
127 } elseif ( $wgUseImageMagick && $wgImageMagickConvertCommand && is_executable( $wgImageMagickConvertCommand ) ) {
128 return 'writeImageWithCommandLine';
129 }
130 }
131 throw new Exception( "RandomImageGenerator: could not find a suitable method to write images in '$format' format" );
132 }
133
134 /**
135 * Return a number of randomly-generated filenames
136 * Each filename uses two words randomly drawn from the dictionary, like elephantine_spatula.jpg
137 *
138 * @param $number Integer: of filenames to generate
139 * @param $extension String: optional, defaults to 'jpg'
140 * @param $dir String: optional, defaults to current working directory
141 * @return Array: of filenames
142 */
143 private function getRandomFilenames( $number, $extension = 'jpg', $dir = null ) {
144 if ( is_null( $dir ) ) {
145 $dir = getcwd();
146 }
147 $filenames = array();
148 foreach( $this->getRandomWordPairs( $number ) as $pair ) {
149 $basename = $pair[0] . '_' . $pair[1];
150 if ( !is_null( $extension ) ) {
151 $basename .= '.' . $extension;
152 }
153 $basename = preg_replace( '/\s+/', '', $basename );
154 $filenames[] = "$dir/$basename";
155 }
156
157 return $filenames;
158
159 }
160
161
162 /**
163 * Generate data representing an image of random size (within limits),
164 * consisting of randomly colored and sized upward pointing triangles against a random background color
165 * (This data is used in the writeImage* methods).
166 * @return {Mixed}
167 */
168 public function getImageSpec() {
169 $spec = array();
170
171 $spec['width'] = mt_rand( $this->minWidth, $this->maxWidth );
172 $spec['height'] = mt_rand( $this->minHeight, $this->maxHeight );
173 $spec['fill'] = $this->getRandomColor();
174
175 $diagonalLength = sqrt( pow( $spec['width'], 2 ) + pow( $spec['height'], 2 ) );
176
177 $draws = array();
178 for ( $i = 0; $i <= $this->shapesToDraw; $i++ ) {
179 $radius = mt_rand( 0, $diagonalLength / 4 );
180 if ( $radius == 0 ) {
181 continue;
182 }
183 $originX = mt_rand( -1 * $radius, $spec['width'] + $radius );
184 $originY = mt_rand( -1 * $radius, $spec['height'] + $radius );
185 $angle = mt_rand( 0, ( 3.141592/2 ) * $radius ) / $radius;
186 $legDeltaX = round( $radius * sin( $angle ) );
187 $legDeltaY = round( $radius * cos( $angle ) );
188
189 $draw = array();
190 $draw['fill'] = $this->getRandomColor();
191 $draw['shape'] = array(
192 array( 'x' => $originX, 'y' => $originY - $radius ),
193 array( 'x' => $originX + $legDeltaX, 'y' => $originY + $legDeltaY ),
194 array( 'x' => $originX - $legDeltaX, 'y' => $originY + $legDeltaY ),
195 array( 'x' => $originX, 'y' => $originY - $radius )
196 );
197 $draws[] = $draw;
198
199 }
200
201 $spec['draws'] = $draws;
202
203 return $spec;
204 }
205
206 /**
207 * Given array( array('x' => 10, 'y' => 20), array( 'x' => 30, y=> 5 ) )
208 * returns "10,20 30,5"
209 * Useful for SVG and imagemagick command line arguments
210 * @param $shape: Array of arrays, each array containing x & y keys mapped to numeric values
211 * @return string
212 */
213 static function shapePointsToString( $shape ) {
214 $points = array();
215 foreach ( $shape as $point ) {
216 $points[] = $point['x'] . ',' . $point['y'];
217 }
218 return join( " ", $points );
219 }
220
221 /**
222 * Based on image specification, write a very simple SVG file to disk.
223 * Ignores the background spec because transparency is cool. :)
224 * @param $spec: spec describing background and shapes to draw
225 * @param $format: file format to write (which is obviously always svg here)
226 * @param $filename: filename to write to
227 */
228 public function writeSvg( $spec, $format, $filename ) {
229 $svg = new SimpleXmlElement( '<svg/>' );
230 $svg->addAttribute( 'xmlns', 'http://www.w3.org/2000/svg' );
231 $svg->addAttribute( 'version', '1.1' );
232 $svg->addAttribute( 'width', $spec['width'] );
233 $svg->addAttribute( 'height', $spec['height'] );
234 $g = $svg->addChild( 'g' );
235 foreach ( $spec['draws'] as $drawSpec ) {
236 $shape = $g->addChild( 'polygon' );
237 $shape->addAttribute( 'fill', $drawSpec['fill'] );
238 $shape->addAttribute( 'points', self::shapePointsToString( $drawSpec['shape'] ) );
239 };
240 if ( ! $fh = fopen( $filename, 'w' ) ) {
241 throw new Exception( "couldn't open $filename for writing" );
242 }
243 fwrite( $fh, $svg->asXML() );
244 if ( !fclose($fh) ) {
245 throw new Exception( "couldn't close $filename" );
246 }
247 }
248
249 /**
250 * Based on an image specification, write such an image to disk, using Imagick PHP extension
251 * @param $spec: spec describing background and circles to draw
252 * @param $format: file format to write
253 * @param $filename: filename to write to
254 */
255 public function writeImageWithApi( $spec, $format, $filename ) {
256 // this is a hack because I can't get setImageOrientation() to work. See below.
257 global $wgExiv2Command;
258
259 $image = new Imagick();
260 /**
261 * If the format is 'jpg', will also add a random orientation -- the image will be drawn rotated with triangle points
262 * facing in some direction (0, 90, 180 or 270 degrees) and a countering rotation should turn the triangle points upward again
263 */
264 $orientation = self::$orientations[0]; // default is normal orientation
265 if ( $format == 'jpg' ) {
266 $orientation = self::$orientations[ array_rand( self::$orientations ) ];
267 $spec = self::rotateImageSpec( $spec, $orientation['counterRotation'] );
268 }
269
270 $image->newImage( $spec['width'], $spec['height'], new ImagickPixel( $spec['fill'] ) );
271
272 foreach ( $spec['draws'] as $drawSpec ) {
273 $draw = new ImagickDraw();
274 $draw->setFillColor( $drawSpec['fill'] );
275 $draw->polygon( $drawSpec['shape'] );
276 $image->drawImage( $draw );
277 }
278
279 $image->setImageFormat( $format );
280
281 // this doesn't work, even though it's documented to do so...
282 // $image->setImageOrientation( $orientation['exifCode'] );
283
284 $image->writeImage( $filename );
285
286 // because the above setImageOrientation call doesn't work... nor can I get an external imagemagick binary to do this either...
287 // hacking this for now (only works if you have exiv2 installed, a program to read and manipulate exif)
288 if ( $wgExiv2Command ) {
289 $cmd = wfEscapeShellArg( $wgExiv2Command )
290 . " -M "
291 . wfEscapeShellArg( "set Exif.Image.Orientation " . $orientation['exifCode'] )
292 . " "
293 . wfEscapeShellArg( $filename );
294
295 $retval = 0;
296 $err = wfShellExec( $cmd, $retval );
297 if ( $retval !== 0 ) {
298 print "Error with $cmd: $retval, $err\n";
299 }
300 }
301 }
302
303 /**
304 * Given an image specification, produce rotated version
305 * This is used when simulating a rotated image capture with EXIF orientation
306 * @param $spec Object returned by getImageSpec
307 * @param $matrix 2x2 transformation matrix
308 * @return transformed Spec
309 */
310 private static function rotateImageSpec( &$spec, $matrix ) {
311 $tSpec = array();
312 $dims = self::matrixMultiply2x2( $matrix, $spec['width'], $spec['height'] );
313 $correctionX = 0;
314 $correctionY = 0;
315 if ( $dims['x'] < 0 ) {
316 $correctionX = abs( $dims['x'] );
317 }
318 if ( $dims['y'] < 0 ) {
319 $correctionY = abs( $dims['y'] );
320 }
321 $tSpec['width'] = abs( $dims['x'] );
322 $tSpec['height'] = abs( $dims['y'] );
323 $tSpec['fill'] = $spec['fill'];
324 $tSpec['draws'] = array();
325 foreach( $spec['draws'] as $draw ) {
326 $tDraw = array(
327 'fill' => $draw['fill'],
328 'shape' => array()
329 );
330 foreach( $draw['shape'] as $point ) {
331 $tPoint = self::matrixMultiply2x2( $matrix, $point['x'], $point['y'] );
332 $tPoint['x'] += $correctionX;
333 $tPoint['y'] += $correctionY;
334 $tDraw['shape'][] = $tPoint;
335 }
336 $tSpec['draws'][] = $tDraw;
337 }
338 return $tSpec;
339 }
340
341 /**
342 * Given a matrix and a pair of images, return new position
343 * @param $matrix: 2x2 rotation matrix
344 * @param $x: x-coordinate number
345 * @param $y: y-coordinate number
346 * @return Array transformed with properties x, y
347 */
348 private static function matrixMultiply2x2( $matrix, $x, $y ) {
349 return array(
350 'x' => $x * $matrix[0][0] + $y * $matrix[0][1],
351 'y' => $x * $matrix[1][0] + $y * $matrix[1][1]
352 );
353 }
354
355
356 /**
357 * Based on an image specification, write such an image to disk, using the command line ImageMagick program ('convert').
358 *
359 * Sample command line:
360 * $ convert -size 100x60 xc:rgb(90,87,45) \
361 * -draw 'fill rgb(12,34,56) polygon 41,39 44,57 50,57 41,39' \
362 * -draw 'fill rgb(99,123,231) circle 59,39 56,57' \
363 * -draw 'fill rgb(240,12,32) circle 50,21 50,3' filename.png
364 *
365 * @param $spec: spec describing background and shapes to draw
366 * @param $format: file format to write (unused by this method but kept so it has the same signature as writeImageWithApi)
367 * @param $filename: filename to write to
368 */
369 public function writeImageWithCommandLine( $spec, $format, $filename ) {
370 global $wgImageMagickConvertCommand;
371 $args = array();
372 $args[] = "-size " . wfEscapeShellArg( $spec['width'] . 'x' . $spec['height'] );
373 $args[] = wfEscapeShellArg( "xc:" . $spec['fill'] );
374 foreach( $spec['draws'] as $draw ) {
375 $fill = $draw['fill'];
376 $polygon = self::shapePointsToString( $draw['shape'] );
377 $drawCommand = "fill $fill polygon $polygon";
378 $args[] = '-draw ' . wfEscapeShellArg( $drawCommand );
379 }
380 $args[] = wfEscapeShellArg( $filename );
381
382 $command = wfEscapeShellArg( $wgImageMagickConvertCommand ) . " " . implode( " ", $args );
383 $retval = null;
384 wfShellExec( $command, $retval );
385 return ( $retval === 0 );
386 }
387
388 /**
389 * Generate a string of random colors for ImageMagick or SVG, like "rgb(12, 37, 98)"
390 *
391 * @return {String}
392 */
393 public function getRandomColor() {
394 $components = array();
395 for ($i = 0; $i <= 2; $i++ ) {
396 $components[] = mt_rand( 0, 255 );
397 }
398 return 'rgb(' . join(', ', $components) . ')';
399 }
400
401 /**
402 * Get an array of random pairs of random words, like array( array( 'foo', 'bar' ), array( 'quux', 'baz' ) );
403 *
404 * @param $number Integer: number of pairs
405 * @return Array: of two-element arrays
406 */
407 private function getRandomWordPairs( $number ) {
408 $lines = $this->getRandomLines( $number * 2 );
409 // construct pairs of words
410 $pairs = array();
411 $count = count( $lines );
412 for( $i = 0; $i < $count; $i += 2 ) {
413 $pairs[] = array( $lines[$i], $lines[$i+1] );
414 }
415 return $pairs;
416 }
417
418
419 /**
420 * Return N random lines from a file
421 *
422 * Will throw exception if the file could not be read or if it had fewer lines than requested.
423 *
424 * @param $number_desired Integer: number of lines desired
425 * @return Array: of exactly n elements, drawn randomly from lines the file
426 */
427 private function getRandomLines( $number_desired ) {
428 $filepath = $this->dictionaryFile;
429
430 // initialize array of lines
431 $lines = array();
432 for ( $i = 0; $i < $number_desired; $i++ ) {
433 $lines[] = null;
434 }
435
436 /*
437 * This algorithm obtains N random lines from a file in one single pass. It does this by replacing elements of
438 * a fixed-size array of lines, less and less frequently as it reads the file.
439 */
440 $fh = fopen( $filepath, "r" );
441 if ( !$fh ) {
442 throw new Exception( "couldn't open $filepath" );
443 }
444 $line_number = 0;
445 $max_index = $number_desired - 1;
446 while( !feof( $fh ) ) {
447 $line = fgets( $fh );
448 if ( $line !== false ) {
449 $line_number++;
450 $line = trim( $line );
451 if ( mt_rand( 0, $line_number ) <= $max_index ) {
452 $lines[ mt_rand( 0, $max_index ) ] = $line;
453 }
454 }
455 }
456 fclose( $fh );
457 if ( $line_number < $number_desired ) {
458 throw new Exception( "not enough lines in $filepath" );
459 }
460
461 return $lines;
462 }
463
464 }