blob: 6584ff57b4a35dd8f1d73d7b426d1e5976669383 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001#! /usr/bin/env python3
2#
Brad Bishopa34c0302019-09-23 22:34:48 -04003# Copyright (C) 2018-2019 Garmin Ltd.
Brad Bishop19323692019-04-05 15:28:33 -04004#
Brad Bishopc342db32019-05-15 21:57:59 -04005# SPDX-License-Identifier: GPL-2.0-only
Brad Bishop19323692019-04-05 15:28:33 -04006#
Brad Bishop19323692019-04-05 15:28:33 -04007
Brad Bishopa34c0302019-09-23 22:34:48 -04008from . import create_server, create_client
Brad Bishop19323692019-04-05 15:28:33 -04009import hashlib
Brad Bishopa34c0302019-09-23 22:34:48 -040010import logging
11import multiprocessing
12import sys
Brad Bishop08902b02019-08-20 09:16:51 -040013import tempfile
Brad Bishopa34c0302019-09-23 22:34:48 -040014import threading
15import unittest
Brad Bishop19323692019-04-05 15:28:33 -040016
Brad Bishopa34c0302019-09-23 22:34:48 -040017
18class TestHashEquivalenceServer(object):
19 METHOD = 'TestMethod'
20
21 def _run_server(self):
22 # logging.basicConfig(level=logging.DEBUG, filename='bbhashserv.log', filemode='w',
23 # format='%(levelname)s %(filename)s:%(lineno)d %(message)s')
24 self.server.serve_forever()
25
Brad Bishop19323692019-04-05 15:28:33 -040026 def setUp(self):
Brad Bishopa34c0302019-09-23 22:34:48 -040027 if sys.version_info < (3, 5, 0):
28 self.skipTest('Python 3.5 or later required')
29
30 self.temp_dir = tempfile.TemporaryDirectory(prefix='bb-hashserv')
31 self.dbfile = os.path.join(self.temp_dir.name, 'db.sqlite')
32
33 self.server = create_server(self.get_server_addr(), self.dbfile)
34 self.server_thread = multiprocessing.Process(target=self._run_server)
Brad Bishop08902b02019-08-20 09:16:51 -040035 self.server_thread.daemon = True
Brad Bishop19323692019-04-05 15:28:33 -040036 self.server_thread.start()
Brad Bishopa34c0302019-09-23 22:34:48 -040037 self.client = create_client(self.server.address)
Brad Bishop19323692019-04-05 15:28:33 -040038
39 def tearDown(self):
40 # Shutdown server
41 s = getattr(self, 'server', None)
42 if s is not None:
Brad Bishop08902b02019-08-20 09:16:51 -040043 self.server_thread.terminate()
Brad Bishop19323692019-04-05 15:28:33 -040044 self.server_thread.join()
Brad Bishopa34c0302019-09-23 22:34:48 -040045 self.client.close()
46 self.temp_dir.cleanup()
Brad Bishop19323692019-04-05 15:28:33 -040047
48 def test_create_hash(self):
49 # Simple test that hashes can be created
50 taskhash = '35788efcb8dfb0a02659d81cf2bfd695fb30faf9'
51 outhash = '2765d4a5884be49b28601445c2760c5f21e7e5c0ee2b7e3fce98fd7e5970796f'
52 unihash = 'f46d3fbb439bd9b921095da657a4de906510d2cd'
53
Brad Bishopa34c0302019-09-23 22:34:48 -040054 result = self.client.get_unihash(self.METHOD, taskhash)
55 self.assertIsNone(result, msg='Found unexpected task, %r' % result)
Brad Bishop19323692019-04-05 15:28:33 -040056
Brad Bishopa34c0302019-09-23 22:34:48 -040057 result = self.client.report_unihash(taskhash, self.METHOD, outhash, unihash)
58 self.assertEqual(result['unihash'], unihash, 'Server returned bad unihash')
Brad Bishop19323692019-04-05 15:28:33 -040059
60 def test_create_equivalent(self):
61 # Tests that a second reported task with the same outhash will be
62 # assigned the same unihash
63 taskhash = '53b8dce672cb6d0c73170be43f540460bfc347b4'
64 outhash = '5a9cb1649625f0bf41fc7791b635cd9c2d7118c7f021ba87dcd03f72b67ce7a8'
65 unihash = 'f37918cc02eb5a520b1aff86faacbc0a38124646'
Brad Bishopa34c0302019-09-23 22:34:48 -040066
67 result = self.client.report_unihash(taskhash, self.METHOD, outhash, unihash)
68 self.assertEqual(result['unihash'], unihash, 'Server returned bad unihash')
Brad Bishop19323692019-04-05 15:28:33 -040069
70 # Report a different task with the same outhash. The returned unihash
71 # should match the first task
72 taskhash2 = '3bf6f1e89d26205aec90da04854fbdbf73afe6b4'
73 unihash2 = 'af36b199320e611fbb16f1f277d3ee1d619ca58b'
Brad Bishopa34c0302019-09-23 22:34:48 -040074 result = self.client.report_unihash(taskhash2, self.METHOD, outhash, unihash2)
75 self.assertEqual(result['unihash'], unihash, 'Server returned bad unihash')
Brad Bishop19323692019-04-05 15:28:33 -040076
77 def test_duplicate_taskhash(self):
78 # Tests that duplicate reports of the same taskhash with different
79 # outhash & unihash always return the unihash from the first reported
80 # taskhash
81 taskhash = '8aa96fcffb5831b3c2c0cb75f0431e3f8b20554a'
82 outhash = 'afe240a439959ce86f5e322f8c208e1fedefea9e813f2140c81af866cc9edf7e'
83 unihash = '218e57509998197d570e2c98512d0105985dffc9'
Brad Bishopa34c0302019-09-23 22:34:48 -040084 self.client.report_unihash(taskhash, self.METHOD, outhash, unihash)
Brad Bishop19323692019-04-05 15:28:33 -040085
Brad Bishopa34c0302019-09-23 22:34:48 -040086 result = self.client.get_unihash(self.METHOD, taskhash)
87 self.assertEqual(result, unihash)
Brad Bishop19323692019-04-05 15:28:33 -040088
89 outhash2 = '0904a7fe3dc712d9fd8a74a616ddca2a825a8ee97adf0bd3fc86082c7639914d'
90 unihash2 = 'ae9a7d252735f0dafcdb10e2e02561ca3a47314c'
Brad Bishopa34c0302019-09-23 22:34:48 -040091 self.client.report_unihash(taskhash, self.METHOD, outhash2, unihash2)
Brad Bishop19323692019-04-05 15:28:33 -040092
Brad Bishopa34c0302019-09-23 22:34:48 -040093 result = self.client.get_unihash(self.METHOD, taskhash)
94 self.assertEqual(result, unihash)
Brad Bishop19323692019-04-05 15:28:33 -040095
96 outhash3 = '77623a549b5b1a31e3732dfa8fe61d7ce5d44b3370f253c5360e136b852967b4'
97 unihash3 = '9217a7d6398518e5dc002ed58f2cbbbc78696603'
Brad Bishopa34c0302019-09-23 22:34:48 -040098 self.client.report_unihash(taskhash, self.METHOD, outhash3, unihash3)
Brad Bishop19323692019-04-05 15:28:33 -040099
Brad Bishopa34c0302019-09-23 22:34:48 -0400100 result = self.client.get_unihash(self.METHOD, taskhash)
101 self.assertEqual(result, unihash)
102
103 def test_stress(self):
104 def query_server(failures):
105 client = Client(self.server.address)
106 try:
107 for i in range(1000):
108 taskhash = hashlib.sha256()
109 taskhash.update(str(i).encode('utf-8'))
110 taskhash = taskhash.hexdigest()
111 result = client.get_unihash(self.METHOD, taskhash)
112 if result != taskhash:
113 failures.append("taskhash mismatch: %s != %s" % (result, taskhash))
114 finally:
115 client.close()
116
117 # Report hashes
118 for i in range(1000):
119 taskhash = hashlib.sha256()
120 taskhash.update(str(i).encode('utf-8'))
121 taskhash = taskhash.hexdigest()
122 self.client.report_unihash(taskhash, self.METHOD, taskhash, taskhash)
123
124 failures = []
125 threads = [threading.Thread(target=query_server, args=(failures,)) for t in range(100)]
126
127 for t in threads:
128 t.start()
129
130 for t in threads:
131 t.join()
132
133 self.assertFalse(failures)
Brad Bishop19323692019-04-05 15:28:33 -0400134
135
Brad Bishopa34c0302019-09-23 22:34:48 -0400136class TestHashEquivalenceUnixServer(TestHashEquivalenceServer, unittest.TestCase):
137 def get_server_addr(self):
138 return "unix://" + os.path.join(self.temp_dir.name, 'sock')
139
140
141class TestHashEquivalenceTCPServer(TestHashEquivalenceServer, unittest.TestCase):
142 def get_server_addr(self):
143 return "localhost:0"