forked from TrueCloudLab/xk6-frostfs
28 lines
650 B
JavaScript
28 lines
650 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)
|
|
}
|
|
}
|