Add automated tests on function-type FSCommand parameter passing.
[gnash.git] / testsuite / misc-ming.all / attachMovieLoopingTestRunner.cpp
blobb4acf5c1cb9b134dbe0b45d6a8eba480b69d4d09
1 /*
2 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 * Free Software Foundation, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
22 #define INPUT_FILENAME "attachMovieLoopingTest.swf"
24 #include "MovieTester.h"
25 #include "MovieClip.h"
26 #include "DisplayObject.h"
27 #include "DisplayList.h"
28 #include "log.h"
30 #include "check.h"
31 #include <string>
32 #include <cassert>
34 using namespace gnash;
35 using namespace std;
37 TRYMAIN(_runtest);
38 int
39 trymain(int /*argc*/, char** /*argv*/)
41 string filename = string(TGTDIR) + string("/") + string(INPUT_FILENAME);
42 MovieTester tester(filename);
44 gnash::LogFile& dbglogfile = gnash::LogFile::getDefaultInstance();
45 dbglogfile.setVerbosity(1);
47 MovieClip* root = tester.getRootMovie();
48 assert(root);
50 check_equals(root->get_frame_count(), 2);
51 check_equals(root->getPlayState(), MovieClip::PLAYSTATE_PLAY);
52 check_equals(root->get_current_frame(), 0);
54 check(! tester.findDisplayItemByDepth(*root, 70) );
55 check(! tester.findDisplayItemByDepth(*root, 71) );
56 check(! tester.findDisplayItemByDepth(*root, 72) );
57 check(! tester.findDisplayItemByDepth(*root, 73) );
59 tester.movePointerTo(30, 30);
60 check(!tester.isMouseOverMouseEntity());
62 tester.advance(); check_equals(root->get_current_frame(), 1);
64 check(tester.findDisplayItemByDepth(*root, 70) );
65 check(! tester.findDisplayItemByDepth(*root, 71) );
66 check(! tester.findDisplayItemByDepth(*root, 72) );
67 check(! tester.findDisplayItemByDepth(*root, 73) );
69 tester.movePointerTo(30, 30);
70 check(tester.isMouseOverMouseEntity());
71 tester.movePointerTo(100, 30);
72 check(!tester.isMouseOverMouseEntity());
74 tester.advance(); check_equals(root->get_current_frame(), 0);
75 tester.advance(); check_equals(root->get_current_frame(), 1);
77 check( tester.findDisplayItemByDepth(*root, 70) );
78 check( tester.findDisplayItemByDepth(*root, 71) );
79 check(! tester.findDisplayItemByDepth(*root, 72) );
80 check(! tester.findDisplayItemByDepth(*root, 73) );
82 tester.movePointerTo(100, 5);
83 check(tester.isMouseOverMouseEntity());
84 tester.movePointerTo(170, 30);
85 check(!tester.isMouseOverMouseEntity());
87 tester.advance(); check_equals(root->get_current_frame(), 0);
88 tester.advance(); check_equals(root->get_current_frame(), 1);
90 check( tester.findDisplayItemByDepth(*root, 70) );
91 check( tester.findDisplayItemByDepth(*root, 71) );
92 check( tester.findDisplayItemByDepth(*root, 72) );
93 check(! tester.findDisplayItemByDepth(*root, 73) );
95 tester.movePointerTo(170, 10);
96 check(tester.isMouseOverMouseEntity());
97 tester.movePointerTo(240, 30);
98 check(!tester.isMouseOverMouseEntity());
100 tester.advance(); check_equals(root->get_current_frame(), 0);
101 tester.advance(); check_equals(root->get_current_frame(), 1);
103 check( tester.findDisplayItemByDepth(*root, 70) );
104 check( tester.findDisplayItemByDepth(*root, 71) );
105 check( tester.findDisplayItemByDepth(*root, 72) );
106 check( tester.findDisplayItemByDepth(*root, 73) );
108 tester.movePointerTo(240, 5);
109 check(tester.isMouseOverMouseEntity());
110 return 0;