免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4750 | 回复: 5
打印 上一主题 下一主题

python装饰器问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-05-17 09:11 |只看该作者 |倒序浏览
本帖最后由 413xp 于 2013-05-17 09:21 编辑

因为工作需要写个自动化测试系统,想实现功能如下:

每次操作operation(args)时,都会去查找lookforall()相应关键字,如果匹配到则返回一,因为刚学python 不久,刚好

了解到装饰器,于是自己写了这么段,后来发现装饰器必须要返回这个被装饰的函数对象,但是我要需要得到这个match

是否成功的结果 ,请问下大家,怎么修改才行啊
  1. def wait_op_result(patterns):
  2.     def _wait_op_result(operation):
  3.         def __wait_op_result(*args):
  4.                           log_watch = LogWatcher("test.log", patterns)
  5.                             log_watch.setwatch()
  6.                             operation(args)
  7.                              match = log_watch.lookforall()
  8.                             if match:
  9.                                    return 1
  10.                             else:
  11.                                    return -1
  12.             return __wait_op_result
  13.     return _wait_op_result
  14.    
  15. @wait_op_result(pats)
  16. def operation(*args)

  17. operation('test')
复制代码

论坛徽章:
0
2 [报告]
发表于 2013-05-17 09:48 |只看该作者
  1. #-*- coding:utf-8 -*-

  2. def wait_op_result(patterns):
  3.     def _wait_op_result(operation):
  4.         def __wait_op_result(*args):
  5.             log_watch = LogWatcher("test.log", patterns)
  6.             log_watch.setwatch()
  7.             result = operation(args)
  8.             match = log_watch.lookforall()
  9.             if match:
  10.                 return (result, 1)
  11.             else:
  12.                 return (result, -1)
  13.         return __wait_op_result
  14.     return _wait_op_result

  15. @wait_op_result(pats)
  16. def operation(*args):
  17.     return "xxx"

  18. result, match = operation('test')
  19. print result, match
复制代码

论坛徽章:
0
3 [报告]
发表于 2013-05-17 10:02 |只看该作者
回复 2# GhostFromHeaven


    :wink: 呵呵,谢谢了

论坛徽章:
0
4 [报告]
发表于 2013-05-17 10:11 |只看该作者
回复 1# 413xp
你写的就可以,被装饰过的operation会返回match的值。
你可以 print operation('test') 看一下

   

论坛徽章:
0
5 [报告]
发表于 2013-05-17 12:24 |只看该作者
回复 4# 106033177

恩,刚调试过了,是另外一个地方除的问题,开始我以为是返回值的问题
   

论坛徽章:
0
6 [报告]
发表于 2013-08-22 16:02 |只看该作者
装饰器什么意思啊 看的头大啊
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP