mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-05 05:55:03 -04:00
Run black.
This commit is contained in:
parent
b37c472419
commit
8b3d9b6b19
75 changed files with 1626 additions and 2277 deletions
|
@ -22,7 +22,6 @@ from . import unittest
|
|||
|
||||
|
||||
class PreviewTestCase(unittest.TestCase):
|
||||
|
||||
def test_long_summarize(self):
|
||||
example_paras = [
|
||||
u"""Tromsø (Norwegian pronunciation: [ˈtrʊmsœ] ( listen); Northern Sami:
|
||||
|
@ -32,7 +31,6 @@ class PreviewTestCase(unittest.TestCase):
|
|||
alternative spellings of the city.Tromsø is considered the northernmost
|
||||
city in the world with a population above 50,000. The most populous town
|
||||
north of it is Alta, Norway, with a population of 14,272 (2013).""",
|
||||
|
||||
u"""Tromsø lies in Northern Norway. The municipality has a population of
|
||||
(2015) 72,066, but with an annual influx of students it has over 75,000
|
||||
most of the year. It is the largest urban area in Northern Norway and the
|
||||
|
@ -46,7 +44,6 @@ class PreviewTestCase(unittest.TestCase):
|
|||
Sandnessund Bridge. Tromsø Airport connects the city to many destinations
|
||||
in Europe. The city is warmer than most other places located on the same
|
||||
latitude, due to the warming effect of the Gulf Stream.""",
|
||||
|
||||
u"""The city centre of Tromsø contains the highest number of old wooden
|
||||
houses in Northern Norway, the oldest house dating from 1789. The Arctic
|
||||
Cathedral, a modern church from 1965, is probably the most famous landmark
|
||||
|
@ -67,7 +64,7 @@ class PreviewTestCase(unittest.TestCase):
|
|||
u" the city of Tromsø. Outside of Norway, Tromso and Tromsö are"
|
||||
u" alternative spellings of the city.Tromsø is considered the northernmost"
|
||||
u" city in the world with a population above 50,000. The most populous town"
|
||||
u" north of it is Alta, Norway, with a population of 14,272 (2013)."
|
||||
u" north of it is Alta, Norway, with a population of 14,272 (2013).",
|
||||
)
|
||||
|
||||
desc = summarize_paragraphs(example_paras[1:], min_size=200, max_size=500)
|
||||
|
@ -80,7 +77,7 @@ class PreviewTestCase(unittest.TestCase):
|
|||
u" third largest north of the Arctic Circle (following Murmansk and Norilsk)."
|
||||
u" Most of Tromsø, including the city centre, is located on the island of"
|
||||
u" Tromsøya, 350 kilometres (217 mi) north of the Arctic Circle. In 2012,"
|
||||
u" Tromsøya had a population of 36,088. Substantial parts of the urban…"
|
||||
u" Tromsøya had a population of 36,088. Substantial parts of the urban…",
|
||||
)
|
||||
|
||||
def test_short_summarize(self):
|
||||
|
@ -88,11 +85,9 @@ class PreviewTestCase(unittest.TestCase):
|
|||
u"Tromsø (Norwegian pronunciation: [ˈtrʊmsœ] ( listen); Northern Sami:"
|
||||
u" Romsa; Finnish: Tromssa[2] Kven: Tromssa) is a city and municipality in"
|
||||
u" Troms county, Norway.",
|
||||
|
||||
u"Tromsø lies in Northern Norway. The municipality has a population of"
|
||||
u" (2015) 72,066, but with an annual influx of students it has over 75,000"
|
||||
u" most of the year.",
|
||||
|
||||
u"The city centre of Tromsø contains the highest number of old wooden"
|
||||
u" houses in Northern Norway, the oldest house dating from 1789. The Arctic"
|
||||
u" Cathedral, a modern church from 1965, is probably the most famous landmark"
|
||||
|
@ -109,7 +104,7 @@ class PreviewTestCase(unittest.TestCase):
|
|||
u"\n"
|
||||
u"Tromsø lies in Northern Norway. The municipality has a population of"
|
||||
u" (2015) 72,066, but with an annual influx of students it has over 75,000"
|
||||
u" most of the year."
|
||||
u" most of the year.",
|
||||
)
|
||||
|
||||
def test_small_then_large_summarize(self):
|
||||
|
@ -117,7 +112,6 @@ class PreviewTestCase(unittest.TestCase):
|
|||
u"Tromsø (Norwegian pronunciation: [ˈtrʊmsœ] ( listen); Northern Sami:"
|
||||
u" Romsa; Finnish: Tromssa[2] Kven: Tromssa) is a city and municipality in"
|
||||
u" Troms county, Norway.",
|
||||
|
||||
u"Tromsø lies in Northern Norway. The municipality has a population of"
|
||||
u" (2015) 72,066, but with an annual influx of students it has over 75,000"
|
||||
u" most of the year."
|
||||
|
@ -138,7 +132,7 @@ class PreviewTestCase(unittest.TestCase):
|
|||
u" (2015) 72,066, but with an annual influx of students it has over 75,000"
|
||||
u" most of the year. The city centre of Tromsø contains the highest number"
|
||||
u" of old wooden houses in Northern Norway, the oldest house dating from"
|
||||
u" 1789. The Arctic Cathedral, a modern church from…"
|
||||
u" 1789. The Arctic Cathedral, a modern church from…",
|
||||
)
|
||||
|
||||
|
||||
|
@ -155,10 +149,7 @@ class PreviewUrlTestCase(unittest.TestCase):
|
|||
|
||||
og = decode_and_calc_og(html, "http://example.com/test.html")
|
||||
|
||||
self.assertEquals(og, {
|
||||
u"og:title": u"Foo",
|
||||
u"og:description": u"Some text."
|
||||
})
|
||||
self.assertEquals(og, {u"og:title": u"Foo", u"og:description": u"Some text."})
|
||||
|
||||
def test_comment(self):
|
||||
html = u"""
|
||||
|
@ -173,10 +164,7 @@ class PreviewUrlTestCase(unittest.TestCase):
|
|||
|
||||
og = decode_and_calc_og(html, "http://example.com/test.html")
|
||||
|
||||
self.assertEquals(og, {
|
||||
u"og:title": u"Foo",
|
||||
u"og:description": u"Some text."
|
||||
})
|
||||
self.assertEquals(og, {u"og:title": u"Foo", u"og:description": u"Some text."})
|
||||
|
||||
def test_comment2(self):
|
||||
html = u"""
|
||||
|
@ -194,10 +182,13 @@ class PreviewUrlTestCase(unittest.TestCase):
|
|||
|
||||
og = decode_and_calc_og(html, "http://example.com/test.html")
|
||||
|
||||
self.assertEquals(og, {
|
||||
u"og:title": u"Foo",
|
||||
u"og:description": u"Some text.\n\nSome more text.\n\nText\n\nMore text"
|
||||
})
|
||||
self.assertEquals(
|
||||
og,
|
||||
{
|
||||
u"og:title": u"Foo",
|
||||
u"og:description": u"Some text.\n\nSome more text.\n\nText\n\nMore text",
|
||||
},
|
||||
)
|
||||
|
||||
def test_script(self):
|
||||
html = u"""
|
||||
|
@ -212,10 +203,7 @@ class PreviewUrlTestCase(unittest.TestCase):
|
|||
|
||||
og = decode_and_calc_og(html, "http://example.com/test.html")
|
||||
|
||||
self.assertEquals(og, {
|
||||
u"og:title": u"Foo",
|
||||
u"og:description": u"Some text."
|
||||
})
|
||||
self.assertEquals(og, {u"og:title": u"Foo", u"og:description": u"Some text."})
|
||||
|
||||
def test_missing_title(self):
|
||||
html = u"""
|
||||
|
@ -228,10 +216,7 @@ class PreviewUrlTestCase(unittest.TestCase):
|
|||
|
||||
og = decode_and_calc_og(html, "http://example.com/test.html")
|
||||
|
||||
self.assertEquals(og, {
|
||||
u"og:title": None,
|
||||
u"og:description": u"Some text."
|
||||
})
|
||||
self.assertEquals(og, {u"og:title": None, u"og:description": u"Some text."})
|
||||
|
||||
def test_h1_as_title(self):
|
||||
html = u"""
|
||||
|
@ -245,10 +230,7 @@ class PreviewUrlTestCase(unittest.TestCase):
|
|||
|
||||
og = decode_and_calc_og(html, "http://example.com/test.html")
|
||||
|
||||
self.assertEquals(og, {
|
||||
u"og:title": u"Title",
|
||||
u"og:description": u"Some text."
|
||||
})
|
||||
self.assertEquals(og, {u"og:title": u"Title", u"og:description": u"Some text."})
|
||||
|
||||
def test_missing_title_and_broken_h1(self):
|
||||
html = u"""
|
||||
|
@ -262,7 +244,4 @@ class PreviewUrlTestCase(unittest.TestCase):
|
|||
|
||||
og = decode_and_calc_og(html, "http://example.com/test.html")
|
||||
|
||||
self.assertEquals(og, {
|
||||
u"og:title": None,
|
||||
u"og:description": u"Some text."
|
||||
})
|
||||
self.assertEquals(og, {u"og:title": None, u"og:description": u"Some text."})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue