Exemplo n.º 1
0
 def test_concatenate_and_rewrite(self):
     css = self.compressor.concatenate_and_rewrite(
         [_('pipeline/css/first.css'),
          _('pipeline/css/second.css')], 'css/screen.css')
     self.assertEqual(
         """.concat {\n  display: none;\n}\n\n.concatenate {\n  display: block;\n}\n""",
         css)
Exemplo n.º 2
0
 def test_concatenate(self):
     js = self.compressor.concatenate(
         [_('pipeline/js/first.js'),
          _('pipeline/js/second.js')])
     self.assertEqual(
         """function concat() {\n  console.log(arguments);\n}\n\nfunction cat() {\n  console.log("hello world");\n}\n""",
         js)
Exemplo n.º 3
0
 def test_encoded_content(self, mock):
     self.compressor.asset_contents.clear()
     self.compressor.encoded_content(_('pipeline/images/arrow.png'))
     self.assertTrue(mock.called)
     mock.reset_mock()
     self.compressor.encoded_content(_('pipeline/images/arrow.png'))
     self.assertFalse(mock.called)
Exemplo n.º 4
0
 def test_concatenate(self):
     js = self.compressor.concatenate(
         [_('pipeline/js/first.js'),
          _('pipeline/js/second.js')])
     self.assertEqual(
         """(function() {\n  window.concat = function() {\n    console.log(arguments);\n  }\n}()) // No semicolon\n\n;(function() {\n  window.cat = function() {\n    console.log("hello world");\n  }\n}());\n""",
         js)
Exemplo n.º 5
0
 def test_encoded_content(self, mock):
     self.compressor.asset_contents.clear()
     self.compressor.encoded_content(_('pipeline/images/arrow.png'))
     self.assertTrue(mock.called)
     mock.reset_mock()
     self.compressor.encoded_content(_('pipeline/images/arrow.png'))
     self.assertFalse(mock.called)
 def test_compile_templates(self):
     templates = self.compressor.compile_templates([_('pipeline/templates/photo/list.jst')])
     self.assertEqual(templates, """window.JST = window.JST || {};\n%s\nwindow.JST[\'list\'] = template(\'<div class="photo">\\n <img src="<%%= src %%>" />\\n <div class="caption">\\n  <%%= caption %%>\\n </div>\\n</div>\');\n""" % TEMPLATE_FUNC)
     templates = self.compressor.compile_templates([
         _('pipeline/templates/video/detail.jst'),
         _('pipeline/templates/photo/detail.jst')
     ])
     self.assertEqual(templates, """window.JST = window.JST || {};\n%s\nwindow.JST[\'video_detail\'] = template(\'<div class="video">\\n <video src="<%%= src %%>" />\\n <div class="caption">\\n  <%%= description %%>\\n </div>\\n</div>\');\nwindow.JST[\'photo_detail\'] = template(\'<div class="photo">\\n <img src="<%%= src %%>" />\\n <div class="caption">\\n  <%%= caption %%> by <%%= author %%>\\n </div>\\n</div>\');\n""" % TEMPLATE_FUNC)
Exemplo n.º 7
0
 def test_compile(self):
     paths = self.compiler.compile([
         _('pipeline/js/dummy.coffee'),
         _('pipeline/js/application.js'),
     ])
     self.assertEqual(
         [_('pipeline/js/dummy.js'),
          _('pipeline/js/application.js')], list(paths))
Exemplo n.º 8
0
 def test_templates(self):
     packager = Packager()
     packages = packager.create_packages({
         'templates': {
             'source_filenames': (_('pipeline/templates/photo/list.jst'), ),
             'output_filename': 'templates.js',
         }
     })
     self.assertEqual(packages['templates'].templates,
                      [_('pipeline/templates/photo/list.jst')])
Exemplo n.º 9
0
 def test_templates(self):
     packager = Packager()
     packages = packager.create_packages({
         'templates': {
             'source_filenames': (
                 _('pipeline/templates/photo/list.jst'),
             ),
             'output_filename': 'templates.js',
         }
     })
     self.assertEqual(packages['templates'].templates, [_('pipeline/templates/photo/list.jst')])
