From 503330fb88dde112f010a90f2e7e501deed634c2 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Mon, 18 Jul 2005 00:14:54 +0000 Subject: [PATCH] - Provide distinction and distinct tests --- ext/ming/ming.c | 10 ++++++ ext/ming/tests/swfaction-new.phpt | 51 +++++++++++++++++++++++++++++++ ext/ming/tests/swfaction.phpt | 7 +++-- 3 files changed, 66 insertions(+), 2 deletions(-) create mode 100755 ext/ming/tests/swfaction-new.phpt diff --git a/ext/ming/ming.c b/ext/ming/ming.c index 5501b77288c..2fdc81da688 100644 --- a/ext/ming/ming.c +++ b/ext/ming/ming.c @@ -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); diff --git a/ext/ming/tests/swfaction-new.phpt b/ext/ming/tests/swfaction-new.phpt new file mode 100755 index 00000000000..43527100151 --- /dev/null +++ b/ext/ming/tests/swfaction-new.phpt @@ -0,0 +1,51 @@ +--TEST-- +Ming: Simple SWFAction() test +--SKIPIF-- + +--FILE-- +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 diff --git a/ext/ming/tests/swfaction.phpt b/ext/ming/tests/swfaction.phpt index f29bcdb47d0..4717c7c998d 100644 --- a/ext/ming/tests/swfaction.phpt +++ b/ext/ming/tests/swfaction.phpt @@ -1,7 +1,10 @@ --TEST-- Ming: Simple SWFAction() test --SKIPIF-- - + --FILE-- 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'); ?>