• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

使用java从黄瓜的场景大纲获取场景名称

用户头像
it1352
帮助3

问题说明

假设我有一个测试用例 -

Suppose I have a test case like -

*Scenario: Facebook login test
GIVEN I am a Facebook user
WHEN I enter my user name & password
THEN login should be successful*

如何从我是 Facebook 用户"或我输入用户名和密码"或登录应该成功"对应的步骤定义方法中获取场景名称?

How could I get the scenario name from the step definition methods corresponding to "I am a Facebook user" or "I enter my user name & password" or "login should be successful" ?

步骤定义方法是 -

@Given("^I am a Facebook user$")
public void method1() {
 //some coding
 //I want to get the scenario name here
}

@When("^I enter my user name & password$")
public void method2() {
 //some coding
 //I want to get the scenario name here
}

@Then("^login should be successful$")
public void method3() {
 //some coding
 //I want to get the scenario name here
}

正确答案

#1

没有@Bappa,这是可能的,虽然你的 stepdefinition 类是单例的并且你的测试是并行的,但是通过使用线程增强它来查看它被下面的方法攻击 -用于存储的安全静态哈希映射变量:

No @Bappa, it's possible, though your stepdefinition class is singleton and your tests are in parallel, see it be attacked with below approach by enhancing it with thread-safe static hash map variable used for storage:

public class StepDefinitions{
 private static HashMap<Integer,String> scenarios;

public StepDefinitions(){ //or even inside of your singleton's getInstance();
 if(scenarios == null)
   scenarios = new HashMap<Integer,String();
}

@Before
public void beforeHook(Scenario scenario) {
    addScenario(scenario.getName());
}

@When("your step definition")
public void stepDefinition1(){
   String scenario = getScenario(); //problem-o-solved here...
}


private void addScenario(String scenario){
     Thread currentThread = Thread.currentThread();
     int threadID = currentThread.hashCode();
     scenarios.put(threadID,scenario);
}

private synchronized String getScenario(){
     Thread currentThread = Thread.currentThread();
     int threadID = currentThread.hashCode();
     return scenarios.get(threadID);
}

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tangcbjfk
系列文章
更多 icon
同类精品
更多 icon
继续加载