mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
ab614ab442
This simplifies usage, goes from app['Foo'] to app.Foo Also makes static analyzers able to detect invalid attributes as the set is now limited in the class definition. As a bonus, setting of the default field values is now done in the constructor, not separately and manually.
50 lines
1.6 KiB
Python
Executable File
50 lines
1.6 KiB
Python
Executable File
#!/usr/bin/env python2
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# http://www.drdobbs.com/testing/unit-testing-with-python/240165163
|
|
|
|
import inspect
|
|
import optparse
|
|
import os
|
|
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):
|
|
# FDroidPopen needs some config to work
|
|
fdroidserver.common.config = dict()
|
|
fdroidserver.common.config['sdk_path'] = '/fake/path/to/android-sdk'
|
|
|
|
url = 'https://gitlab.com/fdroid/fdroidclient'
|
|
app = fdroidserver.metadata.get_default_app_info()
|
|
app.UpdateCheckMode = "Tags"
|
|
root_dir, src_dir = import_proxy.get_metadata_from_url(app, url)
|
|
self.assertEquals(app.RepoType, 'git')
|
|
self.assertEquals(app.WebSite, 'https://gitlab.com/fdroid/fdroidclient')
|
|
self.assertEquals(app.Repo, 'https://gitlab.com/fdroid/fdroidclient.git')
|
|
|
|
|
|
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()
|