Revelation / test / datahandler_xhtml.py

#!/usr/bin/env python

#
# Revelation 0.4.0 - a password manager for GNOME 2
# http://oss.codepoet.no/revelation/
# $Id$
#
# Unit tests for XHTML datahandler module
#
#
# Copyright (c) 2003-2005 Erik Grinaker
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#

import unittest, xml.dom.minidom

from revelation import data, datahandler, entry



class XHTML(unittest.TestCase):
        "XHTML()"

        def test_attrs(self):
                "XHTML has sane attrs"

                self.assertEquals(datahandler.XHTML.name, "XHTML / CSS")
                self.assertEquals(datahandler.XHTML.importer, False)
                self.assertEquals(datahandler.XHTML.exporter, True)
                self.assertEquals(datahandler.XHTML.encryption, False)



class XHTML_export_data(unittest.TestCase):
        "XHTML.export_data()"

        def setUp(self):
                "set up common facilities for tests"

                self.entrystore = data.EntryStore()

                e = entry.GenericEntry()
                e.name = "Generic entry"
                e.description = "A test entry"
                e.updated = 1098822251
                e[entry.HostnameField] = "localhost"
                e[entry.UsernameField] = "erikg"
                e[entry.PasswordField] = "pwtest"
                self.entrystore.add_entry(e)

                f = entry.FolderEntry()
                f.name = "Folder"
                fiter = self.entrystore.add_entry(f)

                e = entry.WebEntry()
                e.name = "Web entry"
                e.description = "A test web entry"
                e.updated = 123456789
                e[entry.URLField] = "http://www.slashdot.org/"
                e[entry.UsernameField] = "erikg"
                e[entry.PasswordField] = "pwtest"
                self.entrystore.add_entry(e, fiter)


        def test_wellformed(self):
                "XHTML.export_data() generates well-formed XML"

                xml.dom.minidom.parseString(datahandler.XHTML().export_data(self.entrystore))



if __name__ == "__main__":
        unittest.main()
Tip: Filter by directory path e.g. /media app.js to search for public/media/app.js.
Tip: Use camelCasing e.g. ProjME to search for ProjectModifiedEvent.java.
Tip: Filter by extension type e.g. /repo .js to search for all .js files in the /repo directory.
Tip: Separate your search with spaces e.g. /ssh pom.xml to search for src/ssh/pom.xml.
Tip: Use ↑ and ↓ arrow keys to navigate and return to view the file.
Tip: You can also navigate files with Ctrl+j (next) and Ctrl+k (previous) and view the file with Ctrl+o.
Tip: You can also navigate files with Alt+j (next) and Alt+k (previous) and view the file with Alt+o.