如何使用jmeter将表单汇总到区块链?

时间:2019-07-08 03:36:19

标签: performance testing jmeter performance-testing ethereum

我已经在以太坊区块链之上使用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方法发送参数:

enter image description here

运行测试后,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);
}

1 个答案:

答案 0 :(得分:1)

如果您能够使用浏览器发送请求,则应该能够使用JMeter的HTTP(S) Test Script Recorder来捕获相关的HTTP POST Request并生成HTTP Request采样器

  1. 准备进行记录的JMeter。最快的方法是使用JMeter Templates功能

    • 从JMeter的主菜单中选择“文件”-“模板”-“记录”,然后单击“创建”
    • 展开HTTP(S)测试脚本记录器,然后单击“开始”

      enter image description here

  2. 准备浏览器进行录制。配置它以使用JMeter作为代理

    • localhost127.0.0.1作为代理主机
    • 8888作为代理端口
    • 确保将代理设置为所有协议,并且没有例外
    • 如果您打算记录HTTPS流量-将ApacheJMeterTemporaryRootCA.crt证书导入浏览器,则当您启动HTTP(S)测试脚本记录器时,将在JMeter安装的“ bin”文件夹中生成该证书

    enter image description here

  3. 在浏览器中执行请求

  4. JMeter应该捕获请求并将HTTP请求采样器存储在“线程组-记录控制器”下。

更多信息:Apache JMeter HTTP(S) Test Script Recorder

或者,您可以使用JMeter Chrome Extension来创建测试计划,在这种情况下,您不必担心代理和证书。