forked from discoproject/disco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_simple.py
34 lines (26 loc) · 973 Bytes
/
test_simple.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
from disco.test import TestCase, TestJob
from disco.compat import bytes_to_str
class SimpleJob(TestJob):
@staticmethod
def map(e, params):
yield int(e), (bytes_to_str(e)).strip()
@staticmethod
def reduce(iter, out, params):
for k, v in sorted(iter):
out.add(k, v)
class SimplerJob(SimpleJob):
@staticmethod
def reduce(iter, params):
return sorted(iter)
class SimpleTestCase(TestCase):
input = [3, 5, 7, 11, 13, 17, 19, 23, 29, 31]
def answers(self):
return ((i, str(i)) for i in self.input for x in range(10))
def serve(self, path):
return '\n'.join([path] * 10)
def test_simple(self):
self.job = SimpleJob().run(input=self.test_server.urls(self.input))
self.assertResults(self.job, self.answers())
def test_simpler(self):
self.job = SimplerJob().run(input=self.test_server.urls(self.input))
self.assertResults(self.job, self.answers())