test_moveToModule.py :  » Development » Bicycle-Repair-Man » bicyclerepair-0.9 » bike » refactor » 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 » refactor » test_moveToModule.py
#!/usr/bin/env python
import setpath
from bike.testutils import *
from bike.transformer.save import save

from moveToModule import *

class TestMoveClass(BRMTestCase):
    def test_movesTheText(self):
        src1=trimLines("""
        def before(): pass
        class TheClass:
            pass
        def after(): pass
        """)
        src1after=trimLines("""
        def before(): pass
        def after(): pass
        """)
        src2after=trimLines("""
        class TheClass:
            pass
        """)
        
        try:
            createPackageStructure(src1, "")
            moveClassToNewModule(pkgstructureFile1,2,
                                 pkgstructureFile2)
            save()
            self.assertEqual(src1after,file(pkgstructureFile1).read())
            self.assertEqual(src2after,file(pkgstructureFile2).read())
        finally:
            removePackageStructure()

class TestMoveFunction(BRMTestCase):
    def test_importsNameReference(self):
        src1=trimLines("""
        a = 'hello'
        def theFunction(self):
            print a
        """)
        src2after=trimLines("""
        from a.foo import a
        def theFunction(self):
            print a
        """)
        self.helper(src1, src2after)
        


    def test_importsExternalReference(self):
        src0=("""
        a = 'hello'
        """)
        src1=trimLines("""
        from top import a
        def theFunction(self):
            print a
        """)
        src2after=trimLines("""
        from top import a
        def theFunction(self):
            print a
        """)
        try:
            createPackageStructure(src1, "", src0)
            moveFunctionToNewModule(pkgstructureFile1,2,
                                    pkgstructureFile2)
            save()
            self.assertEqual(src2after,file(pkgstructureFile2).read())
        finally:
            removePackageStructure()

    def test_doesntImportRefCreatedInFunction(self):
        src1=trimLines("""
        def theFunction(self):
            a = 'hello'
            print a
        """)
        src2after=trimLines("""
        def theFunction(self):
            a = 'hello'
            print a
        """)
        
        self.helper(src1, src2after)


    def test_doesntImportRefCreatedInFunction(self):
        src1=trimLines("""
        def theFunction(self):
            a = 'hello'
            print a
        """)
        src2after=trimLines("""
        def theFunction(self):
            a = 'hello'
            print a
        """)
        
        self.helper(src1, src2after)


    def test_addsImportStatementToOriginalFileIfRequired(self):
        src1=trimLines("""
        def theFunction(self):
            pass
        b = theFunction()
        """)
        
        src1after=trimLines("""
        from a.b.bah import theFunction
        b = theFunction()
        """)
        try:
            createPackageStructure(src1,"")
            moveFunctionToNewModule(pkgstructureFile1,1,
                                    pkgstructureFile2)
            save()
            self.assertEqual(src1after,file(pkgstructureFile1).read())
        finally:
            removePackageStructure()

    def test_updatesFromImportStatementsInOtherModules(self):
        src0=trimLines("""
        from a.foo import theFunction
        print theFunction()
        """)
        src1=trimLines("""
        def theFunction(self):
            pass
        """)
        
        src0after=trimLines("""
        from a.b.bah import theFunction
        print theFunction()
        """)
        try:
            createPackageStructure(src1,"",src0)
            moveFunctionToNewModule(pkgstructureFile1,1,
                                    pkgstructureFile2)
            save()
            self.assertEqual(src0after,file(pkgstructureFile0).read())
        finally:
            removePackageStructure()

    def test_updatesFromImportMultiplesInOtherModules(self):
        src0=trimLines("""
        from a.foo import something,theFunction,somethingelse #comment
        print theFunction()
        """)
        src1=trimLines("""
        def theFunction(self):
            pass
        something = ''
        somethingelse = 0
        """)
        
        src0after=trimLines("""
        from a.foo import something,somethingelse #comment
        from a.b.bah import theFunction
        print theFunction()
        """)
        try:
            createPackageStructure(src1,"",src0)
            moveFunctionToNewModule(pkgstructureFile1,1,
                                    pkgstructureFile2)
            save()
            self.assertEqual(src0after,file(pkgstructureFile0).read())
        finally:
            removePackageStructure()
        
    def test_updatesFromImportMultiplesInTargetModule(self):
        src0=trimLines("""
        from a.foo import something,theFunction,somethingelse #comment
        print theFunction()
        """)
        src1=trimLines("""
        def theFunction(self):
            pass
        something = ''
        somethingelse = 0
        """)
        
        src0after=trimLines("""
        from a.foo import something,somethingelse #comment
        print theFunction()
        def theFunction(self):
            pass
        """)
        try:
            createPackageStructure(src1,"",src0)
            moveFunctionToNewModule(pkgstructureFile1,1,
                                    pkgstructureFile0)
            save()
            #print file(pkgstructureFile0).read()
            self.assertEqual(src0after,file(pkgstructureFile0).read())
        finally:
            removePackageStructure()


    def test_updatesFromImportInTargetModule(self):
        src0=trimLines("""
        from a.foo import theFunction
        print theFunction()
        """)
        src1=trimLines("""
        def theFunction(self):
            pass
        """)
        
        src0after=trimLines("""
        print theFunction()
        def theFunction(self):
            pass
        """)
        try:
            createPackageStructure(src1,"",src0)
            moveFunctionToNewModule(pkgstructureFile1,1,
                                    pkgstructureFile0)
            save()
            self.assertEqual(src0after,file(pkgstructureFile0).read())
        finally:
            removePackageStructure()



    def helper(self, src1, src2after):
        try:
            createPackageStructure(src1, "")
            moveFunctionToNewModule(pkgstructureFile1,2,
                                    pkgstructureFile2)
            save()
            self.assertEqual(src2after,file(pkgstructureFile2).read())
        finally:
            removePackageStructure()
        

        
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.