Exemplo n.º 10
0
 def _test_compiler(self, compiler_cls_str, infile, expected):
     compiler_cls = to_class(compiler_cls_str)
     compiler = compiler_cls(verbose=False, storage=staticfiles_storage)
     infile_path = staticfiles_storage.path(infile)
     outfile_path = compiler.output_path(infile_path, compiler.output_extension)
     compiler.compile_file(_(infile_path), _(outfile_path), force=True)
     with open(outfile_path) as f:
         result = f.read()
     with staticfiles_storage.open(expected) as f:
         expected = f.read()
     self.assertEqual(smart_bytes(result), expected)
Exemplo n.º 11
0
 def _test_compiler(self, compiler_cls_str, infile, expected):
     compiler_cls = to_class(compiler_cls_str)
     compiler = compiler_cls(verbose=False, storage=staticfiles_storage)
     infile_path = staticfiles_storage.path(infile)
     outfile_path = compiler.output_path(infile_path, compiler.output_extension)
     compiler.compile_file(_(infile_path), _(outfile_path), force=True)
     with open(outfile_path) as f:
         result = f.read()
     with staticfiles_storage.open(expected) as f:
         expected = f.read()
     self.assertEqual(smart_bytes(result), expected)
Exemplo n.º 12
0
 def test_embeddable(self):
     self.assertFalse(
         self.compressor.embeddable(_('pipeline/images/sprite.png'), None))
     self.assertFalse(
         self.compressor.embeddable(_('pipeline/images/arrow.png'),
                                    'datauri'))
     self.assertTrue(
         self.compressor.embeddable(_('pipeline/images/embed/arrow.png'),
                                    'datauri'))
     self.assertFalse(
         self.compressor.embeddable(_('pipeline/images/arrow.dat'),
                                    'datauri'))
Exemplo n.º 13
0
 def setUp(self):
     settings.PIPELINE_CSS = {
         'testing': {
             'source_filenames': (
                 _('pipeline/css/first.css'),
                 _('css/third.css'),
             ),
             'manifest': False,
             'output_filename': 'testing.css',
         }
     }
     settings.PIPELINE_JS_COMPRESSOR = None
     settings.PIPELINE_CSS_COMPRESSOR = None
     self.storage = PipelineStorage()
Exemplo n.º 14
0
 def _test_compressor(self, compressor_cls, compress_type, expected_file):
     override_settings = {
         ("%s_COMPRESSOR" % compress_type.upper()): compressor_cls,
     }
     with pipeline_settings(**override_settings):
         if compress_type == 'js':
             result = self.compressor.compress_js(
                 [_('pipeline/js/first.js'), _('pipeline/js/second.js')])
         else:
             result = self.compressor.compress_css(
                 [_('pipeline/css/first.css'), _('pipeline/css/second.css')],
                 os.path.join('pipeline', 'css', os.path.basename(expected_file)))
     with self.compressor.storage.open(expected_file) as f:
         expected = f.read()
     self.assertEqual(smart_bytes(result), expected)
Exemplo n.º 15
0
    def test_compile(self):
        with self.assertRaises(CompilerError) as cm:
            self.compiler.compile([_('pipeline/js/dummy.coffee')])

            e = cm.exception
            self.assertEqual(e.command, ['/usr/bin/env', 'false'])
            self.assertEqual(e.error_output, '')
Exemplo n.º 16
0
 def test_encoded_content_output(self):
     self.compressor.asset_contents.clear()
     encoded = self.compressor.encoded_content(_('pipeline/images/arrow.png'))
     expected = ('iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGCAYAAAARx7TFAAAAMk'
                 'lEQVR42oXKwQkAMAxC0Q7rEk5voSEepCHC9/SOpLV3JPULgArV'
                 'RtDIMEEiQ4NECRNdciCfK3K3wvEAAAAASUVORK5CYII=')
     self.assertEqual(encoded, expected)
