mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-13 18:50:29 +03:00
verify: normalize dicts via JSON for reliable comparisons
13016c5d63 in !602 used a set to prevent
duplicate entries, but that worked poorly because it required lots of
data wrapping. Instead, just normalize to JSON, then equality is easy.
This commit is contained in:
parent
a1286209ad
commit
9e58fc8cda
2 changed files with 133 additions and 43 deletions
110
tests/verify.TestCase
Executable file
110
tests/verify.TestCase
Executable file
|
|
@ -0,0 +1,110 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import inspect
|
||||
import json
|
||||
import logging
|
||||
import optparse
|
||||
import os
|
||||
import shutil
|
||||
import sys
|
||||
import tempfile
|
||||
import unittest
|
||||
|
||||
from pathlib import Path
|
||||
from unittest.mock import patch
|
||||
|
||||
localmodule = os.path.realpath(
|
||||
os.path.join(os.path.dirname(inspect.getfile(inspect.currentframe())), '..')
|
||||
)
|
||||
print('localmodule: ' + localmodule)
|
||||
if localmodule not in sys.path:
|
||||
sys.path.insert(0, localmodule)
|
||||
|
||||
from fdroidserver import common, verify
|
||||
|
||||
|
||||
TEST_APP_ENTRY = {
|
||||
"1539780240.3885746": {
|
||||
"local": {
|
||||
"file": "unsigned/com.politedroid_6.apk",
|
||||
"packageName": "com.politedroid",
|
||||
"sha256": "70c2f776a2bac38a58a7d521f96ee0414c6f0fb1de973c3ca8b10862a009247d",
|
||||
"timestamp": 1234567.8900000,
|
||||
"versionCode": "6",
|
||||
"versionName": "1.5",
|
||||
},
|
||||
"remote": {
|
||||
"file": "tmp/com.politedroid_6.apk",
|
||||
"packageName": "com.politedroid",
|
||||
"sha256": "70c2f776a2bac38a58a7d521f96ee0414c6f0fb1de973c3ca8b10862a009247d",
|
||||
"timestamp": 1234567.8900000,
|
||||
"versionCode": "6",
|
||||
"versionName": "1.5",
|
||||
},
|
||||
"url": "https://f-droid.org/repo/com.politedroid_6.apk",
|
||||
"verified": True,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class VerifyTest(unittest.TestCase):
|
||||
|
||||
basedir = Path(__file__).resolve().parent
|
||||
|
||||
def setUp(self):
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
self.tempdir = tempfile.TemporaryDirectory()
|
||||
os.chdir(self.tempdir.name)
|
||||
self.repodir = Path('repo')
|
||||
self.repodir.mkdir()
|
||||
|
||||
def tearDown(self):
|
||||
self.tempdir.cleanup()
|
||||
|
||||
@patch('fdroidserver.common.sha256sum')
|
||||
def test_write_json_report(self, sha256sum):
|
||||
sha256sum.return_value = (
|
||||
'70c2f776a2bac38a58a7d521f96ee0414c6f0fb1de973c3ca8b10862a009247d'
|
||||
)
|
||||
os.mkdir('tmp')
|
||||
os.mkdir('unsigned')
|
||||
verified_json = Path('unsigned/verified.json')
|
||||
packageName = 'com.politedroid'
|
||||
apk_name = packageName + '_6.apk'
|
||||
remote_apk = 'tmp/' + apk_name
|
||||
unsigned_apk = 'unsigned/' + apk_name
|
||||
# TODO common.use apk_strip_v1_signatures() on unsigned_apk
|
||||
shutil.copy(str(self.basedir / 'repo' / apk_name), remote_apk)
|
||||
shutil.copy(str(self.basedir / 'repo' / apk_name), unsigned_apk)
|
||||
url = TEST_APP_ENTRY['1539780240.3885746']['url']
|
||||
|
||||
self.assertFalse(verified_json.exists())
|
||||
verify.write_json_report(url, remote_apk, unsigned_apk, {})
|
||||
self.assertTrue(verified_json.exists())
|
||||
# smoke check status JSON
|
||||
with verified_json.open() as fp:
|
||||
firstpass = json.load(fp)
|
||||
|
||||
verify.write_json_report(url, remote_apk, unsigned_apk, {})
|
||||
with verified_json.open() as fp:
|
||||
secondpass = json.load(fp)
|
||||
|
||||
self.assertEqual(firstpass, secondpass)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
os.chdir(os.path.dirname(__file__))
|
||||
|
||||
parser = optparse.OptionParser()
|
||||
parser.add_option(
|
||||
"-v",
|
||||
"--verbose",
|
||||
action="store_true",
|
||||
default=False,
|
||||
help="Spew out even more information than normal",
|
||||
)
|
||||
(common.options, args) = parser.parse_args(['--verbose'])
|
||||
|
||||
newSuite = unittest.TestSuite()
|
||||
newSuite.addTest(unittest.makeSuite(VerifyTest))
|
||||
unittest.main(failfast=False)
|
||||
Loading…
Add table
Add a link
Reference in a new issue