2017-06-23 21:58:46 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# http://www.drdobbs.com/testing/unit-testing-with-python/240165163
|
|
|
|
|
2018-02-27 12:09:54 +01:00
|
|
|
import logging
|
2017-06-23 21:58:46 +02:00
|
|
|
import optparse
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import sys
|
|
|
|
import tempfile
|
|
|
|
import unittest
|
2021-06-09 09:46:52 +02:00
|
|
|
from pathlib import Path
|
2017-06-23 21:58:46 +02:00
|
|
|
|
2021-06-09 09:46:52 +02:00
|
|
|
localmodule = Path(__file__).resolve().parent.parent
|
|
|
|
print('localmodule: ' + str(localmodule))
|
2017-06-23 21:58:46 +02:00
|
|
|
if localmodule not in sys.path:
|
2021-06-09 09:46:52 +02:00
|
|
|
sys.path.insert(0, str(localmodule))
|
2017-06-23 21:58:46 +02:00
|
|
|
|
|
|
|
import fdroidserver.common
|
|
|
|
import fdroidserver.lint
|
2018-03-02 12:50:48 +01:00
|
|
|
import fdroidserver.metadata
|
2017-06-23 21:58:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
class LintTest(unittest.TestCase):
|
|
|
|
'''fdroidserver/lint.py'''
|
|
|
|
|
2018-02-27 12:09:54 +01:00
|
|
|
def setUp(self):
|
2021-06-09 09:46:52 +02:00
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
self.basedir = localmodule / 'tests'
|
|
|
|
self.tmpdir = localmodule / '.testfiles'
|
|
|
|
self.tmpdir.mkdir(exist_ok=True)
|
2023-02-15 20:25:48 +01:00
|
|
|
os.chdir(self.basedir)
|
2018-02-27 12:09:54 +01:00
|
|
|
|
2017-06-23 21:58:46 +02:00
|
|
|
def test_check_for_unsupported_metadata_files(self):
|
|
|
|
self.assertTrue(fdroidserver.lint.check_for_unsupported_metadata_files())
|
|
|
|
|
2021-06-09 09:46:52 +02:00
|
|
|
with tempfile.TemporaryDirectory(dir=str(self.tmpdir)) as testdir:
|
|
|
|
testdir = Path(testdir)
|
|
|
|
self.assertFalse(
|
|
|
|
fdroidserver.lint.check_for_unsupported_metadata_files(testdir)
|
|
|
|
)
|
|
|
|
shutil.copytree(
|
2023-02-15 20:25:48 +01:00
|
|
|
self.basedir / 'metadata',
|
|
|
|
testdir / 'metadata',
|
2021-06-09 09:46:52 +02:00
|
|
|
ignore=shutil.ignore_patterns('apk', 'dump', '*.json'),
|
|
|
|
)
|
|
|
|
self.assertFalse(
|
|
|
|
fdroidserver.lint.check_for_unsupported_metadata_files(testdir)
|
|
|
|
)
|
|
|
|
(testdir / 'metadata/org.adaway.json').write_text('placeholder')
|
|
|
|
self.assertTrue(
|
|
|
|
fdroidserver.lint.check_for_unsupported_metadata_files(testdir)
|
|
|
|
)
|
2017-06-23 21:58:46 +02:00
|
|
|
|
2018-02-27 12:09:54 +01:00
|
|
|
def test_forbidden_html_tags(self):
|
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
|
|
|
fdroidserver.lint.config = config
|
|
|
|
|
|
|
|
app = {
|
|
|
|
'Name': 'Bad App',
|
|
|
|
'Summary': 'We pwn you',
|
|
|
|
'Description': 'This way: <style><img src="</style><img src=x onerror=alert(1)//">',
|
|
|
|
}
|
|
|
|
|
|
|
|
anywarns = False
|
|
|
|
for warn in fdroidserver.lint.check_regexes(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertTrue(anywarns)
|
|
|
|
|
2019-09-30 13:07:49 +02:00
|
|
|
def test_source_urls(self):
|
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
|
|
|
fdroidserver.lint.config = config
|
|
|
|
|
|
|
|
app = {
|
|
|
|
'Name': 'My App',
|
|
|
|
'Summary': 'just a placeholder',
|
|
|
|
'Description': 'This app does all sorts of useful stuff',
|
|
|
|
}
|
|
|
|
good_urls = [
|
|
|
|
'https://github.com/Matteljay/mastermindy-android',
|
|
|
|
'https://gitlab.com/origin/master',
|
|
|
|
'https://gitlab.com/group/subgroup/masterthing',
|
|
|
|
'https://raw.githubusercontent.com/Seva-coder/Finder/HEAD/ChangeLog.txt',
|
|
|
|
'https://github.com/scoutant/blokish/blob/HEAD/README.md#changelog',
|
|
|
|
'https://git.ieval.ro/?p=fonbot.git;a=blob;f=Changes;hb=HEAD',
|
|
|
|
'https://htmlpreview.github.io/?https://github.com/YasuakiHonda/Maxima-on-Android-AS/blob/HEAD/app/src/main/assets/About_MoA/index.html',
|
|
|
|
'',
|
|
|
|
]
|
|
|
|
|
|
|
|
anywarns = False
|
|
|
|
for url in good_urls:
|
|
|
|
app['SourceCode'] = url
|
|
|
|
for warn in fdroidserver.lint.check_regexes(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertFalse(anywarns)
|
|
|
|
|
|
|
|
bad_urls = [
|
2019-09-30 13:08:58 +02:00
|
|
|
'github.com/my/proj',
|
2019-10-03 23:46:34 +02:00
|
|
|
'http://github.com/not/secure',
|
2019-09-30 13:08:58 +02:00
|
|
|
'https://github.com/foo/bar.git',
|
|
|
|
'https://gitlab.com/group/subgroup/project.git',
|
2019-09-30 13:07:49 +02:00
|
|
|
'https://raw.githubusercontent.com/Seva-coder/Finder/master/ChangeLog.txt',
|
|
|
|
'https://github.com/scoutant/blokish/blob/master/README.md#changelog',
|
2019-09-30 13:08:58 +02:00
|
|
|
'http://htmlpreview.github.io/?https://github.com/my/project/blob/HEAD/index.html',
|
2019-10-03 23:46:34 +02:00
|
|
|
'http://fdroid.gitlab.io/fdroid-website',
|
2019-09-30 13:07:49 +02:00
|
|
|
]
|
|
|
|
logging.debug('bad urls:')
|
|
|
|
for url in bad_urls:
|
2019-10-03 23:46:34 +02:00
|
|
|
anywarns = False
|
2019-09-30 13:07:49 +02:00
|
|
|
app['SourceCode'] = url
|
|
|
|
for warn in fdroidserver.lint.check_regexes(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
2019-10-03 23:46:34 +02:00
|
|
|
self.assertTrue(anywarns, url + " does not fail lint!")
|
2019-09-30 13:07:49 +02:00
|
|
|
|
2018-10-09 23:31:24 +02:00
|
|
|
def test_check_app_field_types(self):
|
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
|
|
|
fdroidserver.lint.config = config
|
|
|
|
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app.id = 'fake.app'
|
|
|
|
app.Name = 'Bad App'
|
|
|
|
app.Summary = 'We pwn you'
|
|
|
|
app.Description = 'These are some back'
|
|
|
|
|
|
|
|
fields = {
|
|
|
|
'Categories': {
|
|
|
|
'good': [
|
2023-04-24 20:10:17 +02:00
|
|
|
['Sports & Health'],
|
2018-10-09 23:31:24 +02:00
|
|
|
['Multimedia', 'Graphics'],
|
|
|
|
],
|
|
|
|
'bad': [
|
|
|
|
'Science & Education',
|
|
|
|
'Multimedia,Graphics',
|
|
|
|
],
|
|
|
|
},
|
2018-10-10 12:19:09 +02:00
|
|
|
'WebSite': {
|
|
|
|
'good': [
|
|
|
|
'https://homepage.com',
|
|
|
|
],
|
|
|
|
'bad': [
|
|
|
|
[],
|
2021-06-09 09:46:52 +02:00
|
|
|
[
|
|
|
|
'nope',
|
|
|
|
],
|
2018-10-10 12:19:09 +02:00
|
|
|
29,
|
|
|
|
],
|
|
|
|
},
|
2018-10-09 23:31:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for field, values in fields.items():
|
|
|
|
for bad in values['bad']:
|
|
|
|
anywarns = False
|
|
|
|
app[field] = bad
|
|
|
|
for warn in fdroidserver.lint.check_app_field_types(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertTrue(anywarns)
|
|
|
|
|
|
|
|
for good in values['good']:
|
|
|
|
anywarns = False
|
|
|
|
app[field] = good
|
|
|
|
for warn in fdroidserver.lint.check_app_field_types(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertFalse(anywarns)
|
|
|
|
|
2018-03-02 12:50:48 +01:00
|
|
|
def test_check_vercode_operation(self):
|
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
|
|
|
fdroidserver.lint.config = config
|
|
|
|
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app.Name = 'Bad App'
|
|
|
|
app.Summary = 'We pwn you'
|
|
|
|
app.Description = 'These are some back'
|
|
|
|
|
|
|
|
good_fields = [
|
|
|
|
'6%c',
|
|
|
|
'%c - 1',
|
|
|
|
'%c + 10',
|
|
|
|
'%c*10',
|
|
|
|
'%c*10 + 3',
|
|
|
|
'%c*10 + 8',
|
|
|
|
'%c + 2 ',
|
|
|
|
'%c + 3',
|
|
|
|
'%c + 7',
|
|
|
|
]
|
|
|
|
bad_fields = [
|
|
|
|
'open("/etc/passwd")',
|
|
|
|
'%C + 1',
|
|
|
|
'%%c * 123',
|
|
|
|
'123 + %%',
|
|
|
|
'%c % 7',
|
|
|
|
]
|
|
|
|
|
|
|
|
anywarns = False
|
|
|
|
for good in good_fields:
|
2022-10-27 13:11:37 +02:00
|
|
|
app.VercodeOperation = [good]
|
2018-03-02 12:50:48 +01:00
|
|
|
for warn in fdroidserver.lint.check_vercode_operation(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertFalse(anywarns)
|
|
|
|
|
|
|
|
for bad in bad_fields:
|
|
|
|
anywarns = False
|
2022-10-27 13:11:37 +02:00
|
|
|
app.VercodeOperation = [bad]
|
2018-03-02 12:50:48 +01:00
|
|
|
for warn in fdroidserver.lint.check_vercode_operation(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertTrue(anywarns)
|
|
|
|
|
2019-10-02 22:14:09 +02:00
|
|
|
def test_check_license_tag_no_custom_pass(self):
|
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
|
|
|
fdroidserver.lint.config = config
|
|
|
|
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app.License = "GPL-3.0-or-later"
|
|
|
|
|
|
|
|
anywarns = False
|
|
|
|
for warn in fdroidserver.lint.check_license_tag(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertFalse(anywarns)
|
|
|
|
|
|
|
|
def test_check_license_tag_no_custom_fail(self):
|
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
|
|
|
fdroidserver.lint.config = config
|
|
|
|
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app.License = "Adobe-2006"
|
|
|
|
|
|
|
|
anywarns = False
|
|
|
|
for warn in fdroidserver.lint.check_license_tag(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertTrue(anywarns)
|
|
|
|
|
|
|
|
def test_check_license_tag_with_custom_pass(self):
|
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
|
|
|
fdroidserver.lint.config = config
|
|
|
|
config['lint_licenses'] = ['fancy-license', 'GPL-3.0-or-later']
|
|
|
|
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app.License = "fancy-license"
|
|
|
|
|
|
|
|
anywarns = False
|
|
|
|
for warn in fdroidserver.lint.check_license_tag(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertFalse(anywarns)
|
|
|
|
|
|
|
|
def test_check_license_tag_with_custom_fail(self):
|
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
|
|
|
fdroidserver.lint.config = config
|
|
|
|
config['lint_licenses'] = ['fancy-license', 'GPL-3.0-or-later']
|
|
|
|
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app.License = "Apache-2.0"
|
|
|
|
|
|
|
|
anywarns = False
|
|
|
|
for warn in fdroidserver.lint.check_license_tag(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertTrue(anywarns)
|
|
|
|
|
|
|
|
def test_check_license_tag_with_custom_empty(self):
|
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
|
|
|
fdroidserver.lint.config = config
|
|
|
|
config['lint_licenses'] = []
|
|
|
|
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app.License = "Apache-2.0"
|
|
|
|
|
|
|
|
anywarns = False
|
|
|
|
for warn in fdroidserver.lint.check_license_tag(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertTrue(anywarns)
|
|
|
|
|
|
|
|
def test_check_license_tag_disabled(self):
|
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
|
|
|
fdroidserver.lint.config = config
|
|
|
|
config['lint_licenses'] = None
|
|
|
|
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app.License = "Apache-2.0"
|
|
|
|
|
|
|
|
anywarns = False
|
|
|
|
for warn in fdroidserver.lint.check_license_tag(app):
|
|
|
|
anywarns = True
|
|
|
|
logging.debug(warn)
|
|
|
|
self.assertFalse(anywarns)
|
|
|
|
|
2017-06-23 21:58:46 +02:00
|
|
|
|
2023-04-24 20:10:17 +02:00
|
|
|
class LintAntiFeaturesTest(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.basedir = localmodule / 'tests'
|
|
|
|
os.chdir(self.basedir)
|
|
|
|
fdroidserver.common.config = dict()
|
|
|
|
fdroidserver.lint.load_antiFeatures_config()
|
|
|
|
|
|
|
|
def test_check_antiFeatures_empty(self):
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
self.assertEqual([], list(fdroidserver.lint.check_antiFeatures(app)))
|
|
|
|
|
|
|
|
def test_check_antiFeatures_empty_AntiFeatures(self):
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app['AntiFeatures'] = []
|
|
|
|
self.assertEqual([], list(fdroidserver.lint.check_antiFeatures(app)))
|
|
|
|
|
|
|
|
def test_check_antiFeatures(self):
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app['AntiFeatures'] = ['Ads', 'UpstreamNonFree']
|
|
|
|
self.assertEqual([], list(fdroidserver.lint.check_antiFeatures(app)))
|
|
|
|
|
|
|
|
def test_check_antiFeatures_fails_one(self):
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app['AntiFeatures'] = ['Ad']
|
|
|
|
self.assertEqual(1, len(list(fdroidserver.lint.check_antiFeatures(app))))
|
|
|
|
|
|
|
|
def test_check_antiFeatures_fails_many(self):
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app['AntiFeatures'] = ['Adss', 'Tracker', 'NoSourceSince', 'FAKE', 'NonFree']
|
|
|
|
self.assertEqual(4, len(list(fdroidserver.lint.check_antiFeatures(app))))
|
|
|
|
|
|
|
|
def test_check_antiFeatures_build_empty(self):
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app['Builds'] = [{'antifeatures': []}]
|
|
|
|
self.assertEqual([], list(fdroidserver.lint.check_antiFeatures(app)))
|
|
|
|
|
|
|
|
def test_check_antiFeatures_build(self):
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app['Builds'] = [{'antifeatures': ['Tracking']}]
|
|
|
|
self.assertEqual(0, len(list(fdroidserver.lint.check_antiFeatures(app))))
|
|
|
|
|
|
|
|
def test_check_antiFeatures_build_fail(self):
|
|
|
|
app = fdroidserver.metadata.App()
|
|
|
|
app['Builds'] = [{'antifeatures': ['Ads', 'Tracker']}]
|
|
|
|
self.assertEqual(1, len(list(fdroidserver.lint.check_antiFeatures(app))))
|
|
|
|
|
|
|
|
|
2017-06-23 21:58:46 +02:00
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = optparse.OptionParser()
|
2021-06-07 11:49:21 +02:00
|
|
|
parser.add_option(
|
|
|
|
"-v",
|
|
|
|
"--verbose",
|
|
|
|
action="store_true",
|
|
|
|
default=False,
|
|
|
|
help="Spew out even more information than normal",
|
|
|
|
)
|
2017-06-23 21:58:46 +02:00
|
|
|
(fdroidserver.lint.options, args) = parser.parse_args(['--verbose'])
|
|
|
|
fdroidserver.common.options = fdroidserver.lint.options
|
|
|
|
|
|
|
|
newSuite = unittest.TestSuite()
|
|
|
|
newSuite.addTest(unittest.makeSuite(LintTest))
|
2017-10-20 11:51:59 +02:00
|
|
|
unittest.main(failfast=False)
|