Skip to content
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 getOrgAndRepoFromIssue for enterprise #45

Merged
merged 2 commits into from
Jun 19, 2020

Conversation

LenaHoinkis
Copy link
Contributor

@LenaHoinkis LenaHoinkis commented Jun 18, 2020

Found a bug for enterprise in getOrgAndRepoFromIssue(), which occur when labels are used. It occurs because the enterprise URL path contains /api/v3/ at the beginning.
I add some logic which reads only the two fields after the first occurred "repos"/


This change is Reviewable

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm with an extra comment.

Reviewable status: 0 of 1 LGTMs obtained


issues/issues.go, line 284 at r1 (raw file):

	for i := 0; i <= len(fields); i++ {
		if fields[i] == "repos" {
			if i+2 == len(fields)-1 {

Please add a comment clarifying that this is to support the difference between default and enterprise API paths.

@coveralls
Copy link

coveralls commented Jun 18, 2020

Pull Request Test Coverage Report for Build 140

  • 7 of 7 (100.0%) changed or added relevant lines in 1 file are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 100.0%

Totals Coverage Status
Change from base Build 137: 0.0%
Covered Lines: 408
Relevant Lines: 408

💛 - Coveralls

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 0 of 1 LGTMs obtained


issues/issues.go, line 289 at r1 (raw file):

		}
	}
	return "", "", fmt.Errorf("Issue has invalid RepositoryURL path values")

Hmm, it looks like the error path is never visited, which leaves the code coverage incomplete.

Please add a new case that visits this error path, or refactor to eliminate it.

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 0 of 1 LGTMs obtained


issues/issues.go, line 289 at r1 (raw file):

Previously, stephen-soltesz (Stephen Soltesz) wrote…

Hmm, it looks like the error path is never visited, which leaves the code coverage incomplete.

Please add a new case that visits this error path, or refactor to eliminate it.

https://coveralls.io/builds/31539645/source?filename=issues%2Fissues.go#L289

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:lgtm:

Reviewable status: :shipit: complete! 1 of 1 LGTMs obtained

@stephen-soltesz stephen-soltesz merged commit 700e59c into m-lab:master Jun 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants