Reviving RunAllTests.py on gramps40/trunk

Porting from gramps34 my fix for 6935, 6937, 6938.

Import with full "gramps." qualification from the tests,
to overcome the relative import problem (see bug# 6938 for context).

All testing code has been adjusted to the filename and paths
changes since gramps34.
Same as on gramps34, one test fails still, will investigate if
it is a test or a code bug:
    ERROR: test_buffer_recall
    (ErrorReportAssistant_Test.ErrorReportAssistantTest)
    Test that simple recall of messages works.
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "./GrampsLogger/ErrorReportAssistant_Test.py", line 60, in
    test_buffer_recall
        rotate_handler=rh)
      File "../gramps/gui/logger/_errorreportassistant.py", line 81, in
    __init__
        self.build_page1()
      File "../gramps/gui/logger/_errorreportassistant.py", line 267, in
    build_page1
        self._reset_error_details()
      File "../gramps/gui/logger/_errorreportassistant.py", line 178, in
    _reset_error_details
        self._error_detail.get_record()))
    AttributeError: 'str' object has no attribute 'get_record'

svn: r22729
This commit is contained in:
Vassilii Khachaturov
2013-07-24 06:23:33 +00:00
parent b5b6a59f4f
commit 32b559c623
10 changed files with 39 additions and 104 deletions

View File

@@ -24,10 +24,12 @@
import unittest
import logging
import sys
import os
log = logging.getLogger('Gramps.Tests.GrampsLogger')
sys.path.append('..')
import gramps.gen.const as const
const.rootDir = os.path.join(os.path.dirname(__file__), '../../gramps')
sys.path.append(os.path.join(const.rootDir, 'test'))
try:
from guitest.gtktest import GtkTestCase
TestCaseBase = GtkTestCase
@@ -35,15 +37,10 @@ try:
except:
TestCaseBase = unittest.TestCase
sys.path.append('../../src')
sys.path.append('../../src/GrampsLogger')
sys.path.append(const.rootDir)
sys.path.append(os.path.join(const.rootDir, 'GrampsLogger'))
import const
const.rootDir = "../../src"
from GrampsLogger import RotateHandler
import _ErrorReportAssistant
from gramps.gui.logger import RotateHandler, _errorreportassistant
class ErrorReportAssistantTest(TestCaseBase):
"""Test the ErrorReportAssistant."""
@@ -59,7 +56,7 @@ class ErrorReportAssistantTest(TestCaseBase):
l.info("info message")
error_detail="Test error"
ass = _ErrorReportAssistant.ErrorReportAssistant(error_detail=error_detail,
ass = _errorreportassistant.ErrorReportAssistant(error_detail=error_detail,
rotate_handler=rh)
assert ass._error_detail == error_detail