K6 - 身份验证 - 获取身份验证令牌

Jay*_*Jay 3 authentication jwt k6

我有一个 mocha javascript 文件,其中需要函数以无头浏览器模式登录应用程序,使用凭据登录并返回 jwt 身份验证。

我想通过K6调用这个脚本。但据我了解,从 K6 调用节点模块 java 脚本是不可能的?

有替代方案吗?

小智 7

我也刚刚开始实现 k6,并且需要执行相同的步骤;)这就是我的做法。

  • 您需要知道如何对您要使用的 API 进行身份验证。我假设我们已经有了它,正如您所写的,您想使用节点模块。
  • 其次,使用适当的方法与API进行通信
  • 接下来,捕获令牌并将其附加到下一个请求标头
  • 最后,用你想要的请求测试 API

我在网页上找到了带有API 的 k6 示例的代码片段。我缩短了一些示例代码并最终得到:

import {
  describe
} from 'https://jslib.k6.io/functional/0.0.3/index.js';
import {
  Httpx,
  Request,
  Get,
  Post
} from 'https://jslib.k6.io/httpx/0.0.2/index.js';
import {
  randomIntBetween,
  randomItem
} from "https://jslib.k6.io/k6-utils/1.1.0/index.js";

export let options = {
  thresholds: {
    checks: [{
      threshold: 'rate == 1.00',
      abortOnFail: true
    }],
  },
  vus: 2,
  iterations: 2
};

//defining auth credentials
const CLIENT_ID = 'CLIENT_ID';
const CLIENT_SECRET = 'CLIENT_SECRET';
let session = new Httpx({
  baseURL: 'https://url.to.api.com'
});

export default function testSuite() {

  describe(`01. Authenticate the client for next operations`, (t) => {

    let resp = session.post(`/path/to/auth/method`, {
      //this sections relays on your api requirements, in short what is mandatory to be authenticated
      grant_type: GRANT_TYPE,
      client_id: CLIENT_ID,
      client_secret: CLIENT_SECRET,
    });

    //printing out response body/status/access_token - for debug
    //    console.log(resp.body);
    //    console.log(resp.status);
    //    console.log(resp.json('access_token'));

    //defining checks
    t.expect(resp.status).as("Auth status").toBeBetween(200, 204)
      .and(resp).toHaveValidJson()
      .and(resp.json('access_token')).as("Auth token").toBeTruthy();


    let authToken = resp.json('access_token');
    // set the authorization header on the session for the subsequent requests.
    session.addHeader('Authorization', `Bearer ${authToken}`);

  })

  describe('02. use other API method, but with authentication token in header ', (t) => {

    let response = session.post(`/path/to/some/other/post/method`, {
      "Cache-Control": "no-cache",
      "SomeRequieredAttribute":"AttributeValue"
    });


    t.expect(response.status).as("response status").toBeBetween(200, 204)
      .and(response).toHaveValidJson();
  })

}
Run Code Online (Sandbox Code Playgroud)