| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package detect
- import (
- "testing"
- "github.com/stretchr/testify/assert"
- "github.com/zricethezav/gitleaks/v8/cmd/scm"
- "github.com/zricethezav/gitleaks/v8/report"
- )
- func Test_createScmLink(t *testing.T) {
- tests := map[string]struct {
- platform scm.Platform
- url string
- finding report.Finding
- want string
- }{
- // None
- "no platform": {
- platform: scm.NoPlatform,
- want: "",
- },
- // GitHub
- "github - single line": {
- platform: scm.GitHubPlatform,
- url: "https://github.com/gitleaks/test",
- finding: report.Finding{
- Commit: "20553ad96a4a080c94a54d677db97eed8ce2560d",
- File: "metrics/% of sales/.env",
- StartLine: 25,
- EndLine: 25,
- },
- want: "https://github.com/gitleaks/test/blob/20553ad96a4a080c94a54d677db97eed8ce2560d/metrics/%25%20of%20sales/.env#L25",
- },
- "github - multi line": {
- platform: scm.GitHubPlatform,
- url: "https://github.com/gitleaks/test",
- finding: report.Finding{
- Commit: "7bad9f7654cf9701b62400281748c0e8efd97666",
- File: "config.json",
- StartLine: 235,
- EndLine: 238,
- },
- want: "https://github.com/gitleaks/test/blob/7bad9f7654cf9701b62400281748c0e8efd97666/config.json#L235-L238",
- },
- "github - markdown": {
- platform: scm.GitHubPlatform,
- url: "https://github.com/gitleaks/test",
- finding: report.Finding{
- Commit: "1fc8961d172f39ffb671766e472aa76f8d713e87",
- File: "docs/guides/ecosystem/discordjs.MD",
- StartLine: 34,
- EndLine: 34,
- },
- want: "https://github.com/gitleaks/test/blob/1fc8961d172f39ffb671766e472aa76f8d713e87/docs/guides/ecosystem/discordjs.MD?plain=1#L34",
- },
- "github - jupyter notebook": {
- platform: scm.GitHubPlatform,
- url: "https://github.com/gitleaks/test",
- finding: report.Finding{
- Commit: "8f56bd2369595bcadbb007e88ba294630fb05c7b",
- File: "Cloud/IPYNB/Overlapping Recommendation algorithm _OCuLaR_.ipynb",
- StartLine: 293,
- EndLine: 293,
- },
- want: "https://github.com/gitleaks/test/blob/8f56bd2369595bcadbb007e88ba294630fb05c7b/Cloud/IPYNB/Overlapping%20Recommendation%20algorithm%20_OCuLaR_.ipynb?plain=1#L293",
- },
- // GitLab
- "gitlab - single line": {
- platform: scm.GitLabPlatform,
- url: "https://gitlab.com/example-org/example-group/gitleaks",
- finding: report.Finding{
- Commit: "213ffd1c9bfa906eb4c7731771132c58a4ca0139",
- File: ".gitlab-ci.yml",
- StartLine: 41,
- EndLine: 41,
- },
- want: "https://gitlab.com/example-org/example-group/gitleaks/blob/213ffd1c9bfa906eb4c7731771132c58a4ca0139/.gitlab-ci.yml#L41",
- },
- "gitlab - multi line": {
- platform: scm.GitLabPlatform,
- url: "https://gitlab.com/example-org/example-group/gitleaks",
- finding: report.Finding{
- Commit: "63410f74e23a4e51e1f60b9feb073b5d325af878",
- File: ".vscode/launchSettings.json",
- StartLine: 6,
- EndLine: 8,
- },
- want: "https://gitlab.com/example-org/example-group/gitleaks/blob/63410f74e23a4e51e1f60b9feb073b5d325af878/.vscode/launchSettings.json#L6-8",
- },
- }
- for name, tt := range tests {
- t.Run(name, func(t *testing.T) {
- actual := createScmLink(tt.platform, tt.url, tt.finding)
- assert.Equal(t, tt.want, actual)
- })
- }
- }
|