test_getReferencesToModule.py :  » Development » Bicycle-Repair-Man » bicyclerepair-0.9 » bike » query » 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 » Development » Bicycle Repair Man 
Bicycle Repair Man » bicyclerepair 0.9 » bike » query » test_getReferencesToModule.py
#!/usr/bin/env python
import setpath
import unittest
import os
from bike import testdata
from bike.testutils import *
from bike.query.getReferencesToModule import *
from bike.parsing.fastparserast import Module

class TestGetReferencesToModule(BRMTestCase):
    
    def test_returnsEmptyListIfNoReferences(self):
        src = trimLines("""
        class MyClass:
            pass
        a = TheClass()
        """)
        root = createSourceNodeAt(src,"mymodule")
        self.assertEqual([x for x in getReferencesToModule(root,"myothermodule")],[])

    def test_findsReferencesInModuleWhichImportsModule(self):
        src = trimLines("""
        import b.bah
        def foo():
            a = b.bah.TheClass()
            a.theMethod()
        """)

        root = createSourceNodeAt( src, "a.foo")
        root = createSourceNodeAt( testdata.TheClass, "a.b.bah")
        refs = [x for x in getReferencesToModule(root,"a.b.bah")]

        
        self.assertEqual(refs[0].filename,os.path.abspath(os.path.join("a","foo.py")))
        self.assertEqual(refs[0].lineno,1)
        self.assertEqual(refs[0].colno,9)
        self.assertEqual(refs[0].confidence,100)

        self.assertEqual(refs[1].filename,os.path.abspath(os.path.join("a","foo.py")))
        self.assertEqual(refs[1].lineno,3)
        self.assertEqual(refs[1].colno,10)
        self.assertEqual(refs[0].confidence,100)
        
    def test_findsReferenceInModuleWhichImportsModuleWithFrom(self):
        src = trimLines("""
        from b import bah
        def foo():
            a = bah.TheClass()
            a.theMethod()
        """)

        root = createSourceNodeAt( src, "a.foo")
        root = createSourceNodeAt( testdata.TheClass, "a.b.bah")
        refs = [x for x in getReferencesToModule(root,"a.b.bah")]

        self.assertEqual(refs[0].filename,os.path.abspath(os.path.join("a","foo.py")))
        self.assertEqual(refs[0].lineno,1)
        self.assertEqual(refs[0].colno,14)
        self.assertEqual(refs[0].confidence,100)

        self.assertEqual(refs[1].filename,os.path.abspath(os.path.join("a/foo.py")))
        self.assertEqual(refs[1].lineno,3)
        self.assertEqual(refs[1].colno,8)
        self.assertEqual(refs[0].confidence,100)

    def test_findsReferenceInModuleWhichImportsModuleWithFromAndAlias(self):
        src = trimLines("""
        from b import bah as mymodule
        def foo():
            a = mymodule.MyTheClass()
            a.theMethod()
        """)


        root = createSourceNodeAt( src, "a.foo")
        root = createSourceNodeAt( testdata.TheClass, "a.b.bah")
        refs = [x for x in getReferencesToModule(root,"a.b.bah")]

        self.assertEqual(refs[0].filename,os.path.abspath(os.path.join("a","foo.py")))
        self.assertEqual(refs[0].lineno,1)
        self.assertEqual(refs[0].colno,14)
        self.assertEqual(refs[0].confidence,100)

        """ # mymodule.MyTheClass
        self.assertEqual(refs[1].filename,os.path.abspath(os.path.join("a","foo.py")))
        self.assertEqual(refs[1].lineno,3)
        self.assertEqual(refs[1].colno,10)
        self.assertEqual(refs[1].confidence,100)
        """

    def test_findsReferenceInModuleWhichImportsModuleWithFromImportStar(self):
        src = trimLines("""
        from b.bah import *
        a = TheClass()
        a.theMethod()
        """)

        root = createSourceNodeAt( src, "a.foo")
        root = createSourceNodeAt( testdata.TheClass, "a.b.bah")
        refs = [x for x in getReferencesToModule(root,"a.b.bah")]

        self.assertEqual(refs[0].filename,os.path.abspath(os.path.join("a","foo.py")))
        self.assertEqual(refs[0].lineno,1)
        self.assertEqual(refs[0].colno,7)
        self.assertEqual(refs[0].confidence,100)

    ''' Dont think this is a valid test, since cant import a module with
        from package import *
    def test_findsReferenceInModuleWhichImportsClassWithFromImportStar2(self):
        src = trimLines("""
        from a.b import * 
        a = bah.TheClass()
        """)

        root = createSourceNodeAt( src, "a.foo")
        root = createSourceNodeAt( testdata.TheClass, "a.b.bah")
        refs = [x for x in getReferencesToModule(root,"a.b.bah")]

        self.assertEqual(refs[0].filename,os.path.abspath(os.path.join("a","foo.py")))
        self.assertEqual(refs[0].lineno,2)
        self.assertEqual(refs[0].colno,4)
        self.assertEqual(refs[0].confidence,100)
    '''
    
    def test_findsReferenceInClassBases(self):
        src =trimLines("""
        from b import bah
        class DerivedClass(bah.TheClass):
            pass
        """)

        root = createSourceNodeAt(src, "a.foo")
        root = createSourceNodeAt(testdata.TheClass, "a.b.bah")
        refs = [x for x in getReferencesToModule(root,"a.b.bah")]
        
        self.assertEqual(refs[1].filename,os.path.abspath(os.path.join("a","foo.py")))
        self.assertEqual(refs[1].lineno,2)
        self.assertEqual(refs[1].colno,19)
        self.assertEqual(refs[1].confidence,100)
            
    def test_findsReferenceInMultiLineImportStatement(self):
        src =trimLines("""
        from b import foo, \\
                  TheFooBah, TheClass, TheBastard, SomethingElse, bah
        """)

        root = createSourceNodeAt( src, "a.foo")
        root = createSourceNodeAt( testdata.TheClass, "a.b.bah")
        refs = [x for x in getReferencesToModule(root,"a.b.bah")]
        self.assertEqual(refs[0].filename,os.path.abspath(os.path.join("a","foo.py")))
        self.assertEqual(refs[0].lineno,2)
        self.assertEqual(refs[0].colno,58)
        self.assertEqual(refs[0].confidence,100)

    def test_findsReferenceWhenModulenameSameAsClassMethodName(self):
        # asserts that brm doesnt search class scope after not finding name
        # in method scope (since class scope is invisible unless called on 'self'
        src =trimLines("""
        from a.b import bah
        class baz:
            def bah(self):
                print bah.TheClass
        """)        

        root = createSourceNodeAt( src, "a.foo")
        root = createSourceNodeAt( testdata.TheClass, "a.b.bah")
        refs = [x for x in getReferencesToModule(root,"a.b.bah")]
        
        self.assertEqual(refs[0].filename,os.path.abspath(os.path.join("a","foo.py")))
        self.assertEqual(refs[0].lineno,1)
        self.assertEqual(refs[0].colno,16)
        self.assertEqual(refs[0].confidence,100)
        
        assert (len(refs))==2


        
if __name__ == "__main__":
    unittest.main()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.