summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2015-07-16 13:20:06 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2015-07-16 13:26:15 +0300
commiteaf9325ddcff786f3fcd5b9047327ef6e397e778 (patch)
tree2f0336efbb1deab9651c5eeb1b5dd753538a5c8e /tests
parent8e11d7f20459697c883df1e421df02006f749792 (diff)
downloadwikitrans-eaf9325ddcff786f3fcd5b9047327ef6e397e778.tar.gz
wikitrans-eaf9325ddcff786f3fcd5b9047327ef6e397e778.tar.bz2
Restructure the package.
The idea is to switch from using this project as a git submodule to having it distributed via PyPI. Since the name 'wit' is already registered there, the package is renamed to 'wikitrans'. * setup.py: Use setuptools Rename package to wikitrans. * wikicvt.py: Remove. Replaced with: * bin/wikitrans: New file. * __init__.py: Move to WikiTrans/__init__.py * wiki2html.py: Move to WikiTrans/wiki2html.py * wiki2texi.py: Move to WikiTrans/wiki2texi.py * wiki2text.py: Move to WikiTrans/wiki2text.py * wikimarkup.py: Move to WikiTrans/wikimarkup.py * wikins.py: Move to WikiTrans/wikins.py * test.py: Move to tests/test.py * MANIFEST.in: New file. * README.rst: New file. * .gitignore: Update.
Diffstat (limited to 'tests')
-rw-r--r--tests/test.py111
1 files changed, 111 insertions, 0 deletions
diff --git a/tests/test.py b/tests/test.py
new file mode 100644
index 0000000..9c72832
--- /dev/null
+++ b/tests/test.py
@@ -0,0 +1,111 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+# Copyright (C) 2008,2015 Sergey Poznyakoff
+#
+# 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 3, 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, see <http://www.gnu.org/licenses/>.
+
+from __future__ import print_function
+import unittest
+import wiki2html
+
+class TestMarkupParserBasic (unittest.TestCase):
+
+ def test_colon(self):
+ self.assertTrue(self.__test('colon'))
+ pass
+
+ def test_headings(self):
+ self.assertTrue(self.__test('headings'))
+ pass
+
+ def test_hz(self):
+ self.assertTrue(self.__test('hz'))
+ pass
+
+ def test_numlist(self):
+ self.assertTrue(self.__test('numlist'))
+ pass
+
+ def test_unlist(self):
+ self.assertTrue(self.__test('unlist'))
+ pass
+
+ def test_deflist(self):
+ self.assertTrue(self.__test('deflist'))
+ pass
+
+ def test_para(self):
+ self.assertTrue(self.__test('para'))
+ pass
+
+ def test_it(self):
+ self.assertTrue(self.__test('it'))
+ pass
+
+ def test_bold(self):
+ self.assertTrue(self.__test('bold'))
+ pass
+
+ def test_boldit1(self):
+ self.assertTrue(self.__test('boldit1'))
+ pass
+
+ def test_itbold1(self):
+ self.assertTrue(self.__test('itbold1'))
+ pass
+
+ def test_boldit2(self):
+ self.assertTrue(self.__test('boldit2'))
+ pass
+
+ def test_itbold2(self):
+ self.assertTrue(self.__test('itbold2'))
+ pass
+
+ def test_boldit3(self):
+ self.assertTrue(self.__test('boldit3'))
+ pass
+
+ def test_itbold3(self):
+ self.assertTrue(self.__test('itbold3'))
+ pass
+
+ # def test_door(self):
+ # self.assertTrue(self.__test('door'))
+ # pass
+
+ # def test_drzwi(self):
+ # self.assertTrue(self.__test('drzwi'))
+ # pass
+
+ def __test(self, filename):
+ name_in = 'testdata/' + filename + '.wiki'
+ name_out = 'testdata/' + filename + '.html'
+ fh = open(name_out)
+ buf = ''.join(fh.readlines()).strip()
+ fh.close()
+ hwm = wiki2html.HtmlWiktionaryMarkup(filename=name_in, lang="pl")
+ hwm.parse()
+
+ if str(hwm).strip() == buf:
+ return True
+
+ # fail
+ print("\n>>>%s<<<" % buf)
+ print(">>>%s<<<" % str(hwm).strip())
+ return False
+
+if __name__ == '__main__':
+ unittest.main()
+

Return to:

Send suggestions and report system problems to the System administrator.