testSearch.py :  » Issue-Tracker » IssueTracker » IssueTrackerProduct » tests » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Issue Tracker » IssueTracker 
IssueTracker » IssueTrackerProduct » tests » testSearch.py
# -*- coding: iso-8859-1 -*
##
## <peter@fry-it.com>
##

import re

import sys, os
if __name__ == '__main__':
    execfile(os.path.join(sys.path[0], 'framework.py'))

from base import TestBase

#------------------------------------------------------------------------------
#
# Some constants
#


#------------------------------------------------------------------------------



class SearchTestCase(TestBase):
    """
    Test searching, indexing, spellcorrection, catalog stuff
    """
    
    def test_unicode_search(self):
        """you should be able to enter an issue in unicode, then search for any
        of the words you wrote and find it"""
        
        title = u"Les opposants au r\xc3\xa9gime tha\xc3\xaflandais"
        description = u"\xc3\xa0 l'occupation du si\xc3\xa8g\n\n"\
                      u"Au Parlement, un air d'union sacr\xc3\xa9e face \xc3\xa0"
        
        tracker = self.folder.tracker
        request = self.app.REQUEST
        request.set('title', title)
        request.set('fromname', u'B\xc3\xa9b')
        request.set('email', u'email@address.com')
        request.set('description', description)
        request.set('type', tracker.getDefaultType())
        request.set('urgency', tracker.getDefaultUrgency())
        
        tracker.SubmitIssue(request)
        
        # it should be possible to display it
        issue = tracker.getIssueObjects()[0]
        html = issue.index_html(self.app.REQUEST)
        self.assertTrue(isinstance(html, unicode))
        self.assertTrue(u'r\xc3\xa9gime' in html)
        
        # now search for one of those words
        q = u'R\xc3\xa9GIME'
        search_results = tracker._searchCatalog(q)
        self.assertEqual(len(search_results), 1)
        self.assertEqual(search_results[0], issue)

        highlit = re.compile('<span class="q_highlight">(.*?)</span>')

        # if you view the issue with a q variable set,
        # it should highlight the text
        self.app.REQUEST.set('q', u'air')
        html = issue.index_html(self.app.REQUEST)
        self.assertEqual(highlit.findall(html), [u'air'])
        
        # and do the same with a search with non-ascii characters
        self.app.REQUEST.set('q', u'R\xc3\xa9GIME')
        html = issue.index_html(self.app.REQUEST)
        self.assertEqual(highlit.findall(html), [u'r\xc3\xa9gime'])
        
    
        
def test_suite():
    from unittest import TestSuite,makeSuite
    suite = TestSuite()
    suite.addTest(makeSuite(SearchTestCase))
    return suite
    
if __name__ == '__main__':
    framework()
        

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.