-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathtest_readability.py
92 lines (73 loc) · 4.04 KB
/
test_readability.py
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
import unittest
from readability import Readability
class ReadabilityTest(unittest.TestCase):
def setUp(self):
text = """
In linguistics, the Gunning fog index is a readability test for English writing. The index estimates the years of formal education a person needs to understand the text on the first reading. For instance, a fog index of 12 requires the reading level of a United States high school senior (around 18 years old). The test was developed in 1952 by Robert Gunning, an American businessman who had been involved in newspaper and textbook publishing.
The fog index is commonly used to confirm that text can be read easily by the intended audience. Texts for a wide audience generally need a fog index less than 12. Texts requiring near-universal understanding generally need an index less than 8.
"""
self.readability = Readability(text)
def test_ari(self):
r = self.readability.ari()
print(r)
self.assertEqual(9.551245421245422, r.score)
self.assertEqual(['10'], r.grade_levels)
self.assertEqual([15, 16], r.ages)
def test_coleman_liau(self):
r = self.readability.coleman_liau()
print(r)
self.assertEqual(10.673162393162393, r.score)
self.assertEqual('11', r.grade_level)
def test_dale_chall(self):
r = self.readability.dale_chall()
print(r)
self.assertEqual(9.32399010989011, r.score)
self.assertEqual(['college'], r.grade_levels)
def test_flesch(self):
r = self.readability.flesch()
print(r)
self.assertEqual(51.039230769230784, r.score)
self.assertEqual(['10', '11', '12'], r.grade_levels)
self.assertEqual('fairly_difficult', r.ease)
def test_flesch_kincaid(self):
r = self.readability.flesch_kincaid()
print(r)
self.assertEqual(10.125531135531137, r.score)
self.assertEqual('10', r.grade_level)
def test_gunning_fog(self):
r = self.readability.gunning_fog()
print(r)
self.assertEqual(12.4976800976801, r.score)
self.assertEqual('12', r.grade_level)
def test_linsear_write(self):
r = self.readability.linsear_write()
print(r)
self.assertEqual(11.214285714285714, r.score)
self.assertEqual('11', r.grade_level)
def test_smog(self):
text = """
In linguistics, the Gunning fog index is a readability test for English writing. The index estimates the years of formal education a person needs to understand the text on the first reading. For instance, a fog index of 12 requires the reading level of a United States high school senior (around 18 years old). The test was developed in 1952 by Robert Gunning, an American businessman who had been involved in newspaper and textbook publishing.
The fog index is commonly used to confirm that text can be read easily by the intended audience. Texts for a wide audience generally need a fog index less than 12. Texts requiring near-universal understanding generally need an index less than 8.
"""
text = ' '.join(text for i in range(0, 5))
readability = Readability(text)
#Test SMOG with 30 sentences
r1 = readability.smog()
#Test SMOG with all sentences
r2 = readability.smog(all_sentences=True)
print("all_sentences=False: %s ; all_sentences=True: %s" % (r1,r2))
self.assertEqual(12.516099999999998, r1.score)
self.assertEqual('13', r1.grade_level)
self.assertEqual(12.785403640627713, r2.score)
self.assertEqual('13', r2.grade_level)
def test_spache(self):
r = self.readability.spache()
print(r)
self.assertEqual(7.164945054945054, r.score)
self.assertEqual('7', r.grade_level)
def test_print_stats(self):
stats = self.readability.statistics()
self.assertEqual(562, stats['num_letters'])
self.assertEqual(117, stats['num_words'])
self.assertEqual(7, stats['num_sentences'])
self.assertEqual(20, stats['num_polysyllabic_words'])