- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.mozilla.zest.core.v1.ZestResponse
类的一些代码示例,展示了ZestResponse
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZestResponse
类的具体详情如下:
包路径:org.mozilla.zest.core.v1.ZestResponse
类名称:ZestResponse
[英]The Class ZestResponse.
[中]全班同学都很热情。
代码示例来源:origin: mozilla/zest
@Override
public ZestResponse deepCopy() {
ZestResponse zr =
new ZestResponse(
this.url, this.headers, this.body, this.statusCode, this.responseTimeInMs);
return zr;
}
代码示例来源:origin: mozilla/zest
public static List<String> getForms(ZestResponse response) {
List<String> list = new ArrayList<String>();
Source src = new Source(response.getHeaders() + response.getBody());
List<Element> formElements = src.getAllElements(HTMLElementName.FORM);
int formId = 0;
while (formElements != null && formId < formElements.size()) {
// TODO support form names
// Element form = formElements.get(formId);
list.add(Integer.toString(formId));
formId++;
}
return list;
}
代码示例来源:origin: mozilla/zest
@Override
public boolean isTrue(ZestRuntime runtime) {
ZestResponse response = runtime.getLastResponse();
if (response == null) {
return false;
}
return code == response.getStatusCode();
}
代码示例来源:origin: mozilla/zest
/**
* Sets the standard variables for a response.
*
* @param response the new standard variables
*/
@Override
public void setStandardVariables(ZestResponse response) {
if (response != null) {
if (response.getUrl() != null) {
this.setVariable(ZestVariables.RESPONSE_URL, response.getUrl().toString());
}
this.setVariable(ZestVariables.RESPONSE_HEADER, response.getHeaders());
this.setVariable(ZestVariables.RESPONSE_BODY, response.getBody());
}
}
代码示例来源:origin: mozilla/zest
assertThat(response.getStatusCode()).isEqualTo(404);
assertThat(response.getUrl()).isEqualTo(url);
assertThat(response.getHeaders())
.isEqualTo(
"HTTP/1.1 404 Not Found\r\n"
+ "Server: abc\r\n"
+ "Transfer-Encoding: chunked\r\n");
assertThat(response.getBody()).isEqualTo("This is the response");
代码示例来源:origin: mozilla/zest
@Override
public String assign(ZestResponse response, ZestRuntime runtime)
throws ZestAssignFailException {
if (response == null) {
throw new ZestAssignFailException(this, "Null response");
}
Source src = new Source(response.getBody());
List<Element> elementsFilteredByElementName = filterByElementNameIfConfigured(src);
List<Element> elementsFilteredByAttributeValue =
filterByAttributeValueIfConfigured(elementsFilteredByElementName);
List<Element> elements = reverseIfConfigured(elementsFilteredByAttributeValue);
Element element = findElementAtIndex(elements);
if (element == null) {
return null;
}
return getReturnValue(element);
}
代码示例来源:origin: mozilla/zest
@Override
public boolean isTrue(ZestRuntime runtime) {
ZestResponse response = runtime.getLastResponse();
if (response == null) {
return false;
}
if (greaterThan) {
return response.getResponseTimeInMs() > this.timeInMs;
} else {
return response.getResponseTimeInMs() < this.timeInMs;
}
}
代码示例来源:origin: mozilla/zest
@Override
public ZestRequest deepCopy() {
ZestRequest zr = new ZestRequest(this.getIndex());
zr.setUrl(this.url);
zr.setUrlToken(this.urlToken);
zr.setData(this.data);
zr.setMethod(this.method);
zr.setHeaders(this.headers);
zr.setFollowRedirects(this.followRedirects);
zr.setTimestamp(this.timestamp);
if (this.getResponse() != null) {
zr.setResponse(this.getResponse().deepCopy());
}
for (ZestAssertion zt : this.getAssertions()) {
zr.addAssertion((ZestAssertion) zt.deepCopy());
}
for (ZestCookie cookie : this.cookies) {
zr.addCookie(
new ZestCookie(
cookie.getDomain(),
cookie.getName(),
cookie.getValue(),
cookie.getPath(),
cookie.getExpiryDate(),
cookie.isSecure()));
}
zr.setEnabled(this.isEnabled());
return zr;
}
代码示例来源:origin: mozilla/zest
@Override
public void setStandardVariables(ZestResponse response) {
if (response != null) {
if (response.getUrl() != null) {
this.setVariable(ZestVariables.RESPONSE_URL, response.getUrl().toString());
}
this.setVariable(ZestVariables.RESPONSE_HEADER, response.getHeaders());
this.setVariable(ZestVariables.RESPONSE_BODY, response.getBody());
}
}
代码示例来源:origin: mozilla/zest
private ZestResponse makeZestResponse(String pageContent) {
String html = String.format(htmlScaffold, pageContent);
String notRelevantHeader = "Header not relevant";
URL notRelevantUrl = null;
return new ZestResponse(notRelevantUrl, notRelevantHeader, html, 200, 0);
}
}
代码示例来源:origin: mozilla/zest
public static List<String> getFields(ZestResponse response, int formId) {
List<String> list = new ArrayList<String>();
Source src = new Source(response.getHeaders() + response.getBody());
List<Element> formElements = src.getAllElements(HTMLElementName.FORM);
if (formElements != null && formId < formElements.size()) {
Element form = formElements.get(formId);
List<Element> inputElements = form.getAllElements(HTMLElementName.INPUT);
String field;
for (Element inputElement : inputElements) {
field = inputElement.getAttributeValue("ID");
if (field == null || field.length() == 0) {
field = inputElement.getAttributeValue("NAME");
}
if (field != null && field.length() > 0) {
list.add(field);
}
}
}
return list;
}
}
代码示例来源:origin: mozilla/zest
private static ZestResponse createResponse(int statusCode) throws Exception {
return new ZestResponse(new URL("http://localhost/"), "", "", statusCode, 0);
}
}
代码示例来源:origin: mozilla/zest
value = this.getTokenValue(response.getHeaders());
} else if (LOC_BODY.equals(this.location)) {
value = this.getTokenValue(response.getBody());
} else {
value = this.getTokenValue(response.getHeaders());
if (value == null) {
value = this.getTokenValue(response.getBody());
代码示例来源: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
value = this.getVariableValue(response.getHeaders());
} else if (LOC_BODY.equals(this.location)) {
value = this.getVariableValue(response.getBody());
} else {
value = this.getVariableValue(response.getHeaders());
if (value == null) {
value = this.getVariableValue(response.getBody());
代码示例来源: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
@Override
public String assign(ZestResponse response, ZestRuntime runtime)
throws ZestAssignFailException {
if (response == null) {
throw new ZestAssignFailException(this, "Null response");
}
Source src = new Source(response.getHeaders() + response.getBody());
List<Element> formElements = src.getAllElements(HTMLElementName.FORM);
if (formElements != null && fieldDefinition.getFormIndex() < formElements.size()) {
Element form = formElements.get(fieldDefinition.getFormIndex());
List<Element> inputElements = form.getAllElements(HTMLElementName.INPUT);
for (Element inputElement : inputElements) {
if (fieldDefinition.getFieldName().equals(inputElement.getAttributeValue("ID"))
|| fieldDefinition
.getFieldName()
.equals(inputElement.getAttributeValue("NAME"))) {
// Got it
return inputElement.getAttributeValue("VALUE");
}
}
}
return null;
}
}
代码示例来源:origin: mozilla/zest
@Test
public void testIsTrueExcludePattern() {
try {
ZestResponse response =
new ZestResponse(new URL("http://www.PONG19874.com"), "", "", 200, 100);
ZestExpressionURL urlExpr = new ZestExpressionURL(includeStrings, excludeStrings);
assertFalse(urlExpr.isTrue(new TestRuntime(response)));
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
}
代码示例来源: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))));
}
有没有人能够构建静态链接的 NSS?我实际上只需要构建静态链接的 certutil 和 pk12util。我已经看到 Chromium 正在静态构建 NSS,他们甚至有一个补丁文件,但整个构建过程非常
我正在尝试使用下面的 css 和 html 代码在弹出窗口的底部应用空间,因为我只有 mozilla 浏览器有问题,我在弹出窗口的末尾没有获得空间。下面是我的代码我已经使用过,但我需要减少 chrom
我使用下面的行,这样当我单击“新建”按钮时,它将清空所有字段。使用 onClick="history.go(0)"在 IE 中有效,但在 Mozilla 中失败。 最佳答案 要清空所有字段,请使
我尝试在一个简单的 A-Frame WebVR 应用程序上禁用检查器,但没有成功。 尝试使用 JavaScript 来使用并禁用按键 Ctrl + Alt + I。但是,Inspector 仍在加载。
我正在做一个项目,现在正在测试中。需要使网站与所有现代兼容,并至少使它们与每个主要浏览器的 2 个旧版本兼容。 为此,我在 IE 中使用了 IE F12 工具,以切换到 IE 9、8、7 View 。
我在项目中将gulp与autoprefixer一起使用,并且必须像这样使用背景渐变: background: linear-gradient(#e98a00, #f5aa2f); 但输出是: back
如果我想限制电子邮件地址访问网站,使用 Persona 有哪些优势?我必须以相同的方式管理我服务器上的授权电子邮件地址吗?缺少什么? 最佳答案 在您的网站上使用 Persona 的两个主要优点是: 您
Thunderbird的过滤机制非常适合简单的事情。 但我想做类似的事情 (如果邮件包含xy或发件人为yz)并且状态已读取,请移至回收站 问题是,一个过滤器规则只能匹配任何(= OR)或所有(= AN
有一个奇怪的 webVR Mozilla A-Frame 问题 所以我在 a-curvedimage 标签中加载图像(里面有一些动画内容),如下所示: 我正在检查 chrome 中的网络
我觉得其中缺少了一些东西。这是: 嵌套函数和闭包 您可以在函数中嵌套函数。嵌套(内部)函数对其包含(外部)函数是私有(private)的。它还形成了一个封闭。闭包是一个表达式(通常是一个函数),它可以
JS BIN Attempt 尝试按照示例进行操作,但似乎不起作用。有点困惑,因为它是 Mozilla。 Mozilla 最佳答案 正如 @Xaerxess 提到的,当 DOM 准备好进行操作时,您需
我需要制作一个可以在每个页面和浏览器上运行的按钮,可以从文本区域复制输入。我正在尝试使用以下函数来做到这一点: selectElementContents: function(){ el
我需要一个粘性栏在一定的滚动后可见并固定。我打算使用滚动事件,然后我遇到了 Mozilla 页面,该页面建议使用 window.requestAnimationFrame 如下: var last_k
我希望我的元素具有多种颜色的清晰背景渐变。在 Chrome 上运行良好,但在 Firefox 上过渡时边缘模糊。 这里有一些例子: 火狐: Chrome : 如何让它在 Firefox 上运行? .f
为什么这是Webkit用户代理: Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/534.27+ (KHTML, like Gecko) Version
我正在尝试使用 JavaScript 创建一个游戏,但在此过程中我发现了 Firefox 中的一个错误。游戏很简单。您应该猜测 RGB 十六进制代码中的颜色是什么。有6个框,您应该单击该框,如果错误或
我在 Mozilla 和 Chrome 中都有一个扩展,在我的扩展中我调用了一个远程 JS 文件。 为了避免 Chrome 中的 CSP,我将规则添加到 manifest.json 并且我的文件通过
我找到了一种将我的 Chrome 扩展程序转换为模块的便捷方法(更易于维护等)。我是这样做的https://stackoverflow.com/a/53033388/9182284 (把backgro
我有以下代码来设置选择框的样式,它在 chrome 中完美运行,但在 mozilla fire fox 27.0 中运行不正常 .select-box { line-height: inhe
我没有询问变换原点。我问为什么动画在 mozilla 上不起作用 我一直在 Mozilla 上做一些动画 svg。我在 Chrome 中尝试过的动画效果非常好,但是当我在 mozilla 上测试时效果
我是一名优秀的程序员,十分优秀!