Add another test.
[libsub.git] / test / stl_binary_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 "stl_binary_writer.h"
21 #include "subtitle.h"
22 #include <boost/test/unit_test.hpp>
23
24 using std::list;
25
26 /** Test writing of a binary STL file */
27 BOOST_AUTO_TEST_CASE (stl_binary_writer_test)
28 {
29         list<sub::Subtitle> subs;
30
31         {
32                 sub::Subtitle s;
33                 s.from = sub::Time::from_hmsf (0, 0, 41, 9, sub::Rational (25, 1));
34                 s.to = sub::Time::from_hmsf (0, 0, 42, 21, sub::Rational (25, 1));
35
36                 {
37                         sub::Block b;
38                         b.text = "This is a subtitle";
39                         b.font = "Arial";
40                         b.font_size.set_points (42);
41                         sub::Line l;
42                         l.vertical_position.line = 0;
43                         l.vertical_position.lines = 32;
44                         l.vertical_position.reference = sub::TOP_OF_SCREEN;
45                         l.blocks.push_back (b);
46                         s.lines.push_back (l);
47                 }
48
49                 {
50                         sub::Block b;
51                         b.text = "and that's a line break";
52                         b.font = "Arial";
53                         b.font_size.set_points (42);
54                         sub::Line l;
55                         l.vertical_position.line = 1;
56                         l.vertical_position.lines = 32;
57                         l.vertical_position.reference = sub::TOP_OF_SCREEN;
58                         l.blocks.push_back (b);
59                         s.lines.push_back (l);
60                 }
61
62                 subs.push_back (s);
63         }
64
65         {
66                 sub::Subtitle s;
67                 s.from = sub::Time::from_hmsf (0, 1, 1, 1, sub::Rational (25, 1));
68                 s.to = sub::Time::from_hmsf (0, 1, 2, 10, sub::Rational (25, 1));
69
70                 sub::Line l;
71                 l.vertical_position.line = 0;
72                 l.vertical_position.lines = 32;
73                 l.vertical_position.reference = sub::TOP_OF_SCREEN;
74
75                 sub::Block b;
76                 b.text = "This is some ";
77                 b.font = "Arial";
78                 b.font_size.set_points (42);
79                 l.blocks.push_back (b);
80
81                 b.text = "underline";
82                 b.underline = true;
83                 l.blocks.push_back (b);
84
85                 b.text = " and some ";
86                 b.underline = false;
87                 l.blocks.push_back (b);
88
89                 b.text = "underlined italic";
90                 b.underline = true;
91                 b.italic = true;
92                 l.blocks.push_back (b);
93
94                 s.lines.push_back (l);
95                 subs.push_back (s);
96         }
97
98         sub::write_stl_binary (
99                 subs,
100                 25,
101                 sub::LANGUAGE_GERMAN,
102                 "Original programme title",
103                 "Original episode title",
104                 "TX program title",
105                 "TX episode title",
106                 "TX name",
107                 "TX contact",
108                 "140212",
109                 "140213",
110                 0,
111                 "GBR",
112                 "Publisher",
113                 "Editor name",
114                 "Editor contact",
115                 "build/test/test.stl"
116                 );
117
118 }
119