2022-05-12 19:37:38 +00:00
|
|
|
import { uuidv4 } from 'https://jslib.k6.io/k6-utils/1.2.0/index.js';
|
|
|
|
import s3 from 'k6/x/neofs/s3';
|
|
|
|
|
2022-05-20 11:14:50 +00:00
|
|
|
const payload = open('../go.sum', 'b');
|
2022-05-12 19:37:38 +00:00
|
|
|
const bucket = "cats"
|
|
|
|
const s3_cli = s3.connect("http://s3.neofs.devenv:8080")
|
|
|
|
|
|
|
|
export const options = {
|
|
|
|
stages: [
|
|
|
|
{ duration: '30s', target: 10 },
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function () {
|
|
|
|
const key = uuidv4();
|
2022-05-20 09:34:34 +00:00
|
|
|
if (s3_cli.put(bucket, key, payload).success) {
|
2022-05-12 19:37:38 +00:00
|
|
|
s3_cli.get(bucket, key )
|
|
|
|
}
|
|
|
|
}
|