Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: tests/test_packagerEdge.py

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Patch Set: Address comments on patch set 6 Created July 13, 2016, 10:33 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(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 os
7 import shutil
8 import xml.etree.ElementTree as ET
9 import zipfile
10
11 import pytest
12
13 from buildtools import packager, packagerEdge
14
15 TEST_DIR = os.path.dirname(__file__)
16 TEST_METADATA = os.path.join(TEST_DIR, 'metadata.edge')
17 CHARS = b''.join(chr(i % 200 + 30) for i in range(500))
18
19
20 @pytest.fixture
21 def metadata():
22 """Loaded metadata config."""
23 conf_parser = ConfigParser.ConfigParser()
24 conf_parser.read(TEST_METADATA)
25 return conf_parser
26
27
28 @pytest.fixture
29 def srcdir(tmpdir):
30 """Source directory for building the package."""
31 srcdir = tmpdir.mkdir('src')
32 shutil.copy(TEST_METADATA, str(srcdir.join('metadata.edge')))
33 for size in ['44', '50', '150']:
34 path = srcdir.join('chrome', 'icons', 'abp-{}.png'.format(size))
35 path.write(size, ensure=True)
36 return srcdir
37
38
39 def blockmap2dict(xml_data):
40 """Convert AppxBlockMap.xml to a dict of dicts easier to inspect."""
41 return {
42 file.get('Name'): {
43 'size': file.get('Size'),
44 'lfhsize': file.get('LfhSize'),
45 'blocks': [
46 {'hash': b.get('Hash'), 'size': b.get('Size', None)}
47 for b in file
48 ]
49 }
50 for file in ET.fromstring(xml_data)
51 }
52
53
54 def test_create_appx_blockmap():
55 files = packager.Files(set(), set())
56 files['foo.xml'] = CHARS
57 files['foo/bar.png'] = CHARS * 200
58 blockmap = blockmap2dict(packagerEdge.create_appx_blockmap(files))
59 assert blockmap['foo.xml'] == {
60 'size': '500',
61 'lfhsize': '37',
62 'blocks': [
63 {'hash': 'Vhwfmzss1Ney+j/ssR2QVISvFyMNBQeS2P+UjeE/di0=',
64 'size': None}
65 ]
66 }
67 assert blockmap['foo\\bar.png'] == {
68 'size': '100000',
69 'lfhsize': '41',
70 'blocks': [
71 {'hash': 'KPW2SxeEikUEGhoKmKxruUSexKun0bGXMppOqUFrX5E=',
72 'size': None},
73 {'hash': 'KQHnov1SZ1z34ttdDUjX2leYtpIIGndUVoUteieS2cw=',
74 'size': None}
75 ]
76 }
77
78
79 def ctm2dict(content_types_map):
80 """Convert content type map to a dict."""
81 ret = {'defaults': {}, 'overrides': {}}
82 for node in ET.fromstring(content_types_map):
83 ct = node.get('ContentType')
84 if node.tag.endswith('Default'):
85 ret['defaults'][node.get('Extension')] = ct
86 elif node.tag.endswith('Override'):
87 ret['overrides'][node.get('PartName')] = ct
88 else:
89 raise ValueError('Unrecognised tag in content map: ' + node.tag)
90 return ret
91
92
93 def test_empty_content_types_map():
94 ctm_dict = ctm2dict(packagerEdge.create_content_types_map([]))
95 assert ctm_dict['defaults'] == {}
96 assert ctm_dict['overrides'] == {}
97
98
99 def test_full_content_types_map():
100 filenames = ['no-extension', packagerEdge.MANIFEST, packagerEdge.BLOCKMAP]
101 filenames += ['file.' + x for x in 'json html js png css git otf'.split()]
102 ctm_dict = ctm2dict(packagerEdge.create_content_types_map(filenames))
103 assert ctm_dict['defaults'] == {
104 'css': 'text/css',
105 'html': 'text/html',
106 'js': 'application/javascript',
107 'json': 'application/json',
108 'otf': 'application/x-font-otf',
109 'png': 'image/png',
110 'xml': 'application/xml'
111 }
112 assert ctm_dict['overrides'] == {
113 '/AppxBlockMap.xml': 'application/vnd.ms-appx.blockmap+xml',
114 '/AppxManifest.xml': 'application/vnd.ms-appx.manifest+xml'
115 }
116
117
118 def test_create_appx_manifest(metadata):
119 files = packager.Files(set(), set())
120 for size in ['44', '50', '150']:
121 files['Assets/logo_{}.png'.format(size)] = CHARS
122 manifest = packagerEdge.create_appx_manifest({'metadata': metadata}, files)
123 with open(os.path.join(TEST_DIR, 'AppManifest.xml.expect')) as fp:
124 manifest_expect = fp.read()
125 assert manifest.strip() == manifest_expect.strip()
126
127
128 def test_move_files_to_extension():
129 files = packager.Files(set(), set())
130 files['foo.xml'] = CHARS
131 files['foo/bar.xml'] = CHARS
132 files['Extension/foo.xml'] = CHARS
133 packagerEdge.move_files_to_extension(files)
134 assert set(files.keys()) == {
135 'Extension/foo.xml',
136 'Extension/foo/bar.xml',
137 'Extension/Extension/foo.xml'
138 }
139
140
141 def test_create_build(tmpdir, srcdir):
142 out_file = str(tmpdir.join('abp.appx'))
143 packagerEdge.createBuild(str(srcdir), outFile=out_file)
144 appx = zipfile.ZipFile(out_file)
145
146 names = set(appx.namelist())
147 assert 'AppxManifest.xml' in names
148 assert 'AppxBlockMap.xml' in names
149 assert '[Content_Types].xml' in names
150
151 assert appx.read('Assets/logo_44.png') == '44'
152 assert appx.read('Extension/icons/abp-44.png') == '44'
OLDNEW
« docs/metadata.edge.example ('K') | « tests/metadata.edge ('k') | tox.ini » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld