forked from TrueCloudLab/xk6-frostfs
1c0abb2479
With goja.ArrayBuffer type VU won't perform copy operation during every put invocation. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
24 lines
641 B
JavaScript
24 lines
641 B
JavaScript
import { uuidv4 } from 'https://jslib.k6.io/k6-utils/1.2.0/index.js';
|
|
import native from 'k6/x/neofs/native';
|
|
|
|
const payload = open('../go.sum', 'b');
|
|
const container = "AjSxSNNXbJUDPqqKYm1VbFVDGCakbpUNH8aGjPmGAH3B"
|
|
const neofs_cli = native.connect("s01.neofs.devenv:8080", "")
|
|
|
|
export const options = {
|
|
stages: [
|
|
{ duration: '30s', target: 10 },
|
|
],
|
|
};
|
|
|
|
export default function () {
|
|
let headers = {
|
|
'unique_header': uuidv4()
|
|
}
|
|
let resp = neofs_cli.put(container, headers, payload)
|
|
if (resp.success) {
|
|
neofs_cli.get(container, resp.object_id)
|
|
} else {
|
|
console.log(resp.error)
|
|
}
|
|
}
|