This repository has been archived by the owner on Aug 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
read-secrets.lua
72 lines (65 loc) · 1.96 KB
/
read-secrets.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
-- Script that reads secrets from k/v engine in Vault
-- To indicate the number of secrets you want to read, add "-- <N>" after the URL
-- If you want to print secrets read, add "-- <N> true" after the URL
json = require "json"
local counter = 1
local threads = {}
function setup(thread)
thread:set("id", counter)
table.insert(threads, thread)
counter = counter + 1
end
function init(args)
if args[1] == nil then
num_secrets = 1000
else
num_secrets = tonumber(args[1])
end
print("Number of secrets is: " .. num_secrets)
if args[2] == nil then
print_secrets = "false"
else
print_secrets = args[2]
end
requests = 0
reads = 0
responses = 0
method = "GET"
body = ''
-- give each thread different random seed
math.randomseed(os.time() + id*1000)
local msg = "thread %d created with print_secrets set to %s"
print(msg:format(id, print_secrets))
end
function request()
reads = reads + 1
-- randomize path to secret
path = "/v1/secret/read-test/secret-" .. math.random(num_secrets)
requests = requests + 1
return wrk.format(method, path, nil, body)
end
function response(status, headers, body)
responses = responses + 1
if print_secrets == "true" then
body_object = json.decode(body)
for k,v in pairs(body_object) do
if k == "data" then
print("Secret path: " .. path)
for k1,v1 in pairs(v) do
local msg = "read secrets: %s : %s"
print(msg:format(k1, v1))
end
end
end
end
end
function done(summary, latency, requests)
for index, thread in ipairs(threads) do
local id = thread:get("id")
local requests = thread:get("requests")
local reads = thread:get("reads")
local responses = thread:get("responses")
local msg = "thread %d made %d requests including %d reads and got %d responses"
print(msg:format(id, requests, reads, responses))
end
end