Update with current status
[gnash.git] / testsuite / misc-ming.all / RollOverOutTest-Runner.cpp
blob6c42d4a353eebc45150993e4e66dd3ee90a7536c
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 "RollOverOutTest.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(), 4);
51 check_equals(root->getPlayState(), MovieClip::PLAYSTATE_PLAY);
52 check_equals(root->get_current_frame(), 0);
54 tester.advance(); // advance to the second frame.
56 const DisplayObject* mc1 = tester.findDisplayItemByName(*root, "square1");
57 check(mc1);
58 const DisplayObject* mc2 = tester.findDisplayItemByName(*root, "square2");
59 check(mc2);
61 check_equals(mc1->visible(), true);
62 check_equals(mc2->visible(), false);
63 check_equals(root->getPlayState(), MovieClip::PLAYSTATE_STOP);
64 check_equals(root->get_current_frame(), 1);
66 // we're in stop mode, so advance should not advance anything
67 tester.advance();
68 check_equals(root->get_current_frame(), 1);
69 tester.advance();
70 check_equals(root->get_current_frame(), 1);
72 // roll over the middle of the square, this should trigger
73 // the addition of a goto_frame(3) action, which is executed
74 // at advance() time.
75 tester.movePointerTo(60, 60);
76 tester.advance();
77 check_equals(root->get_current_frame(), 2);
78 check_equals(root->getPlayState(), MovieClip::PLAYSTATE_STOP);
79 tester.advance();
80 check_equals(root->get_current_frame(), 2);
82 // keep the pointer inside
83 tester.movePointerTo(41, 60);
84 tester.advance();
85 check_equals(root->get_current_frame(), 2);
87 // pointer on the border (corner case)
88 tester.movePointerTo(40, 60);
89 tester.advance();
90 check_equals(root->get_current_frame(), 2);
92 // pointer out of the square.
93 tester.movePointerTo(300, 60);
94 //tester.advance(); // mouse event handler should drive the movie
95 check_equals(root->get_current_frame(), 1);
97 // pointer back to the square again.
98 tester.movePointerTo(60, 60);
99 tester.click();
100 //tester.advance(); // mouse event handler should drive the movie
101 check_equals(root->get_current_frame(), 3);
102 return 0;