我已经在以太坊区块链之上使用React开发了一个Web应用程序。
我的应用程序中的一个页面从这样的用户那里获取信息:
class AssetNew extends Component {
state = {
name: "",
description: "",
manufacturer: "",
price: "",
errorMessage: ""
};
onSubmit = async event => {
event.preventDefault();
const { name, description, manufacturer, price} = this.state;
this.setState({errorMessage: "" });
try {
const accounts = await web3.eth.getAccounts();
await tracker.methods
.createAsset(name, description, manufacturer, price)
.send({
from: accounts[0],
value: web3.utils.toWei(this.state.price, "ether"),
gas: "1000000"
});
} catch (err) {
this.setState({ errorMessage: err.message });
}
};
render() {
return (
<Form onSubmit={this.onSubmit} error={!!this.state.errorMessage}>
<Form.Field>
<label>Name</label>
<Input
value={this.state.name}
onChange={event => this.setState({ name: event.target.value })}
/>
</Form.Field>
.... // three more from.field for description, manufacturer and price
);
}
}
export default AssetNew;
此页面获取名称,描述,制造商和价格,并将其发送到智能合约以注册新产品。在浏览器中一切正常(我可以使用该表单创建新产品)。 但是,我无法使用Jmeter创建新产品。 我尝试使用POST方法发送参数:
运行测试后,Http请求成功完成,但没有任何反应(我希望Jmeter创建新产品)。
我希望Jmeter通过传递参数来创建新产品吗? 我可以正确检查性能吗?
创建新产品的智能合约:
contract AssetTracker {
uint public id;
uint nonce;
struct Asset {
string name;
string description;
string manufacture;
uint price;
uint id;
address owner;
bool initialized;
}
Asset[] public assets;
function createAsset(string name, string description, string manufacture, uint price) public payable{
id = uint(keccak256(now, msg.sender, nonce)) % 1000;
nonce++;
Asset memory newAsset = Asset(name, description, manufacture, price, id, msg.sender, true);
assets.push(newAsset);
}
答案 0 :(得分:1)
如果您能够使用浏览器发送请求,则应该能够使用JMeter的HTTP(S) Test Script Recorder来捕获相关的HTTP POST Request并生成HTTP Request采样器
准备进行记录的JMeter。最快的方法是使用JMeter Templates功能
准备浏览器进行录制。配置它以使用JMeter作为代理
localhost
或127.0.0.1
作为代理主机8888
作为代理端口ApacheJMeterTemporaryRootCA.crt
证书导入浏览器,则当您启动HTTP(S)测试脚本记录器时,将在JMeter安装的“ bin”文件夹中生成该证书在浏览器中执行请求
更多信息:Apache JMeter HTTP(S) Test Script Recorder
或者,您可以使用JMeter Chrome Extension来创建测试计划,在这种情况下,您不必担心代理和证书。