forked from go-shiori/go-epub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
write_test.go
94 lines (89 loc) · 2.09 KB
/
write_test.go
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
package epub
import (
"bytes"
"io"
"os"
"path/filepath"
"testing"
)
func TestEpubWriteTo(t *testing.T) {
e, err := NewEpub(testEpubTitle)
if err != nil {
t.Error(err)
}
var b bytes.Buffer
n, err := e.WriteTo(&b)
if err != nil {
t.Fatal(err)
}
if int64(len(b.Bytes())) != n {
t.Fatalf("Expected size %v, got %v", len(b.Bytes()), n)
}
}
func TestWriteToErrors(t *testing.T) {
t.Run("CSS", func(t *testing.T) {
e, err := NewEpub(testEpubTitle)
if err != nil {
t.Error(err)
}
testWriteToErrors(t, e, e.AddCSS, "cover.css")
})
t.Run("Font", func(t *testing.T) {
e, err := NewEpub(testEpubTitle)
if err != nil {
t.Error(err)
}
testWriteToErrors(t, e, e.AddFont, "redacted-script-regular.ttf")
})
t.Run("Image", func(t *testing.T) {
e, err := NewEpub(testEpubTitle)
if err != nil {
t.Error(err)
}
testWriteToErrors(t, e, e.AddImage, "gophercolor16x16.png")
})
t.Run("Video", func(t *testing.T) {
e, err := NewEpub(testEpubTitle)
if err != nil {
t.Error(err)
}
testWriteToErrors(t, e, e.AddVideo, "sample_640x360.mp4")
})
t.Run("Audio", func(t *testing.T) {
e, err := NewEpub(testEpubTitle)
if err != nil {
t.Error(err)
}
testWriteToErrors(t, e, e.AddAudio, "sample_audio.wav")
})
}
func testWriteToErrors(t *testing.T, e *Epub, adder func(string, string) (string, error), name string) {
// Copy testdata to temp file
data, err := os.Open(filepath.Join("testdata", name))
if err != nil {
t.Fatalf("cannot open testdata: %v", err)
}
defer data.Close()
temp, err := os.CreateTemp("", "temp")
if err != nil {
t.Fatalf("unable to create temp file: %v", err)
}
_, err = io.Copy(temp, data)
if err != nil {
t.Fatalf("unable to copy tmp file to destination: %v", err)
}
temp.Close()
// Add temp file to epub
if _, err := adder(temp.Name(), ""); err != nil {
t.Fatalf("unable to add temp file: %v", err)
}
// Delete temp file
if err := os.Remove(temp.Name()); err != nil {
t.Fatalf("unable to delete temp file: %v", err)
}
// Write epub to buffer
var b bytes.Buffer
if _, err := e.WriteTo(&b); err == nil {
t.Fatal("Expected error")
}
}