aboutsummaryrefslogtreecommitdiffstats
path: root/library/epub-meta/test/test.phpunit.php
blob: 88a9aa914e495ed18c5a818ea569d9535c304d58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php

require '../epub.php';


class EPubTest extends PHPUnit_Framework_TestCase {

    protected $epub;

    protected function setUp(){
        // sometime I might have accidentally broken the test file
        if(filesize('test.epub') != 768780){
            die('test.epub has wrong size, make sure it\'s unmodified');
        }

        // we work on a copy to test saving
        if(!copy('test.epub','test.copy.epub')){
            die('failed to create copy of the test book');
        }

        $this->epub = new EPub('test.copy.epub');
    }

    protected function tearDown(){
        unlink('test.copy.epub');
    }

    public function testAuthors(){
        // read curent value
        $this->assertEquals(
            $this->epub->Authors(),
            array('Shakespeare, William' => 'William Shakespeare')
        );

        // remove value with string
        $this->assertEquals(
            $this->epub->Authors(''),
            array()
        );

        // set single value by String

        $this->assertEquals(
            $this->epub->Authors('John Doe'),
            array('John Doe' => 'John Doe')
        );

        // set single value by indexed array
        $this->assertEquals(
            $this->epub->Authors(array('John Doe')),
            array('John Doe' => 'John Doe')
        );

        // remove value with array
        $this->assertEquals(
            $this->epub->Authors(array()),
            array()
        );

        // set single value by associative array
        $this->assertEquals(
            $this->epub->Authors(array('Doe, John' => 'John Doe')),
            array('Doe, John' => 'John Doe')
        );

        // set multi value by string
        $this->assertEquals(
            $this->epub->Authors('John Doe, Jane Smith'),
            array('John Doe' => 'John Doe', 'Jane Smith' => 'Jane Smith')
        );

        // set multi value by indexed array
        $this->assertEquals(
            $this->epub->Authors(array('John Doe', 'Jane Smith')),
            array('John Doe' => 'John Doe', 'Jane Smith' => 'Jane Smith')
        );

        // set multi value by associative  array
        $this->assertEquals(
            $this->epub->Authors(array('Doe, John' => 'John Doe', 'Smith, Jane' => 'Jane Smith')),
            array('Doe, John' => 'John Doe', 'Smith, Jane' => 'Jane Smith')
        );

        // check escaping
        $this->assertEquals(
            $this->epub->Authors(array('Doe, John&nbsp;' => 'John Doe&nbsp;')),
            array('Doe, John&nbsp;' => 'John Doe&nbsp;')
        );
    }

    public function testTitle(){
        // get current value
        $this->assertEquals(
            $this->epub->Title(),
            'Romeo and Juliet'
        );

        // delete current value
        $this->assertEquals(
            $this->epub->Title(''),
            ''
        );

        // get current value
        $this->assertEquals(
            $this->epub->Title(),
            ''
        );

        // set new value
        $this->assertEquals(
            $this->epub->Title('Foo Bar'),
            'Foo Bar'
        );

        // check escaping
        $this->assertEquals(
            $this->epub->Title('Foo&nbsp;Bar'),
            'Foo&nbsp;Bar'
        );
    }

    public function testSubject(){
        // get current values
        $this->assertEquals(
            $this->epub->Subjects(),
            array('Fiction','Drama','Romance')
        );

        // delete current values with String
        $this->assertEquals(
            $this->epub->Subjects(''),
            array()
        );

        // set new values with String
        $this->assertEquals(
            $this->epub->Subjects('Fiction, Drama, Romance'),
            array('Fiction','Drama','Romance')
        );

        // delete current values with Array
        $this->assertEquals(
            $this->epub->Subjects(array()),
            array()
        );

        // set new values with array
        $this->assertEquals(
            $this->epub->Subjects(array('Fiction','Drama','Romance')),
            array('Fiction','Drama','Romance')
        );

        // check escaping
        $this->assertEquals(
            $this->epub->Subjects(array('Fiction','Drama&nbsp;','Romance')),
            array('Fiction','Drama&nbsp;','Romance')
        );
    }


    public function testCover(){
        // read current cover
        $cover = $this->epub->Cover();
        $this->assertEquals($cover['mime'],'image/png');
        $this->assertEquals($cover['found'],'OPS/images/cover.png');
        $this->assertEquals(strlen($cover['data']), 657911);

        // delete cover
        $cover = $this->epub->Cover('');
        $this->assertEquals($cover['mime'],'image/gif');
        $this->assertEquals($cover['found'],false);
        $this->assertEquals(strlen($cover['data']), 42);

        // set new cover (will return a not-found as it's not yet saved)
        $cover = $this->epub->Cover('test.jpg','image/jpeg');
        $this->assertEquals($cover['mime'],'image/jpeg');
        $this->assertEquals($cover['found'],'OPS/php-epub-meta-cover.img');
        $this->assertEquals(strlen($cover['data']), 0);

        // save
        $this->epub->save();

        // read now changed cover
        $cover = $this->epub->Cover();
        $this->assertEquals($cover['mime'],'image/jpeg');
        $this->assertEquals($cover['found'],'OPS/php-epub-meta-cover.img');
        $this->assertEquals(strlen($cover['data']), filesize('test.jpg'));
    }
}