Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 # This Source Code Form is subject to the terms of the Mozilla Public | |
2 # License, v. 2.0. If a copy of the MPL was not distributed with this | |
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
4 | |
5 import ConfigParser | |
6 import io | |
7 import os | |
8 import shutil | |
9 import sys | |
10 import xml.etree.ElementTree as ET | |
11 import zipfile | |
12 | |
13 import pytest | |
14 | |
15 TEST_DIR = os.path.dirname(__file__) | |
16 | |
17 sys.path.insert(0, os.path.dirname(os.path.dirname(TEST_DIR))) | |
18 | |
19 from buildtools import packager, packagerEdge # noqa: must modify path before t his. | |
Sebastian Noack
2016/07/01 15:56:04
Perhaps it's better to just set the PYTHONPATH in
Vasily Kuznetsov
2016/07/01 19:51:28
You're right. Much less ugly. Done.
| |
20 | |
21 TEST_METADATA = os.path.join(TEST_DIR, 'metadata.edge') | |
22 CHARS = b''.join(chr(i % 200 + 30) for i in range(500)) | |
23 | |
24 | |
25 @pytest.fixture | |
26 def metadata(): | |
27 """Loaded metadata config.""" | |
28 conf_parser = ConfigParser.ConfigParser() | |
29 conf_parser.read(TEST_METADATA) | |
30 return conf_parser | |
31 | |
32 | |
33 @pytest.fixture | |
34 def srcdir(tmpdir): | |
35 """Source directory for building the package.""" | |
36 srcdir = tmpdir.mkdir('src') | |
37 shutil.copy(TEST_METADATA, str(srcdir.join('metadata.edge'))) | |
38 for size in ['44', '50', '150']: | |
39 path = srcdir.join('chrome', 'icons', 'abp-{}.png'.format(size)) | |
40 path.write(size, ensure=True) | |
41 return srcdir | |
42 | |
43 | |
44 def blockmap2dict(xml_data): | |
45 """Convert AppxBlockMap.xml to a dict of dicts easier to inspect.""" | |
46 return { | |
47 file.get('Name'): { | |
48 'size': file.get('Size'), | |
49 'lfhsize': file.get('LfhSize'), | |
50 'blocks': [ | |
51 {'hash': b.get('Hash'), 'size': b.get('Size', None)} | |
52 for b in file | |
53 ] | |
54 } | |
55 for file in ET.fromstring(xml_data) | |
56 } | |
57 | |
58 | |
59 def test_create_appx_blockmap(): | |
60 files = packager.Files(set(), set()) | |
61 files['foo.xml'] = CHARS | |
62 files['foo/bar.png'] = CHARS * 200 | |
63 blockmap = blockmap2dict(packagerEdge.createAppxBlockmap(files)) | |
64 assert blockmap['foo.xml'] == { | |
65 'size': '500', | |
66 'lfhsize': '37', | |
67 'blocks': [ | |
68 {'hash': 'Vhwfmzss1Ney+j/ssR2QVISvFyMNBQeS2P+UjeE/di0=', | |
69 'size': '500'} | |
70 ] | |
71 } | |
72 assert blockmap['foo\\bar.png'] == { | |
73 'size': '100000', | |
74 'lfhsize': '41', | |
75 'blocks': [ | |
76 {'hash': 'KPW2SxeEikUEGhoKmKxruUSexKun0bGXMppOqUFrX5E=', | |
77 'size': '65536'}, | |
78 {'hash': 'KQHnov1SZ1z34ttdDUjX2leYtpIIGndUVoUteieS2cw=', | |
79 'size': '34464'} | |
80 ] | |
81 } | |
82 | |
83 | |
84 def test_create_appx_manifest(metadata): | |
85 files = packager.Files(set(), set()) | |
86 for size in ['44', '50', '150']: | |
87 files['Assets/logo_{}.png'.format(size)] = CHARS | |
88 manifest = packagerEdge.createAppxManifest({'metadata': metadata}, files) | |
89 with open(os.path.join(TEST_DIR, 'AppManifest.xml.expect')) as fp: | |
90 manifest_expect = fp.read() | |
91 assert manifest.strip() == manifest_expect.strip() | |
92 | |
93 | |
94 def test_move_files_to_extension(): | |
95 files = packager.Files(set(), set()) | |
96 files['foo.xml'] = CHARS | |
97 files['foo/bar.xml'] = CHARS | |
98 files['Extension/foo.xml'] = CHARS | |
99 packagerEdge.moveFilesToExtension(files) | |
100 assert set(files.keys()) == { | |
101 'Extension/foo.xml', | |
102 'Extension/foo/bar.xml', | |
103 'Extension/Extension/foo.xml' | |
104 } | |
105 | |
106 | |
107 def test_edge_files_zip(): | |
108 """Test zip conversion of EdgeFiles that is overriden.""" | |
109 files = packagerEdge.Files(set(), set()) | |
110 files['Foo.xml'] = CHARS | |
111 files['bar.xml'] = CHARS | |
112 buffer = io.BytesIO() | |
113 files.zip(buffer, sortKey=lambda name: name.lower()) | |
114 result = zipfile.ZipFile(buffer) | |
115 assert result.getinfo('Foo.xml').compress_type == zipfile.ZIP_STORED | |
116 assert result.namelist() == ['bar.xml', 'Foo.xml', 'AppxBlockMap.xml'] | |
117 | |
118 | |
119 def test_create_build(tmpdir, srcdir): | |
120 out_file = str(tmpdir.join('abp.appx')) | |
121 packagerEdge.createBuild(str(srcdir), outFile=out_file) | |
122 appx = zipfile.ZipFile(out_file) | |
123 | |
124 names = set(appx.namelist()) | |
125 assert 'AppxManifest.xml' in names | |
126 assert 'AppxBlockMap.xml' in names | |
127 assert '[Content_Types].xml' in names | |
128 | |
129 assert appx.read('Assets/logo_44.png') == '44' | |
130 assert appx.read('Extension/icons/abp-44.png') == '44' | |
OLD | NEW |