xk6-frostfs/examples/local.js
Alexander Chuprov 6adc201c2c
All checks were successful
DCO action / DCO (pull_request) Successful in 1m15s
Tests and linters / Check clang-format (pull_request) Successful in 1m25s
Tests and linters / Tests (pull_request) Successful in 1m46s
Tests and linters / Tests with -race (pull_request) Successful in 2m22s
Tests and linters / Lint (pull_request) Successful in 3m9s
[#164] *.js: Fix formatting
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
2024-11-06 16:32:50 +03:00

26 lines
647 B
JavaScript

import local from 'k6/x/frostfs/local';
import {uuidv4} from '../scenarios/libs/k6-utils-1.4.0.js';
const payload = open('../go.sum', 'b');
const local_cli =
local.connect("/path/to/config.yaml", "/path/to/config/dir", "", false)
export const options = {
stages : [
{duration : '30s', target : 10},
],
};
export default function() {
let headers = {
'unique_header' : uuidv4()
} const container_id = '6BVPPXQewRJ6J5EYmAPLczXxNocS7ikyF7amS2esWQnb';
let resp = local_cli.put(container_id, headers, payload)
if (resp.success) {
local_cli.get(container_id, resp.object_id)
}
else {
console.log(resp.error)
}
}