Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error: "cannot unmarshal object into Go struct field jsonReaderAlias.steps of type string" #127

Open
douglasg14b opened this issue Feb 2, 2023 · 2 comments

Comments

@douglasg14b
Copy link

douglasg14b commented Feb 2, 2023

Might be because of a mistake in the config? Either way the error should probably indicate what the problem is as opposed to be unhanded.

Command: ddosify -config loadTestConfig.json

Config:

{
    "iteration_count": 3000,
    "debug" : false,
    "load_type": "linear",
    "duration": 30,
    "steps": [
        {
            "id": 1,
            "url": "[redacted]",
            "method": "POST",
            "payload": {
                "eventData": {
                  "type": "action",
                  "name": "ButtonClick_SendVerificationButton",
                  "buttonName": "back"
                },
                "context": {
                  "identities": { "deviceId": "abcd-1234", "customerId": "abcd-1234" },
                  "meta": {
                    "isTest": true,
                    "artificial": true
                  }
                }
              },
            "timeout": 2
        }
    ]
}
@douglasg14b
Copy link
Author

This is because the JSON isn't provided as an escaped string, this could be turned into a feature request to handle the existing JSON payload?

@fatihbaltaci
Copy link
Member

Hi @douglasg14b, you can use payload_file key instead of payload like this:

Config:

{
  "iteration_count": 3000,
  "debug" : false,
  "load_type": "linear",
  "duration": 30,
  "steps": [
      {
          "id": 1,
          "url": "[redacted]",
          "method": "POST",
          "payload_file": "payload.json",
          "timeout": 2
      }
  ]
}

payload.json:

{
    "eventData": {
      "type": "action",
      "name": "ButtonClick_SendVerificationButton",
      "buttonName": "back"
    },
    "context": {
      "identities": { "deviceId": "abcd-1234", "customerId": "abcd-1234" },
      "meta": {
        "isTest": true,
        "artificial": true
      }
    }
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants