Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/main/wrapper/CxConstants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export enum CxConstants {
VULNERABILITIES = "--vulnerability-identifiers",
IGNORE__FILE_PATH = "--ignored-file-path",
SOURCE = "-s",
VERBOSE = "-v",
Expand Down
28 changes: 28 additions & 0 deletions src/main/wrapper/CxWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,34 @@ export class CxWrapper {
return await exec.executeCommands(this.config.pathToExecutable, commands, CxConstants.PREDICATE_TYPE);
}

async triageSCAShow(projectId: string, vulnerabilities: string, scanType: string): Promise<CxCommandOutput> {
const commands: string[] = [
CxConstants.CMD_TRIAGE,
CxConstants.SUB_CMD_SHOW,
CxConstants.SCAN_TYPES_SUB_CMD, scanType,
CxConstants.VULNERABILITIES, vulnerabilities,
CxConstants.PROJECT_ID, projectId
];
commands.push(...this.initializeCommands(true));
const exec = new ExecutionService();
return await exec.executeCommands(this.config.pathToExecutable, commands, CxConstants.PREDICATE_TYPE);
}

async triageSCAUpdate(projectId: string, vulnerabilities: string, scanType: string, state: string, comment: string): Promise<CxCommandOutput> {
const commands: string[] = [
CxConstants.CMD_TRIAGE,
CxConstants.SUB_CMD_UPDATE,
CxConstants.SCAN_TYPES_SUB_CMD, scanType,
CxConstants.VULNERABILITIES, vulnerabilities,
CxConstants.STATE, state,
CxConstants.COMMENT, comment,
CxConstants.PROJECT_ID, projectId
];
commands.push(...this.initializeCommands(false));
const exec = new ExecutionService();
return await exec.executeCommands(this.config.pathToExecutable, commands);
}

async triageUpdate(projectId: string, similarityId: string, scanType: string, state: string, comment: string, severity: string, stateId: number | null = null): Promise<CxCommandOutput> {
const commands: string[] = [CxConstants.CMD_TRIAGE, CxConstants.SUB_CMD_UPDATE, CxConstants.PROJECT_ID, projectId, CxConstants.SIMILARITY_ID, similarityId, CxConstants.SCAN_TYPES_SUB_CMD, scanType, CxConstants.STATE, state, CxConstants.COMMENT, comment, CxConstants.SEVERITY, severity];
if (stateId) {
Expand Down
58 changes: 58 additions & 0 deletions src/tests/PredicateTest.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,19 @@ describe("Triage cases", () => {
);
expect(cxUpdate.exitCode).toEqual(0);
};

// Helper for SCA triage show
const handleTriageSCAShow = async (projectId: string, vulnerabilities: string, scanType: string) => {
const cxShow: CxCommandOutput = await auth.triageSCAShow(projectId, vulnerabilities, scanType);
expect(cxShow.exitCode).toEqual(0);
};

// Helper for SCA triage update
const handleTriageSCAUpdate = async (projectId: string, vulnerabilities: string, scanType: string, state: string, comment: string) => {
const cxUpdate: CxCommandOutput = await auth.triageSCAUpdate(projectId, vulnerabilities, scanType, state, comment);
expect(cxUpdate.exitCode).toEqual(0);
};

const handlegetStates = async () => {
const cxCommandOutput: CxCommandOutput = await auth.triageGetStates(false);
console.log("Json object from states successful case: " + JSON.stringify(cxCommandOutput));
Expand All @@ -47,12 +60,57 @@ describe("Triage cases", () => {
return cxCommandOutput
};

it('SCA Triage Show and Update Successful case', async () => {
const projectId = "d4d7f382-8dee-48c7-ac8f-67fab2c313a8";
const vulnerabilities = "packagename=Maven-org.apache.tomcat.embed:tomcat-embed-core,packageversion=9.0.14,vulnerabilityId=CVE-2024-56337,packagemanager=maven";
const scanType = "sca";
const state = "To_verify";
const comment = "comment1";
await handleTriageSCAShow(projectId, vulnerabilities, scanType);
await handleTriageSCAUpdate(projectId, vulnerabilities, scanType, state, comment);
});

it('SCA Triage Show and Update Failure case', async () => {
const projectId = "invalid-project-id";
const vulnerabilities = "invalid-vulnerability-string";
const scanType = "invalid";
const state = "invalid_state";
const comment = "invalid_comment";

const cxShow: CxCommandOutput = await auth.triageSCAShow(projectId, vulnerabilities, scanType);
expect(cxShow.exitCode).not.toEqual(0);

const cxUpdate: CxCommandOutput = await auth.triageSCAUpdate(projectId, vulnerabilities, scanType, state, comment);
expect(cxUpdate.exitCode).not.toEqual(0);
});

it('SCA Triage Show and Update with empty vulnerabilities', async () => {
const projectId = "d4d7f382-8dee-48c7-ac8f-67fab2c313a8";
const vulnerabilities = "";
const scanType = "sca";
const state = "To_verify";
const comment = "comment1";
const cxShow: CxCommandOutput = await auth.triageSCAShow(projectId, vulnerabilities, scanType);
expect(cxShow.exitCode).not.toEqual(0);

const cxUpdate: CxCommandOutput = await auth.triageSCAUpdate(projectId, vulnerabilities, scanType, state, comment);
expect(cxUpdate.exitCode).not.toEqual(0);
});

it('SCA Triage Show and Update with null/undefined arguments', async () => {
const cxShow: CxCommandOutput = await auth.triageSCAShow(undefined, undefined, undefined);
expect(cxShow.exitCode).not.toEqual(0);
const cxUpdate: CxCommandOutput = await auth.triageSCAUpdate(undefined, undefined, undefined, undefined, undefined);
expect(cxUpdate.exitCode).not.toEqual(0);
});

it('Triage Successful case', async () => {
const { scan, result } = await getScanAndResult();
await handleTriageShow(scan, result);
await handleTriageUpdate(scan, result, result.state, result.severity.toLowerCase() === "high" ? CxConstants.SEVERITY_MEDIUM : CxConstants.SEVERITY_HIGH);
});


it.skip('Triage with custom state Successful case', async () => {
const { scan, result } = await getScanAndResult();

Expand Down
Loading