1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
# -*- coding: utf-8 -*-
# Copyright 2012,2013 Jaap Karssenberg <jaap.karssenberg@gmail.com>
'''Test cases for the base zim module.'''
from __future__ import with_statement
import tests
from tests.config import EnvironmentConfigContext
import sys
import cStringIO as StringIO
#~ import threading
#~ import time
from zim.fs import Dir, File, FS
from zim.environ import environ
from zim.main import *
import zim
import zim.main
class TestGetApplication(tests.TestCase):
def setUp(self):
self.old_exe = zim.ZIM_EXECUTABLE
def tearDown(self):
zim.ZIM_EXECUTABLE = self.old_exe
def runTest(self):
zim.ZIM_EXECUTABLE = '/foo/bar/zim.py'
app = zim.main.get_zim_application('--help')
self.assertEqual(app.cmd[:4], ('/foo/bar/zim.py', '--help', '--standalone'))
# limit to cmd[:4] because running test with "-D" or "-V" can add more
class capture_stdout:
def __enter__(self):
self.real_stdout = sys.stdout
sys.stdout = StringIO.StringIO()
return sys.stdout
def __exit__(self, type, value, traceback):
sys.stdout = self.real_stdout
class TestParseCommand(tests.TestCase):
def runTest(self):
for command, klass in zim.main.commands.items():
obj = zim.main.build_command(['--%s' % command])
self.assertIsInstance(obj, klass)
obj = zim.main.build_command(['-v'])
self.assertIsInstance(obj, VersionCommand)
obj = zim.main.build_command(['-h'])
self.assertIsInstance(obj, HelpCommand)
obj = zim.main.build_command(['foo'])
self.assertIsInstance(obj, GuiCommand)
# TODO test plugins
class TestVersion(tests.TestCase):
def runTest(self):
cmd = VersionCommand('version')
with capture_stdout() as output:
cmd.run()
self.assertTrue(output.getvalue().startswith('zim'))
class TestHelp(tests.TestCase):
def runTest(self):
cmd = HelpCommand('help')
with capture_stdout() as output:
cmd.run()
self.assertTrue(output.getvalue().startswith('usage:'))
#~ class TestGui(tests.TestCase):
#~
#~ def runTest(self):
#~ cmd = GuiCommand()
#~ with DialogContext():
#~ cmd.run()
# Check default notebook
# Check dialog list prompt
# Check mainwindow pops up
#~ @tests.slowTest
#~ class TestServer(tests.TestCase):
#~
#~ def testServerGui(self):
#~ cmd = ServerCommand('server')
#~ cmd.parse_options('--gui')
#~ with DialogContext():
#~ cmd.run()
#~
#~ def testServer(self):
#~ cmd = ServerCommand('server', 'testnotebook')
#~ t = threading.Thread(target=cmd.run)
#~ t.start()
#~ time.sleep(3) # give time to startup
#~ re = urlopen('http://localhost:8080')
#~ self.assertEqual(re.getcode(), 200)
#~ cmd.server.shutdown()
#~ t.join()
## ExportCommand() is tested in tests/export.py
|