Add automated tests on function-type FSCommand parameter passing.
[gnash.git] / testsuite / misc-ming.all / DefineEditTextVariableNameTest-Runner.cpp
blobb76862ac58b72ba52ecb3de0066661fb250aea9a
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 "DefineEditTextVariableNameTest.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 = INPUT_FILENAME;
42 MovieTester tester(filename);
44 MovieClip* root = tester.getRootMovie();
45 assert(root);
47 check_equals(root->get_frame_count(), 14);
48 check_equals(root->getPlayState(), MovieClip::PLAYSTATE_PLAY);
49 check_equals(root->get_current_frame(), 0);
51 const DisplayObject* mc1 = tester.findDisplayItemByName(*root, "mc1");
52 check(mc1);
54 const DisplayObject* mc2 = tester.findDisplayItemByName(*root, "mc2");
55 check(mc2);
57 const DisplayObject* mc3 = tester.findDisplayItemByName(*root, "mc3");
58 check(mc3);
60 check_equals(root->get_current_frame(), 0);
61 for (unsigned f=root->get_current_frame(); f<root->get_frame_count()-1; ++f)
63 check_equals(root->get_current_frame(), f);
64 check_equals(root->getPlayState(), MovieClip::PLAYSTATE_PLAY);
65 tester.advance();
68 // does stop() on last frame
69 check_equals(root->getPlayState(), MovieClip::PLAYSTATE_STOP);
70 check_equals(root->get_current_frame(), root->get_frame_count()-1);
72 return 0;