-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtldr_test.go
164 lines (155 loc) · 5.35 KB
/
tldr_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
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
package tldr_test
import (
. "github.com/didasy/tldr"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"io/ioutil"
"strings"
)
var (
err error
raw []byte
text, result, shortResult, resultCentrality, shortResultCentrality string
summarizer *Bag
)
func init() {
raw, err = ioutil.ReadFile("./sample.txt")
if err != nil {
panic(err)
}
text = string(raw)
raw, err = ioutil.ReadFile("./result.txt")
if err != nil {
panic(err)
}
result = string(raw)
raw, err = ioutil.ReadFile("./short.result.txt")
if err != nil {
panic(err)
}
shortResult = string(raw)
raw, err = ioutil.ReadFile("./result_centrality.txt")
if err != nil {
panic(err)
}
resultCentrality = string(raw)
raw, err = ioutil.ReadFile("./short.result_centrality.txt")
if err != nil {
panic(err)
}
shortResultCentrality = string(raw)
}
var _ = Describe("tldr", func() {
Describe("Test summarizing using default hamming weighing and pagerank algorithm", func() {
Context("Summarize sample.txt to 3 sentences", func() {
It("Should return a string match with result.txt without error", func() {
summarizer = New()
sums, err := summarizer.Summarize(text, 3)
summarizer.Algorithm = ""
summarizer.Weighing = ""
sum := strings.Join(sums, "\n\n")
Expect(err).To(BeNil())
Expect(sum).To(BeAssignableToTypeOf(""))
Expect(sum).NotTo(BeEmpty())
Expect(sum).To(Equal(strings.TrimSpace(result)))
})
})
Context("Summarize sample.txt to 1 sentence but by giving it invalid parameter", func() {
It("Should return a string with one sentence without error", func() {
summarizer = New()
summarizer.Algorithm = ""
summarizer.Weighing = ""
sums, err := summarizer.Summarize(text, 10000)
sum := strings.Join(sums, "\n\n")
Expect(err).To(BeNil())
Expect(sum).To(BeAssignableToTypeOf(""))
Expect(sum).NotTo(BeEmpty())
Expect(sum).To(Equal(strings.TrimSpace(string(shortResult))))
})
})
})
Describe("Test summarizing using jaccard weighing and pagerank algorithm", func() {
Context("Summarize sample.txt to 3 sentences", func() {
It("Should return a string match with result.txt without error", func() {
summarizer = New()
summarizer.Weighing = "jaccard"
summarizer.Algorithm = ""
sums, err := summarizer.Summarize(text, 3)
sum := strings.Join(sums, "\n\n")
Expect(err).To(BeNil())
Expect(sum).To(BeAssignableToTypeOf(""))
Expect(sum).NotTo(BeEmpty())
Expect(sum).To(Equal(strings.TrimSpace(result)))
})
})
Context("Summarize sample.txt to 1 sentence but by giving it invalid parameter", func() {
It("Should return a string with one sentence without error", func() {
summarizer = New()
summarizer.Weighing = "jaccard"
summarizer.Algorithm = ""
sums, err := summarizer.Summarize(text, 10000)
sum := strings.Join(sums, "\n\n")
Expect(err).To(BeNil())
Expect(sum).To(BeAssignableToTypeOf(""))
Expect(sum).NotTo(BeEmpty())
Expect(sum).To(Equal(strings.TrimSpace(string(shortResult))))
})
})
})
Describe("Test summarizing using invalid weighing name and invalid algorithm", func() {
Context("Summarize sample.txt to 3 sentences", func() {
It("Should return a string match with result.txt without error", func() {
summarizer = New()
summarizer.Weighing = "invalid"
summarizer.Algorithm = "invalid"
sums, err := summarizer.Summarize(text, 3)
sum := strings.Join(sums, "\n\n")
Expect(err).To(BeNil())
Expect(sum).To(BeAssignableToTypeOf(""))
Expect(sum).NotTo(BeEmpty())
Expect(sum).To(Equal(strings.TrimSpace(result)))
})
})
Context("Summarize sample.txt to 1 sentence but by giving it invalid parameter", func() {
It("Should return a string with one sentence without error", func() {
summarizer = New()
summarizer.Weighing = "invalid"
summarizer.Algorithm = "invalid"
sums, err := summarizer.Summarize(text, 10000)
sum := strings.Join(sums, "\n\n")
Expect(err).To(BeNil())
Expect(sum).To(BeAssignableToTypeOf(""))
Expect(sum).NotTo(BeEmpty())
Expect(sum).To(Equal(strings.TrimSpace(string(shortResult))))
})
})
})
Describe("Test summarizing using centrality algorithm", func() {
Context("Summarize sample.txt to 3 sentences", func() {
It("Should return a string match with result_centrality.txt without error", func() {
summarizer = New()
summarizer.Algorithm = "centrality"
summarizer.Weighing = "pagerank"
sums, err := summarizer.Summarize(text, 3)
sum := strings.Join(sums, "\n\n")
Expect(err).To(BeNil())
Expect(sum).To(BeAssignableToTypeOf(""))
Expect(sum).NotTo(BeEmpty())
Expect(sum).To(Equal(strings.TrimSpace(resultCentrality)))
})
})
Context("Summarize sample.txt to 1 sentence but by giving it invalid parameter", func() {
It("Should return a string with one sentence without error", func() {
summarizer = New()
summarizer.Algorithm = "centrality"
summarizer.Weighing = "pagerank"
sums, err := summarizer.Summarize(text, 10000)
sum := strings.Join(sums, "\n\n")
Expect(err).To(BeNil())
Expect(sum).To(BeAssignableToTypeOf(""))
Expect(sum).NotTo(BeEmpty())
Expect(sum).To(Equal(strings.TrimSpace(string(shortResultCentrality))))
})
})
})
})