Update with current status
[gnash.git] / testsuite / samples / gotoFrameOnKeyEvent-TestRunner.cpp
blob036e9d9d9554387ec125ab86cd61e76a3e0f276d
1 /*
2 * Copyright (C) 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 "gotoFrameOnKeyEvent.swf"
24 #include "MovieTester.h"
25 #include "GnashException.h"
26 #include "MovieClip.h"
27 #include "DisplayObject.h"
28 #include "DisplayList.h"
29 #include "log.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(SRCDIR) + string("/") + string(INPUT_FILENAME);
43 unique_ptr<MovieTester> t;
45 gnash::LogFile& dbglogfile = gnash::LogFile::getDefaultInstance();
46 dbglogfile.setVerbosity(1);
48 try
50 t.reset(new MovieTester(filename));
52 catch (const GnashException& e)
54 std::cerr << "Error initializing MovieTester: " << e.what() << std::endl;
55 exit(EXIT_FAILURE);
58 MovieTester& tester = *t;
60 // TODO: check why we need this !!
61 // I wouldn't want the first advance to be needed
62 tester.advance();
64 const MovieClip* root = tester.getRootMovie();
65 assert(root);
67 check_equals(root->get_frame_count(), 7);
69 check_equals(root->get_current_frame(), 0);
70 tester.advance();
71 check_equals(root->get_current_frame(), 0);
73 // press key 1 four times
74 for(unsigned int i=1; i<=4; i++)
76 tester.pressKey(key::_1);
77 tester.releaseKey(key::_1);
78 check_equals(root->get_current_frame(), i);
79 tester.advance();
80 check_equals(root->get_current_frame(), i);
83 // press key 0 four times
84 for(unsigned int i=4; i>0; --i)
86 tester.pressKey(key::_0);
87 tester.releaseKey(key::_0);
88 check_equals(root->get_current_frame(), i-1);
89 tester.advance();
90 check_equals(root->get_current_frame(), i-1);
93 // press key 1 two times
94 for(unsigned int i=1; i<=2; i++)
96 tester.pressKey(key::_1);
97 tester.releaseKey(key::_1);
98 check_equals(root->get_current_frame(), i);
99 tester.advance();
100 check_equals(root->get_current_frame(), i);
103 // press key DOWN two times
105 tester.pressKey(key::DOWN);
106 tester.releaseKey(key::DOWN);
107 check_equals(root->get_current_frame(), 5);
108 tester.advance();
109 check_equals(root->get_current_frame(), 5);
111 tester.pressKey(key::DOWN);
112 tester.releaseKey(key::DOWN);
113 check_equals(root->get_current_frame(), 6);
114 tester.advance();
115 check_equals(root->get_current_frame(), 6);
118 // press key UP two times
120 tester.pressKey(key::UP);
121 tester.releaseKey(key::UP);
122 check_equals(root->get_current_frame(), 5);
123 tester.advance();
124 check_equals(root->get_current_frame(), 5);
126 tester.pressKey(key::UP);
127 tester.releaseKey(key::UP);
128 check_equals(root->get_current_frame(), 2);
129 tester.advance();
130 check_equals(root->get_current_frame(), 2);
133 // press key 0 two times, now should be back to the first frame
134 for(unsigned int i=2; i>0; --i)
136 tester.pressKey(key::_0);
137 tester.releaseKey(key::_0);
138 check_equals(root->get_current_frame(), i-1);
139 tester.advance();
140 check_equals(root->get_current_frame(), i-1);
142 return 0;