Add automated tests on function-type FSCommand parameter passing.
[gnash.git] / testsuite / misc-ming.all / KeyEventOrderRunner.cpp
blobdb8e76fee3d3161cadf71294d939fc176c7d8ddd
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 "KeyEventOrder.swf"
24 #include "MovieTester.h"
25 #include "MovieClip.h"
26 #include "DisplayObject.h"
27 #include "DisplayList.h"
28 #include "log.h"
29 #include "VM.h"
31 #include "check.h"
32 #include <string>
33 #include <cassert>
35 using namespace gnash;
36 using namespace std;
38 TRYMAIN(_runtest);
39 int
40 trymain(int /*argc*/, char** /*argv*/)
42 string filename = string(INPUT_FILENAME);
43 MovieTester tester(filename);
45 gnash::LogFile& dbglogfile = gnash::LogFile::getDefaultInstance();
46 dbglogfile.setVerbosity(1);
48 MovieClip* root = tester.getRootMovie();
49 assert(root);
51 check_equals(root->get_frame_count(), 6);
52 check_equals(root->get_current_frame(), 0);
54 tester.advance();
55 tester.advance();
57 check_equals(root->get_current_frame(), 2);
59 // provide a key press to continue the test
60 tester.pressKey(key::a);
61 tester.releaseKey(key::a);
63 tester.pressKey(key::b);
64 tester.releaseKey(key::b);
66 tester.advance();
67 tester.advance();
69 check_equals(root->get_current_frame(), 4);
71 // provide a key press to continue the test
72 tester.pressKey(key::a);
73 tester.releaseKey(key::a);
75 tester.pressKey(key::b);
76 tester.releaseKey(key::b);
78 tester.advance();
79 tester.advance();
80 check_equals(root->get_current_frame(), 5);
82 return 0;