- Provide distinction and distinct tests

This commit is contained in:
Marcus Boerger 2005-07-18 00:14:54 +00:00
parent 70ec0f41ac
commit 503330fb88
3 changed files with 66 additions and 2 deletions

View File

@ -4068,6 +4068,16 @@ PHP_MINIT_FUNCTION(ming)
#define CONSTANT(s,c) REGISTER_LONG_CONSTANT((s), (c), CONST_CS | CONST_PERSISTENT)
#ifdef HAVE_NEW_MING
CONSTANT("MING_NEW", 1);
#else
CONSTANT("MING_NEW", 0);
#endif
#ifdef HAVE_MING_ZLIB
CONSTANT("MING_ZLIB", 1);
#else
CONSTANT("MING_ZLIB", 0);
#endif
/* flags for SWFButton_addShape */
CONSTANT("SWFBUTTON_HIT", SWFBUTTONRECORD_HITSTATE);
CONSTANT("SWFBUTTON_DOWN", SWFBUTTONRECORD_DOWNSTATE);

View File

@ -0,0 +1,51 @@
--TEST--
Ming: Simple SWFAction() test
--SKIPIF--
<?php
if (!extension_loaded("ming")) die("skip");
if (!MING_NEW && !MING_ZLIB) die("skip old ming");
?>
--FILE--
<?php /* $Id$ */
$s = new SWFShape();
$f = $s->addFill(0xff, 0, 0);
$s->setRightFill($f);
$s->movePenTo(-500,-500);
$s->drawLineTo(500,-500);
$s->drawLineTo(500,500);
$s->drawLineTo(-500,500);
$s->drawLineTo(-500,-500);
$p = new SWFSprite();
$i = $p->add($s);
$i->setDepth(1);
$p->nextFrame();
for($n=0; $n<5; ++$n)
{
$i->rotate(-15);
$p->nextFrame();
}
$m = new SWFMovie();
$m->setBackground(0xff, 0xff, 0xff);
$m->setDimension(6000,4000);
$i = $m->add($p);
$i->setDepth(1);
$i->moveTo(1000,2000);
$i->setName("box");
$m->add(new SWFAction("_root.box._x += 3;"));
$m->nextFrame();
$m->add(new SWFAction("gotoFrame(0); play();"));
$m->nextFrame();
$m->save(dirname(__FILE__).'/test.swf');
echo md5_file(dirname(__FILE__).'/test.swf'), "\n";
unlink(dirname(__FILE__).'/test.swf');
?>
--EXPECT--
d0f09a7b6a14d3fe6d570367deb38633

View File

@ -1,7 +1,10 @@
--TEST--
Ming: Simple SWFAction() test
--SKIPIF--
<?php if (!extension_loaded("ming")) print "skip"; ?>
<?php
if (!extension_loaded("ming")) die("skip");
if (MING_NEW || MING_ZLIB) die("skip new ming");
?>
--FILE--
<?php /* $Id$ */
@ -40,7 +43,7 @@ Ming: Simple SWFAction() test
$m->add(new SWFAction("gotoFrame(0); play();"));
$m->nextFrame();
$m->save(dirname(__FILE__).'/test.swf', 0);
$m->save(dirname(__FILE__).'/test.swf');
echo md5_file(dirname(__FILE__).'/test.swf'), "\n";
unlink(dirname(__FILE__).'/test.swf');
?>