2016-01-04 21:17:58 +01:00
|
|
|
#!/usr/bin/env python3
|
2015-08-06 00:55:16 +02:00
|
|
|
|
|
|
|
# http://www.drdobbs.com/testing/unit-testing-with-python/240165163
|
|
|
|
|
|
|
|
import inspect
|
|
|
|
import optparse
|
|
|
|
import os
|
2016-09-15 08:29:18 +02:00
|
|
|
import requests
|
2015-08-06 00:55:16 +02:00
|
|
|
import sys
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
import fdroidserver.common
|
|
|
|
import fdroidserver.metadata
|
|
|
|
# work around the syntax error from: import fdroidserver.import
|
|
|
|
import import_proxy
|
|
|
|
|
|
|
|
|
|
|
|
class ImportTest(unittest.TestCase):
|
|
|
|
'''fdroid import'''
|
|
|
|
|
|
|
|
def test_import_gitlab(self):
|
2016-11-07 21:47:53 +01:00
|
|
|
os.chdir(os.path.dirname(__file__))
|
2015-08-06 00:55:16 +02:00
|
|
|
# FDroidPopen needs some config to work
|
2015-08-05 14:39:58 +02:00
|
|
|
config = dict()
|
|
|
|
fdroidserver.common.fill_config_defaults(config)
|
|
|
|
fdroidserver.common.config = config
|
2015-08-06 00:55:16 +02:00
|
|
|
|
2017-01-09 15:12:27 +01:00
|
|
|
url = 'https://gitlab.com/fdroid/ci-test-app'
|
2016-09-15 08:29:18 +02:00
|
|
|
r = requests.head(url)
|
|
|
|
if r.status_code != 200:
|
|
|
|
print("ERROR", url, 'unreachable (', r.status_code, ')')
|
|
|
|
print('Skipping ImportTest!')
|
|
|
|
return
|
|
|
|
|
2016-11-23 17:25:59 +01:00
|
|
|
app = fdroidserver.metadata.App()
|
2015-11-28 13:09:47 +01:00
|
|
|
app.UpdateCheckMode = "Tags"
|
2015-08-06 00:55:16 +02:00
|
|
|
root_dir, src_dir = import_proxy.get_metadata_from_url(app, url)
|
2016-06-10 12:02:03 +02:00
|
|
|
self.assertEqual(app.RepoType, 'git')
|
2017-01-09 15:12:27 +01:00
|
|
|
self.assertEqual(app.WebSite, 'https://gitlab.com/fdroid/ci-test-app')
|
|
|
|
self.assertEqual(app.Repo, 'https://gitlab.com/fdroid/ci-test-app.git')
|
2015-08-06 00:55:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = optparse.OptionParser()
|
|
|
|
parser.add_option("-v", "--verbose", action="store_true", default=False,
|
|
|
|
help="Spew out even more information than normal")
|
|
|
|
(fdroidserver.common.options, args) = parser.parse_args(['--verbose'])
|
|
|
|
|
|
|
|
newSuite = unittest.TestSuite()
|
|
|
|
newSuite.addTest(unittest.makeSuite(ImportTest))
|
|
|
|
unittest.main()
|