buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_log2xml.py
author wbernard
Fri, 13 Aug 2010 14:59:05 +0300
changeset 628 7c4a911dc066
parent 588 c7c26511138f
permissions -rw-r--r--
helium_11.0.0-e00f171ca185

#============================================================================ 
#Name        : test_log2xml.py 
#Part of     : Helium 

#Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
#All rights reserved.
#This component and the accompanying materials are made available
#under the terms of the License "Eclipse Public License v1.0"
#which accompanies this distribution, and is available
#at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
#Initial Contributors:
#Nokia Corporation - initial contribution.
#
#Contributors:
#
#Description:
#===============================================================================
""" test log to XML """

# pylint: disable=R0201

import unittest
import logging
import os
import log2xml
from xml.dom import minidom
import tempfile

_logger = logging.getLogger('test.log2xml')


class Log2XMLTest(unittest.TestCase):
    """ Acceptance tests for log2xml.py """
    def test_log_conversion(self):
        """
        Convert a log into xml.
        """
        logfile = os.path.join(os.environ['TEST_DATA'], 'data', 'log2xml_test.log')
        testfile = os.path.join(tempfile.gettempdir(), "log2xml_test.xml")
        log2xml.convert(logfile, testfile)        
        minidom.parse(testfile)        

    def test_log_utf16_conversion(self):
        """
        Convert a log into xml.
        """
        logfile = os.path.join(os.environ['TEST_DATA'], 'data', 'log2xml_failure.log')
        testfile = os.path.join(tempfile.gettempdir(), "log2xml_test2.xml")
        log2xml.convert(logfile, testfile)        
        minidom.parse(testfile)        


if __name__ == '__main__':
    unittest.main()