]> granicus.if.org Git - php/commitdiff
- Provide distinction and distinct tests
authorMarcus Boerger <helly@php.net>
Mon, 18 Jul 2005 00:14:54 +0000 (00:14 +0000)
committerMarcus Boerger <helly@php.net>
Mon, 18 Jul 2005 00:14:54 +0000 (00:14 +0000)
ext/ming/ming.c
ext/ming/tests/swfaction-new.phpt [new file with mode: 0755]
ext/ming/tests/swfaction.phpt

index 5501b77288cf92a6179a27e2f7977c4c4c927f91..2fdc81da688b3267434959efd5e23d0b12518742 100644 (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);
diff --git a/ext/ming/tests/swfaction-new.phpt b/ext/ming/tests/swfaction-new.phpt
new file mode 100755 (executable)
index 0000000..4352710
--- /dev/null
@@ -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
index f29bcdb47d041b04baae5f6fb0733d400182262e..4717c7c998d75c46dbf2471d0d42bb4f4ebf479b 100644 (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');
 ?>