本文整理了Java中org.mozilla.zest.core.v1.ZestAssertion.isValid()
方法的一些代码示例,展示了ZestAssertion.isValid()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZestAssertion.isValid()
方法的具体详情如下:
包路径:org.mozilla.zest.core.v1.ZestAssertion
类名称:ZestAssertion
方法名:isValid
[英]Checks if is valid.
[中]检查是否有效。
代码示例来源:origin: mozilla/zest
@Override
public void handleResponse(ZestRequest request, ZestResponse response)
throws ZestAssertFailException, ZestActionFailException {
boolean passed = true;
for (ZestAssertion za : request.getAssertions()) {
if (za.isValid(this)) {
this.responsePassed(request, response, za);
} else {
passed = false;
this.responseFailed(request, response, za);
}
}
if (passed) {
this.responsePassed(request, response);
} else {
this.responseFailed(request, response);
}
}
代码示例来源:origin: mozilla/zest
@Test
public void testSimpleCaseExact() throws Exception {
ZestExpressionRegex regex =
new ZestExpressionRegex(ZestVariables.RESPONSE_BODY, "test123", true, false);
ZestAssertion ze = new ZestAssertion(regex);
assertTrue(ze.isValid(new TestRuntime(new ZestResponse(null, "", "aaaatest123", 200, 0))));
assertFalse(ze.isValid(new TestRuntime(new ZestResponse(null, "", "aaaaTest123", 200, 0))));
}
代码示例来源:origin: mozilla/zest
@Test
public void testSimpleCaseIgnore() throws Exception {
ZestExpressionRegex regex =
new ZestExpressionRegex(ZestVariables.RESPONSE_BODY, "test123", false, false);
ZestAssertion ze = new ZestAssertion(regex);
assertTrue(ze.isValid(new TestRuntime(new ZestResponse(null, "", "aaaatest123", 200, 0))));
assertTrue(ze.isValid(new TestRuntime(new ZestResponse(null, "", "aaaaTest123", 200, 0))));
}
代码示例来源:origin: mozilla/zest
/**
* Method testSimpleExcRegex.
*
* @throws Exception
*/
@Test
public void testSimpleExcRegex() throws Exception {
ZestExpressionRegex regex = new ZestExpressionRegex(ZestVariables.RESPONSE_BODY, "test123");
ZestAssertion ze = new ZestAssertion(regex);
assertFalse(ze.isValid(new TestRuntime(new ZestResponse(null, "", "aaaatst123", 200, 0))));
}
代码示例来源:origin: mozilla/zest
/**
* Method testSimpleIncRegex.
*
* @throws Exception
*/
@Test
public void testSimpleIncRegex() throws Exception {
ZestExpressionRegex regex = new ZestExpressionRegex(ZestVariables.RESPONSE_BODY, "test123");
ZestAssertion ze = new ZestAssertion(regex);
assertTrue(ze.isValid(new TestRuntime(new ZestResponse(null, "", "aaaatest123", 200, 0))));
}
代码示例来源:origin: mozilla/zest
/**
* Method testSimpleIncInvRegex.
*
* @throws Exception
*/
@Test
public void testSimpleIncInvRegex() throws Exception {
ZestExpressionRegex regex =
new ZestExpressionRegex(ZestVariables.RESPONSE_BODY, "test123", false, true);
ZestAssertion ze = new ZestAssertion(regex);
assertFalse(ze.isValid(new TestRuntime(new ZestResponse(null, "", "aaaatest123", 200, 0))));
}
代码示例来源:origin: mozilla/zest
/**
* Method testSimpleExcInvRegex.
*
* @throws Exception
*/
@Test
public void testSimpleExcInvRegex() throws Exception {
ZestExpressionRegex regex =
new ZestExpressionRegex(ZestVariables.RESPONSE_BODY, "test123", false, true);
ZestAssertion ze = new ZestAssertion(regex);
assertTrue(ze.isValid(new TestRuntime(new ZestResponse(null, "", "aaaatst123", 200, 0))));
}
}
内容来源于网络,如有侵权,请联系作者删除!