1
|
|
|
from __future__ import print_function, unicode_literals |
2
|
|
|
|
3
|
|
|
# Standard libary imports |
4
|
|
|
from os import path |
5
|
|
|
import unittest |
6
|
|
|
|
7
|
|
|
# Local imports |
8
|
|
|
from binstar_client.inspect_package import conda |
9
|
|
|
from binstar_client.utils.notebook.data_uri import data_uri_from |
10
|
|
|
|
11
|
|
|
|
12
|
|
|
def data_path(filename): |
13
|
|
|
return path.join(path.dirname(__file__), 'data', filename) |
14
|
|
|
|
15
|
|
|
|
16
|
|
|
expected_package_data = { |
17
|
|
|
'license': None, |
18
|
|
|
'name': 'conda_gc_test', |
19
|
|
|
'summary': 'This is a simple meta-package', |
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
expected_version_data = { |
23
|
|
|
'description': '', |
24
|
|
|
'home_page': None, |
25
|
|
|
'icon': None, # The icon if found on the conda folder is uplaoded here. |
26
|
|
|
'version': '1.2.1', |
27
|
|
|
} |
28
|
|
|
|
29
|
|
|
expected_file_data = { |
30
|
|
|
'attrs': { |
31
|
|
|
'arch': 'x86_64', |
32
|
|
|
'build': 'py27_3', |
33
|
|
|
'build_number': 3, |
34
|
|
|
'depends': ['foo ==3*', 'python ==2.7.8'], |
35
|
|
|
'license': None, |
36
|
|
|
'machine': 'x86_64', |
37
|
|
|
'operatingsystem': 'darwin', |
38
|
|
|
'platform': 'osx', |
39
|
|
|
'subdir': 'osx-64', |
40
|
|
|
'target-triplet': 'x86_64-any-darwin', |
41
|
|
|
'has_prefix': False, |
42
|
|
|
}, |
43
|
|
|
'basename': 'osx-64/conda_gc_test-1.2.1-py27_3.tar.bz2', |
44
|
|
|
'dependencies': { |
45
|
|
|
'depends': [{'name': 'foo', 'specs': [['==', '3']]}, |
46
|
|
|
{'name': 'python', 'specs': [['==', '2.7.8']]}], |
47
|
|
|
}, |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
# Test package application data |
51
|
|
|
# ----------------------------------------------------------------------------- |
52
|
|
|
ICON_B64 = data_uri_from(data_path('43c9b994a4d96f779dad87219d645c9f.png')) |
53
|
|
|
app_expected_package_data = { |
54
|
|
|
'license': None, |
55
|
|
|
'name': u'test-app-package-icon', |
56
|
|
|
'summary': u'', |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
app_expected_version_data = { |
60
|
|
|
'description': '', |
61
|
|
|
'home_page': None, |
62
|
|
|
'icon': ICON_B64, |
63
|
|
|
'version': u'0.1', |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
|
67
|
|
|
class Test(unittest.TestCase): |
68
|
|
|
|
69
|
|
|
def test_conda(self): |
70
|
|
|
filename = data_path('conda_gc_test-1.2.1-py27_3.tar.bz2') |
71
|
|
|
with open(filename, 'rb') as fd: |
72
|
|
|
package_data, version_data, file_data = conda.inspect_conda_package(filename, fd) |
73
|
|
|
|
74
|
|
|
self.assertEqual(expected_package_data, package_data) |
75
|
|
|
self.assertEqual(expected_version_data, version_data) |
76
|
|
|
self.assertEqual(expected_file_data, file_data) |
77
|
|
|
|
78
|
|
|
def test_conda_app_image(self): |
79
|
|
|
filename = data_path('test-app-package-icon-0.1-0.tar.bz2') |
80
|
|
|
with open(filename, 'rb') as fd: |
81
|
|
|
package_data, version_data, file_data = conda.inspect_conda_package(filename, fd) |
82
|
|
|
|
83
|
|
|
self.assertEqual(app_expected_package_data, package_data) |
84
|
|
|
self.assertEqual(app_expected_version_data.pop('icon'), version_data.pop('icon')) |
85
|
|
|
self.assertEqual(app_expected_version_data, version_data) |
86
|
|
|
|
87
|
|
|
|
88
|
|
|
if __name__ == "__main__": |
89
|
|
|
# import sys;sys.argv = ['', 'Test.testName'] |
90
|
|
|
unittest.main() |
91
|
|
|
|