Skip to content

Commit

Permalink
Check that the number of releases received matches expectations
Browse files Browse the repository at this point in the history
  • Loading branch information
Pete Emerson committed Oct 26, 2020
1 parent 441309b commit e7fa52a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions github_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ func TestGetListOfReleasesFromGitHubRepo(t *testing.T) {
repoUrl string
firstReleaseTag string
lastReleaseTag string
expectedNumTags int
gitHubOAuthToken string
testInst GitHubInstance
}{
// Test on a public repo whose sole purpose is to be a test fixture for this tool
{"https://github.com/gruntwork-io/fetch-test-public", "v0.0.1", "v0.0.3", "", testInst},
{"https://github.com/gruntwork-io/fetch-test-public", "v0.0.1", "v0.0.3", 3, "", testInst},

// Private repo equivalent
{"https://github.com/gruntwork-io/fetch-test-private", "v0.0.2", "v0.0.2", os.Getenv("GITHUB_OAUTH_TOKEN"), testInst},
{"https://github.com/gruntwork-io/fetch-test-private", "v0.0.2", "v0.0.2", 1, os.Getenv("GITHUB_OAUTH_TOKEN"), testInst},
}

for _, tc := range cases {
Expand All @@ -42,6 +43,10 @@ func TestGetListOfReleasesFromGitHubRepo(t *testing.T) {
t.Fatalf("expected non-empty list of releases for repo %s, but no releases were found", tc.repoUrl)
}

if len(releases) != tc.expectedNumTags {
t.Fatalf("expected %d releases, but got %d", tc.expectedNumTags, len(releases))
}

if releases[len(releases)-1] != tc.firstReleaseTag {
t.Fatalf("error parsing github releases for repo %s. expected first release = %s, actual = %s", tc.repoUrl, tc.firstReleaseTag, releases[len(releases)-1])
}
Expand Down

0 comments on commit e7fa52a

Please sign in to comment.