From 826847df4489deb0b8b568dc8ec0685cbd078708 Mon Sep 17 00:00:00 2001 From: ribet Date: Wed, 6 Jun 2007 06:46:39 +0000 Subject: Référencement des bugs et outil de test automatique. --- test_suite/bug/basique.svg | 113 ++++++++++++++++++++++++++++++++++++++++++++ test_suite/bug/bug_mpath.pl | 53 +++++++++++++++++++++ 2 files changed, 166 insertions(+) create mode 100644 test_suite/bug/basique.svg create mode 100755 test_suite/bug/bug_mpath.pl diff --git a/test_suite/bug/basique.svg b/test_suite/bug/basique.svg new file mode 100644 index 0000000..cd0606f --- /dev/null +++ b/test_suite/bug/basique.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/test_suite/bug/bug_mpath.pl b/test_suite/bug/bug_mpath.pl new file mode 100755 index 0000000..53cb5f6 --- /dev/null +++ b/test_suite/bug/bug_mpath.pl @@ -0,0 +1,53 @@ +#!/usr/bin/perl +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU GPL General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA, +# or refer to http://www.gnu.org/copyleft/gpl.html +# + +BEGIN { + unshift @INC, ".", "../src", "../../src"; +} + +use MTools; +use MTools::MSwitch; +use MTools::MTimer; +use MTools::Anim::MPath; + +new MTools (800, 600, "Bug en fin d'animation"); + +my $mauve = minstance("basique.svg#mauve", 1); +rotate($mauve, 45); + +my $anim = new MTools::Anim::MPath(targets => $mauve, + path => [[0, 0], + [100, -300], + [200, 0], + [0, 0]]); + +my $switch = new MTools::MSwitch(1, + anim => ["basique.svg#layer1", $mauve,$anim], + complet => ["basique.svg#layer1", $mauve]); +$switch->setState(complet); + +my @states = qw(complet anim); +my $timer = new MTools::MTimer(2000, 1, \&switch); +$timer->start(); + +mrun; + +sub switch { + my $new_state = pop @states; + $switch->setState($new_state); + unshift @states, $new_state; +} -- cgit v1.1