Update with current status
[gnash.git] / testsuite / misc-ming.all / register_class / registerClassTestRunner.cpp
blob8687f7d0390592898fe60d934647c487cf08d368
1 /*
2 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
3 * 2011 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 "registerClassTest.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(), 6);
51 check_equals(root->getPlayState(), MovieClip::PLAYSTATE_PLAY);
52 check_equals(root->get_current_frame(), 0);
54 check(! tester.findDisplayItemByDepth(*root, 71) );
55 check(! tester.findDisplayItemByDepth(*root, 72) );
57 tester.movePointerTo(30, 30);
58 check(!tester.isMouseOverMouseEntity());
60 tester.advance();
61 check_equals(root->get_current_frame(), 1);
63 check( tester.findDisplayItemByDepth(*root, 71) );
64 check(! tester.findDisplayItemByDepth(*root, 72) );
66 tester.movePointerTo(30, 30);
67 check(tester.isMouseOverMouseEntity());
68 tester.movePointerTo(100, 30);
69 check(!tester.isMouseOverMouseEntity());
71 tester.advance();
72 check_equals(root->get_current_frame(), 2);
74 check(tester.findDisplayItemByDepth(*root, 71) );
75 check(tester.findDisplayItemByDepth(*root, 72) );
77 tester.movePointerTo(30, 30);
78 check(tester.isMouseOverMouseEntity());
79 tester.movePointerTo(100, 30);
80 check(tester.isMouseOverMouseEntity());
82 tester.advance();
83 check_equals(root->get_current_frame(), 3);
85 check(tester.findDisplayItemByDepth(*root, 71) );
86 check(tester.findDisplayItemByDepth(*root, 72) );
87 check(tester.findDisplayItemByDepth(*root, 73) );
89 tester.movePointerTo(30, 30);
90 check(tester.isMouseOverMouseEntity());
91 tester.movePointerTo(100, 30);
92 check(tester.isMouseOverMouseEntity());
93 tester.movePointerTo(170, 30);
94 check(tester.isMouseOverMouseEntity());
96 tester.advance();
97 check_equals(root->get_current_frame(), 4);
99 tester.movePointerTo(30, 30);
100 check(tester.isMouseOverMouseEntity());
101 tester.movePointerTo(100, 30);
102 check(tester.isMouseOverMouseEntity());
103 tester.movePointerTo(170, 30);
104 check(tester.isMouseOverMouseEntity());
105 tester.movePointerTo(240, 30);
106 check(tester.isMouseOverMouseEntity());
108 tester.advance();
109 check_equals(root->get_current_frame(), 5);
111 tester.advance();
112 check_equals(root->get_current_frame(), 5); // we should be in stop mode
113 return 0;