Dmitrii Stepanov
e92ce668a8
All checks were successful
DCO action / DCO (pull_request) Successful in 1m18s
Tests and linters / Tests (1.22) (pull_request) Successful in 3m10s
Tests and linters / Tests (1.21) (pull_request) Successful in 3m27s
Tests and linters / Tests with -race (pull_request) Successful in 3m28s
Tests and linters / Lint (pull_request) Successful in 4m29s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
25 lines
700 B
JavaScript
25 lines
700 B
JavaScript
import native from 'k6/x/frostfs/native';
|
|
import { uuidv4 } from '../scenarios/libs/k6-utils-1.4.0.js';
|
|
|
|
const payload = open('../go.sum', 'b');
|
|
const container = "AjSxSNNXbJUDPqqKYm1VbFVDGCakbpUNH8aGjPmGAH3B"
|
|
const frostfs_cli = native.connect("s01.frostfs.devenv:8080", "", 0, 0, false, 0)
|
|
const frostfs_obj = frostfs_cli.onsite(container, payload)
|
|
|
|
export const options = {
|
|
stages: [
|
|
{ duration: '30s', target: 10 },
|
|
],
|
|
};
|
|
|
|
export default function () {
|
|
let headers = {
|
|
'unique_header': uuidv4()
|
|
}
|
|
let resp = frostfs_obj.put(headers)
|
|
if (resp.success) {
|
|
frostfs_cli.get(container, resp.object_id)
|
|
} else {
|
|
console.log(resp.error)
|
|
}
|
|
}
|