|
| 1 | +import type { Result } from "sarif"; |
| 2 | + |
| 3 | +export function createMockResults(): Result[] { |
| 4 | + return [ |
| 5 | + { |
| 6 | + ruleId: "java/sql-injection", |
| 7 | + ruleIndex: 0, |
| 8 | + rule: { id: "java/sql-injection", index: 0 }, |
| 9 | + message: { |
| 10 | + text: "This query depends on a [user-provided value](1).", |
| 11 | + }, |
| 12 | + locations: [ |
| 13 | + { |
| 14 | + physicalLocation: { |
| 15 | + artifactLocation: { |
| 16 | + uri: "src/main/java/org/example/HelloController.java", |
| 17 | + uriBaseId: "%SRCROOT%", |
| 18 | + index: 0, |
| 19 | + }, |
| 20 | + region: { startLine: 15, startColumn: 29, endColumn: 56 }, |
| 21 | + }, |
| 22 | + }, |
| 23 | + ], |
| 24 | + partialFingerprints: { |
| 25 | + primaryLocationLineHash: "87e2d3cc5b365094:1", |
| 26 | + primaryLocationStartColumnFingerprint: "16", |
| 27 | + }, |
| 28 | + codeFlows: [ |
| 29 | + { |
| 30 | + threadFlows: [ |
| 31 | + { |
| 32 | + locations: [ |
| 33 | + { |
| 34 | + location: { |
| 35 | + physicalLocation: { |
| 36 | + artifactLocation: { |
| 37 | + uri: "src/main/java/org/example/HelloController.java", |
| 38 | + uriBaseId: "%SRCROOT%", |
| 39 | + index: 0, |
| 40 | + }, |
| 41 | + region: { |
| 42 | + startLine: 13, |
| 43 | + startColumn: 25, |
| 44 | + endColumn: 54, |
| 45 | + }, |
| 46 | + }, |
| 47 | + message: { text: "id : String" }, |
| 48 | + }, |
| 49 | + }, |
| 50 | + { |
| 51 | + location: { |
| 52 | + physicalLocation: { |
| 53 | + artifactLocation: { |
| 54 | + uri: "file:/", |
| 55 | + index: 5, |
| 56 | + }, |
| 57 | + region: { |
| 58 | + startLine: 13, |
| 59 | + startColumn: 25, |
| 60 | + endColumn: 54, |
| 61 | + }, |
| 62 | + }, |
| 63 | + message: { text: "id : String" }, |
| 64 | + }, |
| 65 | + }, |
| 66 | + { |
| 67 | + location: { |
| 68 | + physicalLocation: { |
| 69 | + artifactLocation: { |
| 70 | + uri: "src/main/java/org/example/HelloController.java", |
| 71 | + uriBaseId: "%SRCROOT%", |
| 72 | + index: 0, |
| 73 | + }, |
| 74 | + region: { |
| 75 | + startLine: 15, |
| 76 | + startColumn: 29, |
| 77 | + endColumn: 56, |
| 78 | + }, |
| 79 | + }, |
| 80 | + message: { text: "... + ..." }, |
| 81 | + }, |
| 82 | + }, |
| 83 | + ], |
| 84 | + }, |
| 85 | + ], |
| 86 | + }, |
| 87 | + ], |
| 88 | + relatedLocations: [ |
| 89 | + { |
| 90 | + id: 1, |
| 91 | + physicalLocation: { |
| 92 | + artifactLocation: { |
| 93 | + uri: "src/main/java/org/example/HelloController.java", |
| 94 | + uriBaseId: "%SRCROOT%", |
| 95 | + index: 0, |
| 96 | + }, |
| 97 | + region: { startLine: 13, startColumn: 25, endColumn: 54 }, |
| 98 | + }, |
| 99 | + message: { text: "user-provided value" }, |
| 100 | + }, |
| 101 | + ], |
| 102 | + }, |
| 103 | + ]; |
| 104 | +} |
0 commit comments