This file is indexed.

/usr/share/pyshared/bike/query/test_getTypeOf.py is in bicyclerepair 0.9-6.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/usr/bin/env python
import setpath
import unittest
import os
from bike import testdata
from bike.testutils import *
from bike.query.getTypeOf import getTypeOf, UnfoundType,\
     attemptToConvertGetattrToFqn
from bike.parsing.fastparserast import Class, Function, Instance
from bike.parsing.newstuff import getModuleOrPackageUsingFQN
from compiler.ast import Getattr,CallFunc,Name

class TestGetTypeOf(BRMTestCase):
    def test_getsTypeOfSimpleClassInstanceReference(self):
        src = trimLines("""
        from b.bah import TheClass
        a = TheClass()
        a.theMethod()
        """)
        root = createSourceNodeAt(src,"a.foo")
        root = createSourceNodeAt(testdata.TheClass, "a.b.bah")
        module = getModuleOrPackageUsingFQN("a.foo")
        res =  getTypeOf(module,"a")
        assert isinstance(res,Instance)
        assert isinstance(res.getType(),Class)
        assert res.getType().name == "TheClass"

    def test_getsTypeOfImportedClassReference(self):
        src = trimLines("""
        import b.bah
        a = b.bah.TheClass()
        """)
        root = createSourceNodeAt(src,"a.foo")
        root = createSourceNodeAt(testdata.TheClass, "a.b.bah")
        module = getModuleOrPackageUsingFQN("a.foo")
        res =  getTypeOf(module,"a")
        assert isinstance(res,Instance)
        assert isinstance(res.getType(),Class)
        assert res.getType().name == "TheClass"

    def test_getsTypeOfClassReferenceFromImportedPackage(self):
        src = trimLines("""
        import b
        a = b.bah.TheClass()
        """)
        root = createSourceNodeAt(src,"a.foo")
        root = createSourceNodeAt(testdata.TheClass, "a.b.bah")
        module = getModuleOrPackageUsingFQN("a.foo")
        res =  getTypeOf(module,"a")
        assert isinstance(res,Instance)
        assert isinstance(res.getType(),Class)
        assert res.getType().name == "TheClass"

    def test_getsTypeOfInstanceThatIsAnAttributeOfSelf(self):
        src = trimLines("""
        class TheClass:
            def theMethod(self):
                pass
        
        class AnotherClass:
            def __init__(self):
                self.a = TheClass()
            def anotherFn(self):
                self.a.theMethod()
        """)
        root = createSourceNodeAt(src,"a.foo")
        module = getModuleOrPackageUsingFQN('a.foo')
        theclass = getTypeOf(module,"TheClass")
        fn = getTypeOf(module,"AnotherClass.anotherFn")
        self.assertEqual(getTypeOf(fn,"self.a").getType().name, "TheClass")
        #self.assertEqual(getTypeOf(fn,"self.a").getType(), theclass)
        
        

    def test_doesntGetTypeDefinedInChildFunction(self):
        src = trimLines("""
        from b.bah import TheClass
        a = AnotherClass()
        def foo():
            a = TheClass()
        a.theMethod()
        """)
        root = createSourceNodeAt(src,"a.foo")
        root = createSourceNodeAt(testdata.TheClass, "a.b.bah")
        
        themodule = getModuleOrPackageUsingFQN("a.foo")
        assert isinstance(getTypeOf(themodule,"a"),UnfoundType)
    

    def test_getsTypeOfClassReferencedViaAlias(self):
        src = trimLines("""
        from b.bah import TheClass as FooBah
        FooBah()
        """)
        root = createSourceNodeAt(src,"a.foo")
        root = createSourceNodeAt(testdata.TheClass, "a.b.bah")
        themodule = getModuleOrPackageUsingFQN("a.foo")
        self.assertEqual(getTypeOf(themodule,"FooBah").name,"TheClass")
        self.assertEqual(getTypeOf(themodule,"FooBah").filename,
                         os.path.abspath(os.path.join("a","b","bah.py")))
        

    def test_getsTypeOfClassImportedFromPackageScope(self):
        initfile = trimLines("""
        from bah import TheClass
        """)
        src = trimLines("""
        from a import b
        b.TheClass()
        """)
        createSourceNodeAt(src,"a.foo")
        createSourceNodeAt(testdata.TheClass, "a.b.bah")
        createSourceNodeAt(initfile,"a.b.__init__")
        themodule = getModuleOrPackageUsingFQN("a.foo")
        self.assertEqual(getTypeOf(themodule,"b.TheClass").name,"TheClass")
        self.assertEqual(getTypeOf(themodule,"b.TheClass").filename,
                         os.path.abspath(os.path.join("a","b","bah.py")))


    def test_attemptToConvertGetattrToFqn_returnsNoneIfFails(self):
        ast = Getattr(CallFunc(Name("foo"),[],[],[]),"hello")
        assert attemptToConvertGetattrToFqn(ast) is None

    def test_attemptToConvertGetattrToFqn_works(self):
        ast = Getattr(Getattr(Name("foo"),"bah"),"hello")
        assert attemptToConvertGetattrToFqn(ast) == "foo.bah.hello"

    
    def test_handlesRecursionProblem(self):
        src = trimLines("""
        def fn(root):
            node = root
            node = node.getPackage('something')
        """)
        root = createSourceNodeAt(src,"a.foo")
        m = getModuleOrPackageUsingFQN("a.foo")
        fn = getTypeOf(m,"fn")
        getTypeOf(fn,"node")   # stack overflow!


    def test_doesntGotIntoRecursiveLoopWhenEvaluatingARecursiveFunction(self):
        src = trimLines("""
        def fn(v):
            if v < 45:
                return fn(root+1)
        val = fn(3)
        """)
        root = createSourceNodeAt(src,"a.foo")
        mod = getModuleOrPackageUsingFQN("a.foo")
        getTypeOf(mod,"val")   # stack overflow!

    def test_getsModuleImportedWithFrom(self):
        importsrc=trimLines("""
        from a.b import bah
        """)
        src=trimLines("""
        mytext = 'hello'
        """)        
        type = self.helper(importsrc,src,'bah')
        self.assertEqual(pkgstructureFile2,type.filename)

    def helper(self,importsrc,src,name):
        try:
            createPackageStructure(importsrc,src)
            from bike.parsing.newstuff import getModule
            scope = getModule(pkgstructureFile1)
            return getTypeOf(scope,name)
        finally:
            removePackageStructure()
    

    def test_getsTypeOfClassImportedAsAlias(self):
        importsrc = trimLines("""
        from b.bah import TheClass as MyTheClass
        
        def foo():
            a = MyTheClass()
            a.theMethod()
        """)
        src=trimLines("""
        class TheClass:
            def theMethod(self):
                pass
        """)
        type = self.helper(importsrc,src,'MyTheClass')
        self.assertEqual("TheClass",type.name)


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