Behave step matcher

  • behave 提供3中step匹配模式
  • ‘parse‘
  • ‘cfparse‘ 基于parse的扩展,  支持cardinality field syntax?
  • ‘re‘ 支持在step中定义正则表达式

‘parse‘  是默认的step mathcer,  他被使用最多, 有以下特点

  • 上手容易, 易读性好, 好理解
  • 支持预定义的数据类型和用户自定义类型
  • 可以在自定义数据类型中使用re, 在step_impl中隐藏了re, 可读性好

‘cfparse‘ 是parse的扩展, 设计初衷是替代parse, 它有以下特点

  • 继承parse, 支持 the cardinality field syntax
  • 自动创建缺少的类型转换函数for fields with cardinality field part
  • 基于parse_type

‘re‘有以下特点

  • addresses some cases that cannot be solved otherwise (currently)
  • is backward compatible to cucumber (uses regular expressions)
  • is less ambiguous compared to the “parse” matcher (currently)

定义step matcher的两种方法

  • 在environment.py中定义默认的matcher

    # -- FILE: features/environment.py
    from behave import use_step_matcher
    
    # -- SELECT DEFAULT STEP MATCHER: Use "re" matcher as default.
    # use_step_matcher("parse")
    # use_step_matcher("cfparse")
    use_step_matcher("re")
  • 在step definition文件中切换step matcher, 同样使用use_step_matcher("re")
    从切换step matcher行后的所有step_impl都使用你切换的step matcher, 除非你再次切换

正则匹配

# 简单的group捕获, 并赋值给P<test># -- SIMPLE GROUP: foo
@when(u‘I try to match "(?P<foo>foo)"‘)
def step_when_I_try_to_match_foo(context, foo):
    context.foo = foo

# -- SIMPLE GROUP: anything else
@when(u‘I try to match "(?P<anything>.*)"‘)
def step_when_I_try_to_match_anything_else(context, anything):
    context.anything = anything

# 可选的的group:  (?P<an_>an )?@when(u‘I try to match (?P<an_>an )?optional "(?P<foo>foo)"‘)
def step_when_I_try_to_match_an_optional_foo(context, an_, foo):
    context.foo = foo
    context.an_ = an_

# 套嵌的正则

@when(u‘I try to match nested "(?P<foo>foo(?P<bar>bar)?)"‘)
def step_when_I_try_to_match_nested_foobar(context, foo, bar):
    context.foo = foo
    context.bar = bar
 
时间: 2024-10-13 07:51:10

Behave step matcher的相关文章

Matcher类(java JDK源码记录)

1 /* 2 * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved. 3 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11 * 12 * 13 * 14 * 15 * 16 * 17 * 18 * 19 * 20 * 21 * 22 * 23 *

Behave 基础

在你使用behave或其他BDD框架之前, 你应该选择一个断言库. python有很多这方面的第三方库.例如: hamcrest,nose.tools,  should-dsl, sure, compare, describe等.选择一个自己喜欢的. 参数化step # file:features/tutorial03_step_parameters.feature Feature: Step Parameters (tutorial03) Scenario: Blenders Given I

Behave + Selenium(Python) 三

来自T先生 通过之前的2篇文章,大家都了解了如果利用behave和selenium打开网页和进行基本的操作,但是这些对于项目来说,却是往往不够的. 如果对junit或者TestNG熟悉的人都知道有@Before Class等这些在脚本之前完成的任务:如用户登入,以及当浏览器操作完,关闭浏览器等一些操作.那么问题来了,在behave里面是怎么控制的呢? 在behave中有个environment.py文件,environment.py文件可以很好的解决这个问题,除了解决这个问题,还可以用来解决同一

自动化测试:behave

*:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } a { color: #4183C4; } a.absent { color: #cc0000; } a.anchor { display: block; padding-left: 30px; margin-left: -30px; cursor: pointer; position: absolute

Java Pattern Matcher 正则应用

转自:http://www.itzhai.com/java-notes-regex-matches-and-lookingat.html#read-more 1.基本语法 2.String内建的正则表达式功能 2.1.String类自带的正则表达式工具 2.1.1.split方法 2.1.2.字符串替换之replaceFirst和replaceAll方法 3.创建正则表达式: 3.1.Pattern和Matcher 3.1.2.matches()与lookingAt()的使用 3.2.Group

Behave + Selenium(Python) ------ (第三篇)

通过之前的2篇文章,大家都了解了如果利用behave和selenium打开网页和进行基本的操作,但是这些对于项目来说,却是往往不够的. 如果对junit或者TestNG熟悉的人都知道有@Before Class等这些在脚本之前完成的任务:如用户登入,以及当浏览器操作完,关闭浏览器等一些操作.那么问题来了,在behave里面是怎么控制的呢? 在behave中有个environment.py文件,environment.py文件可以很好的解决这个问题,除了解决这个问题,还可以用来解决同一条case可

JAVA正则表达式:Pattern类与Matcher类详解(转)

java.util.regex是一个用正则表达式所订制的模式来对字符串进行匹配工作的类库包.它包括两个类:Pattern和Matcher Pattern 一个Pattern是一个正则表达式经编译后的表现模式. Matcher 一个Matcher对象是一个状态机器,它依据Pattern对象做为匹配模式对字符串展开匹配检查. 首先一个Pattern实例订制了一个所用语法与PERL的类似的正则表达式经编译后的模式,然后一个Matcher实例在这个给定的Pattern实例的模式控制下进行字符串的匹配工作

hdu 4735 Little Wish~ lyrical step~(DLX)

题目链接:hdu 4735 Little Wish~ lyrical step~ 题意: 有n个节点的树,每个节点可能是男孩,可能是女孩,节点之间有距离,现在要让所有的女孩周围距离D之内有男孩,问最小需要交换多少次男孩和女孩的位置. 题解: 把每个节点对小于D距离的全部link起来,然后DLX爆艹,意义就是选n个节点去覆盖全部节点,如果这个节点是女生,那么就是要替换的点.然后不断更新答案. 1 #include<bits/stdc++.h> 2 #define F(i,a,b) for(int

从头认识java-11.4 正则表达式(3)-Pattern和Matcher

这一章节我们来讨论一下Pattern和Matcher. 之前我们都是简单的使用正则表达式来匹配字符串,其实java里面提供了强大的正则匹配类,我们下面将以几个例子来说明. package com.ray.ch11; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Test { public static void main(String[] args) { String testStr =