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

#============================================================================ 
#Name        : test_ant.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:
#===============================================================================

""" amara.py module tests. """


import amara
from xmlhelper import recursive_node_scan
import urllib
import tempfile
import os
import sys

def test_amara():
    """test amara"""
    xxx = amara.parse(r'<commentLog><branchInfo category="" error="kkk" file="tests/data/comments_test.txt" originator="sanummel" since="07-03-22">Add rofsfiles for usage in paged images</branchInfo></commentLog>')
    assert str(xxx.commentLog.branchInfo) == 'Add rofsfiles for usage in paged images'
    
    xxx = amara.parse(r'<commentLog><branchInfo>1</branchInfo><branchInfo>2</branchInfo></commentLog>')
    for yyy in xxx.commentLog.branchInfo:
        assert str(yyy) == '1'
        break
          
    myxml = """<DpComponent DpType="File" name="dp.cfg.xml" fileType="Binary" fileSubType="1" fileIndex="1" owner="SwUpdate" extract="true" signed="true" optional="true" crc="true" useCases="Refurbish,BackupRestore" variantPackage="true" include="true" EnableCRCVerification="true" parameters="test"/>"""
    xcf = amara.parse(myxml)
    assert xcf.DpComponent['name'] == 'dp.cfg.xml'
    
    myxml2 = """<bomDelta><buildFrom>ido_raptor_mcl_abs_MCL.52.57</buildFrom><buildTo>mock</buildTo><content/></bomDelta>"""
    xcf2 = amara.parse(myxml2)
    assert xcf2.bomDelta[0].buildFrom[0] == "ido_raptor_mcl_abs_MCL.52.57"
    
    print xcf.DpComponent.xml_attributes
    
    doc = amara.create_document(u'bom')
    s60_input_node = doc.xml_create_element(u'input')
    s60_input_node.xml_append(doc.xml_create_element(u'name', content=(unicode("s60"))))
    print s60_input_node.xml()
    
    s60_input_source = s60_input_node.xml_create_element(u'source')
    s60_input_source.xml_append(doc.xml_create_element(u'type', content=(unicode("grace"))))
    print s60_input_source.xml()
          
    doc = amara.create_document(u'bom')
    doc.bom.xml_append(doc.xml_create_element(u'build', content=unicode("a")))
    
    doc = amara.create_document(u'bomDelta')
    content_node = doc.xml_create_element(u'content')
    doc.bomDelta.xml_append(content_node)
    content_node.xml_append(content_node.xml_create_element(u'b', content=unicode('a')))
    assert doc.bomDelta.xml(indent=False) == '<bomDelta><content><b>a</b></content></bomDelta>'
    
    recursive_node_scan(doc, 'a')
    
    amara.create_document()
    
    xcf3 = amara.parse(r'<VariantPackingList><Variant/></VariantPackingList>')
    assert hasattr(xcf3.VariantPackingList.Variant,"FileList") == False
    if not hasattr(xcf3.VariantPackingList.Variant,"FileList"):
        xcf3.VariantPackingList.Variant.xml_append(xcf3.xml_create_element(u"FileList"))
    xcf3.VariantPackingList.Variant.FileList.xml_append_fragment(doc.xml(omitXmlDeclaration=u"yes"))
    
    xcf4 = amara.parse(r"<a><p name='1'/><p name='1'/></a>")
    found = False
    for p_path in xcf4.xml_xpath("//p"):
        assert str(p_path.name) == '1'
        found = True
    assert found
    
    #xcf5 = amara.parse(open(r'C:\USERS\helium\helium-dev-forbuilds\helium\tests\data\bom\build_model_bom.xml'))
    #u'%s' % xcf5.bom.content.project.folder.task.synopsis
    
    doc = amara.create_document(u"commentLog")
    if not doc:
        pass

    xml1 = """<commentLog><branchInfo category="" error="kkk" file="comments_test.txt" originator="sanummel" since="07-03-22">Add rofsfiles for usage in paged images</branchInfo></commentLog>"""
    doc2 = amara.parse(xml1)
    assert doc2.commentLog.branchInfo.category == ""

    doc2.commentLog.xml_remove_child(doc2.commentLog.branchInfo)
    
    myxml3 = """<a><b value="1"/></a>"""
    xml3 = amara.parse(myxml3)
    for p_temp in xml3.xml_xpath("//b"):
        p_temp.value = u'2'
    assert '2' in xml3.xml()
    
    xml4 = """<a>\n\t<b name="b">a</b>\n</a>"""

    print amara.parse(xml4).xml(indent="yes").replace('\n', 'n').replace('\t', 't')
    assert xml4 in amara.parse(xml4).xml(indent="yes")
    
    ppxml = """<SettingsData>
  <ProductProfile Version="1.1">
     <Feature>
        <Index>35</Index> 
        <Value>1</Value> 
     </Feature>
  </ProductProfile>
</SettingsData>"""

    newppxml = amara.parse(ppxml)
    oldppxml = amara.parse(ppxml)
    
    oldppdata = {}
    for oldfeature in oldppxml.SettingsData.ProductProfile.Feature:
        oldppdata[str(oldfeature.Index)] = oldfeature.Value
    for newfeature in newppxml.SettingsData.ProductProfile.Feature:
        if not oldppdata.has_key(str(newfeature.Index)):
            raise Exception(newfeature.Value)
        elif oldppdata[str(newfeature.Index)] != str(newfeature.Value):
            raise Exception(str(oldppdata[str(newfeature.Index)]) + ' ' + str(newfeature.Value))

def test_amara_xinclude():
    (f_desc1, filename1) = tempfile.mkstemp()
    f_file1 = os.fdopen(f_desc1, 'w')
    f_file1.write(r'<b>qwerty</b>')
    f_file1.close()
    (f_desc, filename) = tempfile.mkstemp()
    f_file = os.fdopen(f_desc, 'w')
    
    #try:
    #    from Ft.Lib import Uri
    #    fileurl = Uri.OsPathToUri(filename1)
    #except ImportError:
    fileurl = filename1
    
    f_file.write(r'<a xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="' + os.path.basename(fileurl) + r'"/></a>')
    f_file.close()
    
    #if 'java' in sys.platform:
    doc3 = amara.parse(urllib.pathname2url(filename))
    #else:
    #    doc3 = amara.parse(Uri.OsPathToUri(filename))
    assert 'qwerty' in doc3.xml()