blob: b34c4368763dd3db4eeb36443e8ae7187949e473 [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
Andrew Geisslerc9f78652020-09-18 14:11:35 -050012import os
Brad Bishopa34c0302019-09-23 22:34:48 -040013import sys
Brad Bishop08902b02019-08-20 09:16:51 -040014import tempfile
Brad Bishopa34c0302019-09-23 22:34:48 -040015import threading
16import unittest
Brad Bishop19323692019-04-05 15:28:33 -040017
Brad Bishopa34c0302019-09-23 22:34:48 -040018
19class TestHashEquivalenceServer(object):
20 METHOD = 'TestMethod'
21
22 def _run_server(self):
23 # logging.basicConfig(level=logging.DEBUG, filename='bbhashserv.log', filemode='w',
24 # format='%(levelname)s %(filename)s:%(lineno)d %(message)s')
25 self.server.serve_forever()
26
Brad Bishop19323692019-04-05 15:28:33 -040027 def setUp(self):
Brad Bishopa34c0302019-09-23 22:34:48 -040028 if sys.version_info < (3, 5, 0):
29 self.skipTest('Python 3.5 or later required')
30
31 self.temp_dir = tempfile.TemporaryDirectory(prefix='bb-hashserv')
32 self.dbfile = os.path.join(self.temp_dir.name, 'db.sqlite')
33
34 self.server = create_server(self.get_server_addr(), self.dbfile)
35 self.server_thread = multiprocessing.Process(target=self._run_server)
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
Andrew Geissler475cb722020-07-10 16:00:51 -0500103 def test_huge_message(self):
104 # Simple test that hashes can be created
105 taskhash = 'c665584ee6817aa99edfc77a44dd853828279370'
106 outhash = '3c979c3db45c569f51ab7626a4651074be3a9d11a84b1db076f5b14f7d39db44'
107 unihash = '90e9bc1d1f094c51824adca7f8ea79a048d68824'
108
109 result = self.client.get_unihash(self.METHOD, taskhash)
110 self.assertIsNone(result, msg='Found unexpected task, %r' % result)
111
112 siginfo = "0" * (self.client.max_chunk * 4)
113
114 result = self.client.report_unihash(taskhash, self.METHOD, outhash, unihash, {
115 'outhash_siginfo': siginfo
116 })
117 self.assertEqual(result['unihash'], unihash, 'Server returned bad unihash')
118
119 result = self.client.get_taskhash(self.METHOD, taskhash, True)
120 self.assertEqual(result['taskhash'], taskhash)
121 self.assertEqual(result['unihash'], unihash)
122 self.assertEqual(result['method'], self.METHOD)
123 self.assertEqual(result['outhash'], outhash)
124 self.assertEqual(result['outhash_siginfo'], siginfo)
125
Brad Bishopa34c0302019-09-23 22:34:48 -0400126 def test_stress(self):
127 def query_server(failures):
128 client = Client(self.server.address)
129 try:
130 for i in range(1000):
131 taskhash = hashlib.sha256()
132 taskhash.update(str(i).encode('utf-8'))
133 taskhash = taskhash.hexdigest()
134 result = client.get_unihash(self.METHOD, taskhash)
135 if result != taskhash:
136 failures.append("taskhash mismatch: %s != %s" % (result, taskhash))
137 finally:
138 client.close()
139
140 # Report hashes
141 for i in range(1000):
142 taskhash = hashlib.sha256()
143 taskhash.update(str(i).encode('utf-8'))
144 taskhash = taskhash.hexdigest()
145 self.client.report_unihash(taskhash, self.METHOD, taskhash, taskhash)
146
147 failures = []
148 threads = [threading.Thread(target=query_server, args=(failures,)) for t in range(100)]
149
150 for t in threads:
151 t.start()
152
153 for t in threads:
154 t.join()
155
156 self.assertFalse(failures)
Brad Bishop19323692019-04-05 15:28:33 -0400157
158
Brad Bishopa34c0302019-09-23 22:34:48 -0400159class TestHashEquivalenceUnixServer(TestHashEquivalenceServer, unittest.TestCase):
160 def get_server_addr(self):
161 return "unix://" + os.path.join(self.temp_dir.name, 'sock')
162
163
164class TestHashEquivalenceTCPServer(TestHashEquivalenceServer, unittest.TestCase):
165 def get_server_addr(self):
166 return "localhost:0"