Skip to content

Commit 556aae6

Browse files
Merge pull request #480 from h0x0er/jatin/cleanup
chore: clean the code
2 parents 40401cf + 6c39b84 commit 556aae6

File tree

6 files changed

+75
-107
lines changed

6 files changed

+75
-107
lines changed

dist/post/index.js

+3-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/post/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pre/index.js

+67-61
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pre/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/arc-runner.test.ts

-11
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,3 @@ it("should correctly recognize arc based runner", async () => {
77
let isArc: boolean = await isArcRunner();
88
expect(isArc).toBe(true);
99
});
10-
11-
it("should write endpoint files", () => {
12-
process.env["isTest"] = "1";
13-
14-
let allowed_endpoints = [
15-
"github.com:443",
16-
"*.google.com:443",
17-
"youtube.com",
18-
].join(" ");
19-
sendAllowedEndpoints(allowed_endpoints);
20-
});

src/arc-runner.ts

+3-19
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,14 @@ function isSecondaryPod(): boolean {
2121
return fs.existsSync(workDir);
2222
}
2323

24-
function getRunnerTempDir(): string {
25-
const isTest = process.env["isTest"];
26-
27-
if (isTest === "1") {
28-
return "/tmp";
29-
}
30-
return process.env["RUNNER_TEMP"] || "/tmp";
31-
}
32-
3324
export function sendAllowedEndpoints(endpoints: string): void {
3425
const allowedEndpoints = endpoints.split(" "); // endpoints are space separated
3526

3627
for (const endpoint of allowedEndpoints) {
3728
if (endpoint) {
3829
let encodedEndpoint = Buffer.from(endpoint).toString("base64");
39-
40-
let fileName = path.join(
41-
getRunnerTempDir(),
42-
`step_policy_endpoint_${encodedEndpoint}`
43-
);
44-
45-
echo(fileName);
30+
let endpointPolicyStr = `step_policy_endpoint_${encodedEndpoint}`;
31+
echo(endpointPolicyStr);
4632
}
4733
}
4834

@@ -53,9 +39,7 @@ export function sendAllowedEndpoints(endpoints: string): void {
5339

5440
function applyPolicy(count: number): void {
5541
let applyPolicyStr = `step_policy_apply_${count}`;
56-
let fileName = path.join(getRunnerTempDir(), applyPolicyStr);
57-
58-
echo(fileName);
42+
echo(applyPolicyStr);
5943
}
6044

6145
function echo(content: string) {

0 commit comments

Comments
 (0)