zoukankan      html  css  js  c++  java
  • Dive into python 实例学python (1) —— 函数和测试

    odbchelper.py

    def buildConnectionString(params):
        """Build a connection string from a dictionary
        
        Returns string.
        """
        return ";".join(["%s=%s" % (k, v) for k, v in params.items()])
    
    if __name__ == "__main__":
        myParams = {"server":"mpilgrim", 
                    "database":"master", 
                    "uid":"sa", 
                    "pwd":"secret"
                    }
        print buildConnectionString(myParams)

    1、'''...'''是docstring

    2、join()函数是连接字符串,这里用";"分号来连接,参数是字符串列表list。

    测试代码:

    odbchelpertest.py

    import unittest
    import odbchelper
    
    class GoodInput(unittest.TestCase):
        def testBlank(self):
            """buildConnectionString handles empty dictionary"""
            self.assertEqual("", odbchelper.buildConnectionString({}))
        def testKnownValue(self):
            """buildConnectionString returns known result with known input"""
            params = {"server":"mpilgrim", "database":"master", "uid":"sa", "pwd":"secret"}
            knownItems = params.items()
            knownItems.sort()
            knownString = repr(knownItems)
            result = odbchelper.buildConnectionString(params)
            resultItems = [tuple(e.split("=")) for e in result.split(";")]
            resultItems.sort()
            resultString = repr(resultItems)
            self.assertEqual(knownString, resultString)
    
    class BadInput(unittest.TestCase):
        def testString(self):
            """buildConnectionString should fail with string input"""
            self.assertRaises(AttributeError, odbchelper.buildConnectionString, "")
    
        def testList(self):
            """buildConnectionString should fail with list input"""
            self.assertRaises(AttributeError, odbchelper.buildConnectionString, [])
    
        def testTuple(self):
            """buildConnectionString should fail with tuple input"""
            self.assertRaises(AttributeError, odbchelper.buildConnectionString, ())
    
    if __name__ == "__main__":
        unittest.main()
  • 相关阅读:
    [SharePoint 2010] 自定义字段类型开发(二)
    [SharePoint 2007/2010]Query SharePoint Calendar Event
    打印出带颜色的调试信息
    c语言调试开关
    c语言调试接口
    字符串截取
    黑客
    【原创】洛谷 LUOGU P3379 【模板】最近公共祖先(LCA) -> 倍增
    【转载】从头到尾彻底理解KMP
    【原创】tarjan算法初步(强连通子图缩点)
  • 原文地址:https://www.cnblogs.com/549294286/p/3546543.html
Copyright © 2011-2022 走看看