Exemplo n.º 17
0
    def test_url_rewrite(self):
        output = self.compressor.concatenate_and_rewrite([
            _('pipeline/css/urls.css'),
        ], 'css/screen.css')
        self.assertEqual("""@font-face {
  font-family: 'Pipeline';
  src: url(../pipeline/fonts/pipeline.eot);
  src: url(../pipeline/fonts/pipeline.eot?#iefix) format('embedded-opentype');
  src: local('☺'), url(../pipeline/fonts/pipeline.woff) format('woff'), url(../pipeline/fonts/pipeline.ttf) format('truetype'), url(../pipeline/fonts/pipeline.svg#IyfZbseF) format('svg');
  font-weight: normal;
  font-style: normal;
}
.relative-url {
  background-image: url(../pipeline/images/sprite-buttons.png);
}
.relative-url-querystring {
  background-image: url(../pipeline/images/sprite-buttons.png?v=1.0#foo=bar);
}
.absolute-url {
  background-image: url(/images/sprite-buttons.png);
}
.absolute-full-url {
  background-image: url(http://localhost/images/sprite-buttons.png);
}
.no-protocol-url {
  background-image: url(//images/sprite-buttons.png);
}
.anchor-tag-url {
  background-image: url(#image-gradient);
}
@font-face{src:url(../pipeline/fonts/pipeline.eot);src:url(../pipeline/fonts/pipeline.eot?#iefix) format('embedded-opentype'),url(../pipeline/fonts/pipeline.woff) format('woff'),url(../pipeline/fonts/pipeline.ttf) format('truetype');}
""", output)
Exemplo n.º 18
0
    def test_url_rewrite(self):
        output = self.compressor.concatenate_and_rewrite([
            _('pipeline/css/urls.css'),
        ], 'css/screen.css')
        self.assertEqual(
            """@font-face {
  font-family: 'Pipeline';
  src: url(../pipeline/fonts/pipeline.eot);
  src: url(../pipeline/fonts/pipeline.eot?#iefix) format('embedded-opentype');
  src: local('☺'), url(../pipeline/fonts/pipeline.woff) format('woff'), url(../pipeline/fonts/pipeline.ttf) format('truetype'), url(../pipeline/fonts/pipeline.svg#IyfZbseF) format('svg');
  font-weight: normal;
  font-style: normal;
}
.relative-url {
  background-image: url(../pipeline/images/sprite-buttons.png);
}
.relative-url-querystring {
  background-image: url(../pipeline/images/sprite-buttons.png?v=1.0#foo=bar);
}
.absolute-url {
  background-image: url(/images/sprite-buttons.png);
}
.absolute-full-url {
  background-image: url(http://localhost/images/sprite-buttons.png);
}
.no-protocol-url {
  background-image: url(//images/sprite-buttons.png);
}
.anchor-tag-url {
  background-image: url(#image-gradient);
}
@font-face{src:url(../pipeline/fonts/pipeline.eot);src:url(../pipeline/fonts/pipeline.eot?#iefix) format('embedded-opentype'),url(../pipeline/fonts/pipeline.woff) format('woff'),url(../pipeline/fonts/pipeline.ttf) format('truetype');}
""", output)
Exemplo n.º 19
0
    def test_compile(self):
        with self.assertRaises(CompilerError) as cm:
            self.compiler.compile([_('pipeline/js/dummy.coffee')])

            e = cm.exception
            self.assertEqual(e.command, ['/usr/bin/env', 'false'])
            self.assertEqual(e.error_output, '')
Exemplo n.º 20
0
    def test_url_rewrite(self):
        output = self.compressor.concatenate_and_rewrite([
            _('pipeline/css/urls.css'),
        ], 'css/screen.css')
        self.assertEqual(""".embedded-url-svg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath      stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%     3C/svg%3E");
}
@font-face {
  font-family: 'Pipeline';
  src: url(../pipeline/fonts/pipeline.eot);
  src: url(../pipeline/fonts/pipeline.eot?#iefix) format('embedded-opentype');
  src: local('☺'), url(../pipeline/fonts/pipeline.woff) format('woff'), url(../pipeline/fonts/pipeline.ttf) format('truetype'), url(../pipeline/fonts/pipeline.svg#IyfZbseF) format('svg');
  font-weight: normal;
  font-style: normal;
}
.relative-url {
  background-image: url(../pipeline/images/sprite-buttons.png);
}
.relative-url-querystring {
  background-image: url(../pipeline/images/sprite-buttons.png?v=1.0#foo=bar);
}
.absolute-url {
  background-image: url(/images/sprite-buttons.png);
}
.absolute-full-url {
  background-image: url(http://localhost/images/sprite-buttons.png);
}
.no-protocol-url {
  background-image: url(//images/sprite-buttons.png);
}
.anchor-tag-url {
  background-image: url(#image-gradient);
}
@font-face{src:url(../pipeline/fonts/pipeline.eot);src:url(../pipeline/fonts/pipeline.eot?#iefix) format('embedded-opentype'),url(../pipeline/fonts/pipeline.woff) format('woff'),url(../pipeline/fonts/pipeline.ttf) format('truetype');}
""", output)
Exemplo n.º 21
0
 def setUp(self):
     settings.PIPELINE_CSS = {
         'testing': {
             'source_filenames': (
                 _('pipeline/css/first.css'),
                 _('css/third.css'),
             ),
             'manifest':
             False,
             'output_filename':
             'testing.css',
         }
     }
     settings.PIPELINE_JS_COMPRESSOR = None
     settings.PIPELINE_CSS_COMPRESSOR = None
     self.storage = PipelineStorage()
