Как я могу увеличить счетчик с шагом 50? - PullRequest
0 голосов
/ 23 апреля 2019

У меня есть следующий код

package lts

import io.gatling.core.Predef._
import io.gatling.http.Predef._

class BankingSimulation extends BaseSimulation {
  val paginateThroughCustomTransactionsView = scenario("Scenario 04: Paginate through custom transactions view")
    .feed(csv("scenario04.csv").circular)
    .exec(http("04_paginateThroughCustomTransactionsView")
      .get("/api/savings/transactions?viewfilter=${viewEncodedkey}&offset=0&limit=50")
      .header("accept", "application/json")
      .check(jsonPath("$..encodedKey").saveAs("myEncodedKey"))
    )
    .asLongAs("${myEncodedKey.exists()}","offsetCounter", exitASAP = false) {
      exec(http("04_paginateThroughCustomTransactionsView")
        .get("/api/savings/transactions?viewfilter=${viewEncodedkey}&offset=${offsetCounter}&limit=50")
        .header("accept", "application/json")
        .check(jsonPath("$..encodedKey").saveAs("myEncodedKey"))
      )
    }


  setUp(
 paginateThroughCustomTransactionsView.inject(incrementConcurrentUsers(1).times(1).eachLevelLasting(1))
  ).protocols(httpProtocol)
}

Сейчас сценарий работает, но offsetCounter увеличивается на 1 каждый раз. Как я могу увеличить его на 50?

Ответы [ 2 ]

2 голосов
/ 23 апреля 2019

возможно, более удачный способ ... не полагайтесь на счетчик цикла и используйте вместо этого фидер

var offsetFeeder = (50 to 1000 by 50).toStream.map(i => Map("offsetCounter" -> i)).toIterator

, а затем внутри блока .asLongAs, просто

.feed(offsetFeeder)

ивыполнить ваш вызов "04_paginateThroughCustomTransactionsView"

0 голосов
/ 23 апреля 2019

ОК, по-видимому, вы можете выполнять все виды операций с сеансом. Перед выполнением вызова (exec) в части .asLongAs необходимо

exec {session =>
 val offsetCounter = session("counter").as[Int] * 50
 session.set("offsetCounter", offsetCounter)
}

поэтому код становится

val paginateThroughCustomTransactionsView = scenario("Scenario 04: Paginate through custom transactions view")
    .feed(csv("scenario04.csv").circular)
    .exec(http("04_paginateThroughCustomTransactionsView")
      .get("/api/savings/transactions?viewfilter=${viewEncodedkey}&offset=0&limit=50")
      .header("accept", "application/json")
      .check(jsonPath("$..encodedKey").saveAs("myEncodedKey"))
    )
    .asLongAs("${myEncodedKey.exists()}","counter", exitASAP = false) {
      exec {session =>
        val offsetCounter = session("counter").as[Int] * 50
        session.set("offsetCounter", offsetCounter)
      }
      .exec(http("04_paginateThroughCustomTransactionsView")
        .get("/api/savings/transactions?viewfilter=${viewEncodedkey}&offset=${offsetCounter}&limit=50")
        .header("accept", "application/json")
        .check(jsonPath("$..encodedKey").saveAs("myEncodedKey"))
      )
    }
...