-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: change clone URL check for gitlab to account for possible subpath #5177
Open
philslab-ninja
wants to merge
10
commits into
runatlantis:main
Choose a base branch
from
philslab-ninja:update_gitlab_cloneurl_check
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+29
−2
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
7b9da44
update clone URL check for gitlab to account for gitlab instances hos…
philslab-ninja dbe940c
Merge branch 'main' into update_gitlab_cloneurl_check
philslab-ninja bab7ae1
Merge branch 'main' into update_gitlab_cloneurl_check
jamengual fea3df1
Merge branch 'main' into update_gitlab_cloneurl_check
jamengual ad06f2b
Merge branch 'main' into update_gitlab_cloneurl_check
jamengual e8737da
adding test for update clone URL check for gitlab to account for gitl…
philslab-ninja 8a7a892
Merge branch 'main' into update_gitlab_cloneurl_check
philslab-ninja fb5560a
Merge branch 'main' into update_gitlab_cloneurl_check
jamengual 2b5e1b7
Merge branch 'main' into update_gitlab_cloneurl_check
jamengual b65d88d
Merge branch 'main' into update_gitlab_cloneurl_check
X-Guardian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -159,6 +159,27 @@ func TestNewRepo_HTTPSAuth(t *testing.T) { | |
}, repo) | ||
} | ||
|
||
func TestNewRepo_GitLabSubpath(t *testing.T) { | ||
// When GitLab is hosted at a subpath, the clone URL validation should still work | ||
repo, err := models.NewRepo(models.Gitlab, "owner/repo", "https://company.com/gitlab/owner/repo.git", "u", "p") | ||
Ok(t, err) | ||
Equals(t, models.Repo{ | ||
VCSHost: models.VCSHost{ | ||
Hostname: "company.com", | ||
Type: models.Gitlab, | ||
}, | ||
SanitizedCloneURL: "https://u:<redacted>@company.com/gitlab/owner/repo.git", | ||
CloneURL: "https://u:[email protected]/gitlab/owner/repo.git", | ||
FullName: "owner/repo", | ||
Owner: "owner", | ||
Name: "repo", | ||
}, repo) | ||
|
||
// Should fail if repo name doesn't match | ||
_, err = models.NewRepo(models.Gitlab, "owner/repo", "https://company.com/gitlab/owner/different-repo.git", "u", "p") | ||
ErrEquals(t, `expected clone url path to end with "/owner/repo.git" but had "/gitlab/owner/different-repo.git"`, err) | ||
} | ||
|
||
func TestProject_String(t *testing.T) { | ||
Equals(t, "repofullname=owner/repo path=my/path", (models.Project{ | ||
RepoFullName: "owner/repo", | ||
|
@@ -679,7 +700,7 @@ func TestPlanSuccessStats(t *testing.T) { | |
{ | ||
"with imports", | ||
`Terraform used the selected providers to generate the following execution | ||
plan. Resource actions are indicated with the following symbols: | ||
plan. Resource actions are indicated with the following symbols: | ||
+ create | ||
~ update in-place | ||
- destroy | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is now not checking that the hostname is as expected, so needs adding as a second check. A test also needs adding for this scenario.