Exemplo n.º 22
0
    def test_url_rewrite_data_uri(self):
        output = self.compressor.concatenate_and_rewrite([
            _('pipeline/css/nested/nested.css'),
        ], 'pipeline/screen.css')
        self.assertEqual(""".data-url {
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2212px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2012%2014%22%20style%3D%22enable-background%3Anew%200%200%2012%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M11%2C6V5c0-2.762-2.239-5-5-5S1%2C2.238%2C1%2C5v1H0v8h12V6H11z%20M6.5%2C9.847V12h-1V9.847C5.207%2C9.673%2C5%2C9.366%2C5%2C9%20c0-0.553%2C0.448-1%2C1-1s1%2C0.447%2C1%2C1C7%2C9.366%2C6.793%2C9.673%2C6.5%2C9.847z%20M9%2C6H3V5c0-1.657%2C1.343-3%2C3-3s3%2C1.343%2C3%2C3V6z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E);
}
""", output)
Exemplo n.º 23
0
    def test_url_rewrite_data_uri(self):
        output = self.compressor.concatenate_and_rewrite([
            _('pipeline/css/nested/nested.css'),
        ], 'pipeline/screen.css')
        self.assertEqual(""".data-url {
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2212px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2012%2014%22%20style%3D%22enable-background%3Anew%200%200%2012%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M11%2C6V5c0-2.762-2.239-5-5-5S1%2C2.238%2C1%2C5v1H0v8h12V6H11z%20M6.5%2C9.847V12h-1V9.847C5.207%2C9.673%2C5%2C9.366%2C5%2C9%20c0-0.553%2C0.448-1%2C1-1s1%2C0.447%2C1%2C1C7%2C9.366%2C6.793%2C9.673%2C6.5%2C9.847z%20M9%2C6H3V5c0-1.657%2C1.343-3%2C3-3s3%2C1.343%2C3%2C3V6z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E);
}
""", output)
Exemplo n.º 24
0
 def test_compile(self):
     with self.assertRaises(CompilerError) as cm:
         self.compiler.compile([_('pipeline/js/dummy.coffee')])
         e = cm.exception
         self.assertEqual(e.command, [
             'this-exists-nowhere-as-a-command-and-should-fail',
             'pipeline/js/dummy.coffee', 'pipeline/js/dummy.junk'
         ])
         self.assertEqual(e.error_output, '')
Exemplo n.º 25
0
    def test_compress_js_with_source_map(self, mock_constructor):
        mock_js_compressor = MagicMock()
        mock_constructor.return_value = mock_js_compressor
        mock_js_compressor.compress_js_with_source_map.return_value = ['code', 'map']

        paths = [
            _('pipeline/js/first.js'),
            _('pipeline/js/second.js')
        ]
        (js, source_map) = self.compressor.compress_js(paths, source_map_filename='map.js')
        self.assertEqual(js, 'code')
        self.assertEqual(source_map, 'map')
        call = mock_js_compressor.compress_js_with_source_map.call_args_list[0]
        call_args = call[0]
        self.assertRegexpMatches(call_args[0][0], 'first.js')
        self.assertRegexpMatches(call_args[0][1], 'second.js')
        self.assertEquals(call_args[1], 'map.js')
        self.assertEquals(call_args[2], '/static/')
        self.assertEquals(call_args[3], 'tests/static/')
Exemplo n.º 26
0
 def test_compile(self):
     with self.assertRaises(CompilerError) as cm:
         self.compiler.compile([_('pipeline/js/dummy.coffee')])
         e = cm.exception
         self.assertEqual(
             e.command,
             ['this-exists-nowhere-as-a-command-and-should-fail',
              'pipeline/js/dummy.coffee',
              'pipeline/js/dummy.junk'])
         self.assertEqual(e.error_output, '')
