5d12169fd8fa5075d25fb69209eddf3cc835ca60
[libsub.git] / test / stl_writer_test.cc
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
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 2 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.
13
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., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/test/unit_test.hpp>
21 #include <fstream>
22 #include "stl_writer.h"
23 #include "subtitle.h"
24 #include "test.h"
25
26 using std::list;
27 using std::ifstream;
28 using std::ofstream;
29
30 /* Test writing of an STL file */
31 BOOST_AUTO_TEST_CASE (stl_writer_test)
32 {
33         list<sub::Subtitle> subs;
34         subs.push_back (
35                 sub::Subtitle (" This is a subtitle ",     "Arial", 42, false, false, false, 0, sub::FrameTime (0, 0, 41, 9), sub::FrameTime (0, 0, 42, 21))
36                 );
37         subs.push_back (
38                 sub::Subtitle (" and that's a line break", "Arial", 42, false, false, false, 1, sub::FrameTime (0, 0, 41, 9), sub::FrameTime (0, 0, 42, 21))
39                 );
40         subs.push_back (
41                 sub::Subtitle (" This is some ",           "Arial", 42, false, false, false, 0, sub::FrameTime (0, 1,  1, 1), sub::FrameTime (0, 1,  2, 10))
42                 );
43         subs.push_back (
44                 sub::Subtitle ("bold",                     "Arial", 42, true,  false, false, 0, sub::FrameTime (0, 1,  1, 1), sub::FrameTime (0, 1,  2, 10))
45                 );
46         subs.push_back (
47                 sub::Subtitle (" and some ",               "Arial", 42, false, false, false, 0, sub::FrameTime (0, 1,  1, 1), sub::FrameTime (0, 1,  2, 10))
48                 );
49         subs.push_back (
50                 sub::Subtitle ("bold italic",              "Arial", 42, true,  true,  false, 0, sub::FrameTime (0, 1,  1, 1), sub::FrameTime (0, 1,  2, 10))
51                 );
52         subs.push_back (
53                 sub::Subtitle (" and some ",               "Arial", 42, false, false, false, 0, sub::FrameTime (0, 1,  1, 1), sub::FrameTime (0, 1,  2, 10))
54                 );
55         subs.push_back (
56                 sub::Subtitle ("underlined",               "Arial", 42, false, false, true,  0, sub::FrameTime (0, 1,  1, 1), sub::FrameTime (0, 1,  2, 10))
57                 );
58         subs.push_back (
59                 sub::Subtitle (".",                        "Arial", 42, false, false, false, 0, sub::FrameTime (0, 1,  1, 1), sub::FrameTime (0, 1,  2, 10))
60                 );
61
62         ofstream f ("build/test/test.stl");
63         sub::STLWriter writer (subs, f);
64         f.close ();
65
66         check_text ("test/ref/test.stl", "build/test/test.stl");
67 }
68
69