2 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
3 * 2011 Free Software Foundation, Inc.
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.
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
22 #define INPUT_FILENAME "KeyEventOrder.swf"
24 #include "MovieTester.h"
25 #include "MovieClip.h"
26 #include "DisplayObject.h"
27 #include "DisplayList.h"
35 using namespace gnash
;
39 main(int /*argc*/, char** /*argv*/)
41 string filename
= string(INPUT_FILENAME
);
42 MovieTester
tester(filename
);
44 gnash::LogFile
& dbglogfile
= gnash::LogFile::getDefaultInstance();
45 dbglogfile
.setVerbosity(1);
47 MovieClip
* root
= tester
.getRootMovie();
50 check_equals(root
->get_frame_count(), 6);
51 check_equals(root
->get_current_frame(), 0);
56 check_equals(root
->get_current_frame(), 2);
58 // provide a key press to continue the test
59 tester
.pressKey(key::a
);
60 tester
.releaseKey(key::a
);
62 tester
.pressKey(key::b
);
63 tester
.releaseKey(key::b
);
68 check_equals(root
->get_current_frame(), 4);
70 // provide a key press to continue the test
71 tester
.pressKey(key::a
);
72 tester
.releaseKey(key::a
);
74 tester
.pressKey(key::b
);
75 tester
.releaseKey(key::b
);
79 check_equals(root
->get_current_frame(), 5);