Exemplo n.º 27
0
 def test_package_for(self):
     packager = Packager()
     packager.packages['js'] = packager.create_packages({
         'application': {
             'source_filenames': (_('pipeline/js/application.js'), ),
             'output_filename': 'application.js'
         }
     })
     try:
         packager.package_for('js', 'application')
     except PackageNotFound:
         self.fail()
     try:
         packager.package_for('js', 'broken')
         self.fail()
     except PackageNotFound:
         pass
Exemplo n.º 28
0
 def test_package_for(self):
     packager = Packager()
     packager.packages['js'] = packager.create_packages({
         'application': {
             'source_filenames': (
                 _('pipeline/js/application.js'),
             ),
             'output_filename': 'application.js'
         }
     })
     try:
         packager.package_for('js', 'application')
     except PackageNotFound:
         self.fail()
     try:
         packager.package_for('js', 'broken')
         self.fail()
     except PackageNotFound:
         pass
Exemplo n.º 29
0
 def test_concatenate_and_rewrite(self):
     css = self.compressor.concatenate_and_rewrite([
         _('pipeline/css/first.css'),
         _('pipeline/css/second.css')
     ], 'css/screen.css')
     self.assertEqual(""".concat {\n  display: none;\n}\n\n.concatenate {\n  display: block;\n}\n""", css)
Exemplo n.º 30
0
 def test_compile(self):
     paths = self.compiler.compile([
         _('pipeline/js/dummy.coffee'),
         _('pipeline/js/application.js'),
     ])
     self.assertEqual([_('pipeline/js/dummy.js'), _('pipeline/js/application.js')], list(paths))
Exemplo n.º 31
0
 def test_compile(self):
         paths = self.compiler.compile([_('pipeline/js/dummy.coffee')])
         default_collector.collect()
         self.assertEqual([_('pipeline/js/dummy.junk')], list(paths))
Exemplo n.º 32
0
 def test_base_path(self):
     base_path = self.compressor.base_path(
         [_('js/templates/form.jst'),
          _('js/templates/field.jst')])
     self.assertEqual(base_path, _('js/templates'))
 def test_compile(self):
     self.assertRaises(CompilerError, self.compiler.compile, [_('pipeline/js/dummy.coffee')])
Exemplo n.º 34
0
 def test_compile(self):
     paths = self.compiler.compile([_('pipeline/js/dummy.coffee')])
     default_collector.collect()
     self.assertEqual([_('pipeline/js/dummy.junk')], list(paths))
Exemplo n.º 35
0
 def test_concatenate(self):
     js = self.compressor.concatenate([
         _('pipeline/js/first.js'),
         _('pipeline/js/second.js')
     ])
     self.assertEqual("""function concat() {\n  console.log(arguments);\n}\n\nfunction cat() {\n  console.log("hello world");\n}\n""", js)
Exemplo n.º 36
0
 def test_base_path(self):
     base_path = self.compressor.base_path([
         _('js/templates/form.jst'), _('js/templates/field.jst')
     ])
     self.assertEqual(base_path, _('js/templates'))
Exemplo n.º 37
0
 def test_compile(self):
     paths = self.compiler.compile([_("pipeline/js/dummy.coffee"), _("pipeline/js/application.js")])
     self.assertEqual([_("pipeline/js/dummy.js"), _("pipeline/js/application.js")], paths)
Exemplo n.º 38
0
 def test_concatenate(self):
     js = self.compressor.concatenate([
         _('pipeline/js/first.js'),
         _('pipeline/js/second.js')
     ])
     self.assertEqual("""(function() {\n  window.concat = function() {\n    console.log(arguments);\n  }\n}()) // No semicolon\n\n;(function() {\n  window.cat = function() {\n    console.log("hello world");\n  }\n}());\n""", js)
Exemplo n.º 39
0
 def test_compile(self):
     self.assertRaises(CompilerError, self.compiler.compile,
                       [_('pipeline/js/dummy.coffee')])
Exemplo n.º 40
0
 def test_embeddable(self):
     self.assertFalse(self.compressor.embeddable(_('pipeline/images/sprite.png'), None))
     self.assertFalse(self.compressor.embeddable(_('pipeline/images/arrow.png'), 'datauri'))
     self.assertTrue(self.compressor.embeddable(_('pipeline/images/embed/arrow.png'), 'datauri'))
     self.assertFalse(self.compressor.embeddable(_('pipeline/images/arrow.dat'), 'datauri'))