]> gitweb.factorcode.org Git - factor.git/blob - extra/subrip-subtitles/subrip-subtitles-tests.factor
b90346f687dd72697f709d8abd132cbf6ad3f18d
[factor.git] / extra / subrip-subtitles / subrip-subtitles-tests.factor
1 ! Copyright (C) 2014 Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: calendar subrip-subtitles tools.test ;
4 IN: subrip-subtitles.tests
5
6 {
7     {
8         T{ srt-chunk
9             { id 1 }
10             { begin-time T{ duration { second 10.5 } } }
11             { end-time T{ duration { second 13.0 } } }
12             { text "Elephant's Dream" }
13         }
14         T{ srt-chunk
15             { id 2 }
16             { begin-time T{ duration { second 15.0 } } }
17             { end-time T{ duration { second 18.0 } } }
18             { text "At the left we can see..." }
19         }
20     }
21 } [
22 """1
23 00:00:10,500 --> 00:00:13,000
24 Elephant's Dream
25
26 2
27 00:00:15,000 --> 00:00:18,000
28 At the left we can see..."""
29     parse-srt-string
30 ] unit-test
31
32 {
33     {
34         T{ srt-chunk
35             { id 1 }
36             { begin-time T{ duration { second 10.5 } } }
37             { end-time T{ duration { second 13.0 } } }
38             { rect { { 63 43 } { 223 58 } } }
39             { text "<i>Elephant's Dream</i>" }
40         }
41         T{ srt-chunk
42             { id 2 }
43             { begin-time T{ duration { second 15.0 } } }
44             { end-time T{ duration { second 18.0 } } }
45             { rect { { 53 438 } { 303 453 } } }
46             { text
47                 "<font color=\"cyan\">At the left we can see...</font>"
48             }
49         }
50     }
51 } [
52 """1
53 00:00:10,500 --> 00:00:13,000  X1:63 X2:223 Y1:43 Y2:58
54 <i>Elephant's Dream</i>
55
56 2
57 00:00:15,000 --> 00:00:18,000  X1:53 X2:303 Y1:438 Y2:453
58 <font color="cyan">At the left we can see...</font>""" 
59     parse-srt-string
60 ] unit-test