Some more tests (minor)
[gnash.git] / testsuite / misc-ming.all / streamingSoundTest1-Runner.cpp
blob7d90e3bb37fd1cdfc4e345d41ee7842586e37b69
1 /*
2 * Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
21 #define INPUT_FILENAME "streamingSoundTest1.swf"
23 #include "MovieTester.h"
24 #include "MovieClip.h"
25 #include "DisplayObject.h"
26 #include "DisplayList.h"
27 #include "log.h"
28 #include "GnashException.h"
30 #include "check.h"
32 #include <string>
33 #include <iostream>
34 #include <cassert>
35 #include <memory>
37 using namespace gnash;
38 using namespace std;
40 int
41 main(int /*argc*/, char** /*argv*/)
43 string filename = string(TGTDIR) + string("/") + string(INPUT_FILENAME);
44 auto_ptr<MovieTester> t;
46 try
48 t.reset(new MovieTester(filename));
50 catch (const GnashException& e)
52 std::cerr << "Error initializing MovieTester: " << e.what() << std::endl;
53 exit(EXIT_FAILURE);
56 MovieTester& tester = *t;
58 tester.advance();
60 gnash::LogFile& dbglogfile = gnash::LogFile::getDefaultInstance();
61 dbglogfile.setVerbosity(1);
62 dbglogfile.setActionDump(1);
64 MovieClip* root = tester.getRootMovie();
65 assert(root);
67 check_equals(root->get_frame_count(), 1);
69 if ( ! tester.canTestSound() )
71 cout << "UNTESTED: sounds can't be tested with this build." << endl;
72 return EXIT_SUCCESS; // so testing doesn't abort
75 check_equals(tester.soundsStarted(), 0);
76 check_equals(tester.soundsStopped(), 0);