2009-06-07 14:26:46 +00:00
|
|
|
# Unit Name: dupeguru.tests.export_test
|
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2006/09/16
|
|
|
|
# $Id$
|
|
|
|
# Copyright 2009 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
from xml.dom import minidom
|
|
|
|
from StringIO import StringIO
|
|
|
|
|
|
|
|
from hsutil.testcase import TestCase
|
|
|
|
|
2009-06-07 14:26:46 +00:00
|
|
|
from .. import export
|
|
|
|
from ..export import *
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
class TCoutput_columns_xml(TestCase):
|
|
|
|
def test_empty_columns(self):
|
|
|
|
f = StringIO()
|
|
|
|
output_column_xml(f,[])
|
|
|
|
f.seek(0)
|
|
|
|
doc = minidom.parse(f)
|
|
|
|
root = doc.documentElement
|
|
|
|
self.assertEqual('columns',root.nodeName)
|
|
|
|
self.assertEqual(0,len(root.childNodes))
|
|
|
|
|
|
|
|
def test_some_columns(self):
|
|
|
|
f = StringIO()
|
|
|
|
output_column_xml(f,[('foo',True),('bar',False),('baz',True)])
|
|
|
|
f.seek(0)
|
|
|
|
doc = minidom.parse(f)
|
|
|
|
columns = doc.getElementsByTagName('column')
|
|
|
|
self.assertEqual(3,len(columns))
|
|
|
|
c1,c2,c3 = columns
|
|
|
|
self.assertEqual('foo',c1.getAttribute('display'))
|
|
|
|
self.assertEqual('bar',c2.getAttribute('display'))
|
|
|
|
self.assertEqual('baz',c3.getAttribute('display'))
|
|
|
|
self.assertEqual('y',c1.getAttribute('enabled'))
|
|
|
|
self.assertEqual('n',c2.getAttribute('enabled'))
|
|
|
|
self.assertEqual('y',c3.getAttribute('enabled'))
|
|
|
|
|
|
|
|
|
|
|
|
class TCmerge_css_into_xhtml(TestCase):
|
|
|
|
def test_main(self):
|
|
|
|
css = StringIO()
|
|
|
|
css.write('foobar')
|
|
|
|
css.seek(0)
|
|
|
|
xhtml = StringIO()
|
|
|
|
xhtml.write("""<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<title>dupeGuru - Duplicate file scanner</title>
|
|
|
|
<link rel="SHORTCUT ICON" href="/favicon.ico" />
|
|
|
|
<link rel="stylesheet" href="../hardcoded.css" type="text/css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
</body>
|
|
|
|
</html>""")
|
|
|
|
xhtml.seek(0)
|
|
|
|
self.assert_(merge_css_into_xhtml(xhtml,css))
|
|
|
|
xhtml.seek(0)
|
|
|
|
doc = minidom.parse(xhtml)
|
|
|
|
head = doc.getElementsByTagName('head')[0]
|
|
|
|
#A style node should have been added in head.
|
|
|
|
styles = head.getElementsByTagName('style')
|
|
|
|
self.assertEqual(1,len(styles))
|
|
|
|
style = styles[0]
|
|
|
|
self.assertEqual('text/css',style.getAttribute('type'))
|
|
|
|
self.assertEqual('foobar',style.firstChild.nodeValue.strip())
|
|
|
|
#all <link rel="stylesheet"> should be removed
|
|
|
|
self.assertEqual(1,len(head.getElementsByTagName('link')))
|
|
|
|
|
|
|
|
def test_empty(self):
|
|
|
|
self.assert_(not merge_css_into_xhtml(StringIO(),StringIO()))
|
|
|
|
|
|
|
|
def test_malformed(self):
|
|
|
|
xhtml = StringIO()
|
|
|
|
xhtml.write("""<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">""")
|
|
|
|
xhtml.seek(0)
|
|
|
|
self.assert_(not merge_css_into_xhtml(xhtml,StringIO()))
|
|
|
|
|