我正在我公司建立一个Cucumber,Sikuli和Eclipse的测试环境。我已经设法使一切工作正常,但现在我需要使.feature文件以葡萄牙语工作。
据我所知,我所要做的只是将评论#language: pt
放在.feature文件的开头,但它不起作用。
我还运行命令cucumber --i18n help
和cucumber --i18n pt
来检查语言是否真的存在,而且确实存在。
还有其他配置我不知道吗?
我正在使用这些罐子:
您可以通过添加# language: xx
作为第一行来控制Gherkin关键字的语言。
对葡萄牙人来说就是这样
# language: pt
Funcionalidade: um exemplo
所有支持的语言列表都可以在https://docs.cucumber.io/gherkin/reference/#spoken-languages找到。您可能在gherkin-languages.json中查找的本地化关键字
一个简单的Maven项目。
结构体
pom.xml
src/test/java/features/example.feature
src/test/java/runner/TestRunner.java
pom.hml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.suboptimal</groupId>
<artifactId>cuke-test-13.so</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.cucumber>3.0.2</version.cucumber>
</properties>
<dependencies>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-java</artifactId>
<version>${version.cucumber}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-junit</artifactId>
<version>${version.cucumber}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
的src /测试/ JAVA /特征/ example.feature
# language: pt
Funcionalidade: um exemplo
Cenario: foo
Dado something given
的src /测试/ JAVA /流道/ TestRunner.java
package runner;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions(
features = "src/test/java/features/example.feature"
)
public class TestRunner {
}
使用mvn compile test
运行测试将产生以下错误。
Undefined scenarios:
src/test/java/features/example.feature:4 # foo
1 Scenarios (1 undefined)
1 Steps (1 undefined)
0m0.036s
You can implement missing steps with the snippets below:
@Dado("something given")
public void something_given() {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}
编辑当使用Notepad
作为UTF-8
在Windows上保存要素文件时,将在开头插入BOM字符(EF BB BD)。
$ hexdump -C example.feature 00000000 ef bb bf 23 20 6c 61 6e 67 75 61 67 65 3a 20 70 | ...#>语言:p |
如果运行mvn test
,则执行失败并出现异常。
cucumber.runtime.CucumberException: gherkin.ParserException$CompositeParserException: Parser errors:
(1:1): expected: #EOF, #Language, #TagLine, #FeatureLine, #Comment, #Empty, got '# language: pt'
(2:1): expected: #EOF, #Language, #TagLine, #FeatureLine, #Comment, #Empty, got 'Funcionalidade: um exemplo'
(4:3): expected: #EOF, #Language, #TagLine, #FeatureLine, #Comment, #Empty, got 'Cenario: foo'
(5:3): expected: #EOF, #Language, #TagLine, #FeatureLine, #Comment, #Empty, got 'Dado something given'
首先,感谢所有帮助过我的人。
经过一段时间,我终于找到了问题所在。
SébastienLeCallonnec对this thread的回答向我表明了这一点。问题出在Natural插件上。
从一开始一切都正常,但事实证明,Natural只支持英语。这就是为什么它抛出错误但测试正在执行。卸载插件后,错误消失了。