This repository was archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
279 lines (230 loc) · 8.01 KB
/
index.html
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Prelude SDK</title>
</head>
<body>
<h1 class="text-xl py-2 ml-2">Testing SDK: (See Source)</h1>
<div class="flex flex-row gap-2">
<button
id="run-build"
class="ml-2 mb-2 bg-slate-900 hover:bg-slate-700 focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 focus:ring-offset-slate-50 text-white font-semibold h-8 px-6 rounded-lg w-full flex items-center justify-center sm:w-auto dark:bg-sky-500 dark:highlight-white/20 dark:hover:bg-sky-400"
>
Run Build Test
</button>
<button
id="run-detect"
class="ml-2 mb-2 bg-slate-900 hover:bg-slate-700 focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 focus:ring-offset-slate-50 text-white font-semibold h-8 px-6 rounded-lg w-full flex items-center justify-center sm:w-auto dark:bg-sky-500 dark:highlight-white/20 dark:hover:bg-sky-400"
>
Run Detect Test
</button>
<button
id="run-iam"
class="ml-2 mb-2 bg-slate-900 hover:bg-slate-700 focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 focus:ring-offset-slate-50 text-white font-semibold h-8 px-6 rounded-lg w-full flex items-center justify-center sm:w-auto dark:bg-sky-500 dark:highlight-white/20 dark:hover:bg-sky-400"
>
Run IAM Test
</button>
</div>
<pre
id="log"
class="whitespace-pre-wrap break-words w-3/4 bg-gray-100 p-2 min-h-full text-sm"
></pre>
<script type="module">
let log = console.log;
let logger = document.getElementById("log");
console.log = function (...args) {
log(...args);
const message = args
.map((a) => {
if (typeof a == "string") {
return a;
}
return JSON.stringify(a, null, 2);
})
.join(" ");
logger.innerHTML += message + "<br />";
window.scrollTo(0, document.body.scrollHeight);
};
</script>
<script type="module">
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
const code = `
package main
import (
"fmt"
"os"
)
func test() {
fmt.Println("Run test")
os.Exit(100)
}
func clean() {
fmt.Println("Clean up")
os.Exit(100)
}
func main() {
args := os.Args[1:]
if len(args) > 0 {
clean()
} else {
test()
}
}`;
import * as Prelude from "/lib/main.ts";
import * as uuid from "https://jspm.dev/uuid";
async function setupAccount() {
document.getElementById("log").innerHTML = "";
const host = "https://api.us2.preludesecurity.com";
console.log("Using host", host);
const service = new Prelude.Service({
host,
requestInterceptor: (request) => {
request.headers.set("_product", "js-sdk-test");
return request;
},
});
const credentials = await service.iam.newAccount("user_handle");
console.log("CREATE account", { credentials });
service.setCredentials(credentials);
return service;
}
document
.getElementById("run-build")
.addEventListener("click", async () => {
let service;
try {
service = await setupAccount();
const testId = uuid.v4();
console.log(
"CREATE new test",
await service.build.createTest(testId, "This is a test", code)
);
console.log(
"Get Test after CREATE",
await service.build.getTest(testId)
);
const testName = `${testId}.go`;
console.log(
"UPLOAD Test code",
await service.build.upload(testId, testName, code)
);
console.log(
"Get Test after UPLOAD",
await service.build.getTest(testId)
);
console.log(
"DOWNLOAD Test code",
await service.build.download(testId, testName)
);
const compute = await service.build.computeProxy(testName);
console.log(
"Get Test after COMPUTE",
await service.build.getTest(testId)
);
console.log(
"CREATE URL for Test",
await service.build.createURL(compute[0].name)
);
console.log("DELETE Test", await service.build.deleteTest(testId));
console.log(
"List Tests after DELETE",
await service.build.listTests()
);
console.log("DONE!");
} catch (e) {
console.log("Error", e.message);
} finally {
console.log("PURGE ACCOUNT", await service.iam.purgeAccount());
}
});
document
.getElementById("run-detect")
.addEventListener("click", async () => {
let service;
try {
service = await setupAccount();
console.log(
"List Recommendations",
await service.detect.getRecommendations()
);
console.log(
"Create Recommendation",
await service.detect.createRecommendation({
title: "Test Recommendation",
description: "This is a test recommendation",
})
);
const recos = await service.detect.getRecommendations();
console.log("List Recommendations After Create", recos);
console.log(
"Update Recommendation",
await service.detect.createRecommendation({
id: recos[0].id,
decision: 1,
})
);
console.log(
"List Recommendations After Update",
await service.detect.getRecommendations()
);
console.log("List Tests", await service.detect.listTests());
console.log("List Probes", await service.detect.listEndpoints());
console.log(
"Register Endpoint",
await service.detect.registerEndpoint({
id: "test-endpoint",
tags: "test,js",
})
);
console.log(
"List Probes after create",
await service.detect.listEndpoints()
);
console.log(
"Probe Activity",
await service.detect.describeActivity({
start: "2023-01-10",
finish: "2023-02-15",
view: "probes",
})
);
console.log("Print Queue", await service.detect.listQueue());
console.log(
"Stats",
await service.detect.socialStats(
"39de298a-911d-4a3b-aed4-1e8281010a9a"
)
);
console.log(
"Activity",
await service.detect.describeActivity({
view: "logs",
start: "2023-01-10",
finish: "2023-01-15",
})
);
} catch (e) {
console.log("Error", e.message);
} finally {
console.log("PURGE ACCOUNT", await service.iam.purgeAccount());
}
});
document.getElementById("run-iam").addEventListener("click", async () => {
let service;
try {
service = await setupAccount();
console.log("Get Account", await service.iam.getAccount());
} catch (e) {
console.log("Error", e.message);
} finally {
console.log("PURGE ACCOUNT", await service.iam.purgeAccount());
}
});
</script>
</body>
</html>