forked from discoproject/disco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_encode.py
31 lines (25 loc) · 959 Bytes
/
test_encode.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
import base64, string
from disco.test import TestCase, TestJob, TestPipe
from disco.util import kvgroup, shuffled
from disco.compat import bytes_to_str, str_to_bytes
from disco.worker.pipeline.worker import Stage
import time
import sys
def Map(interface, state, label, inp):
out = interface.output(0)
for i in inp:
out.add(str_to_bytes(i), u'\x00\x00')
def Reduce(interface, state, label, inp):
out = interface.output(0)
for k, vs in kvgroup(inp):
out.add(str_to_bytes(k), 0)
class SortJob(TestPipe):
pipeline = [("split", Stage("Map", process=Map)),
("group_label", Stage("Reduce", process=Reduce, combine=True, sort=True))]
class SortTestCase(TestCase):
def serve(self, path):
return 'a'
def runTest(self):
self.job = SortJob().run(input=self.test_server.urls([''] * 10))
result = [i for i in self.results(self.job)]
self.assertResults(self.job, [(b'a', 0)])