Skip to content

Commit

Permalink
🌱 e2e tests for local repoclient for permissions
Browse files Browse the repository at this point in the history
- Included e2e tests for local repoclient for permissions.

Signed-off-by: naveensrinivasan <[email protected]>
  • Loading branch information
naveensrinivasan committed Mar 31, 2022
1 parent ab9769a commit e5f5deb
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions e2e/permissions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,18 @@ package e2e

import (
"context"
"io/ioutil"
"os"

"github.com/go-git/go-git/v5"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

"github.com/ossf/scorecard/v4/checker"
"github.com/ossf/scorecard/v4/checks"
"github.com/ossf/scorecard/v4/clients"
"github.com/ossf/scorecard/v4/clients/githubrepo"
"github.com/ossf/scorecard/v4/clients/localdir"
scut "github.com/ossf/scorecard/v4/utests"
)

Expand Down Expand Up @@ -88,5 +92,47 @@ var _ = Describe("E2E TEST:"+checks.CheckTokenPermissions, func() {
Expect(scut.ValidateTestReturn(nil, "token permissions", &expected, &result, &dl)).Should(BeTrue())
Expect(repoClient.Close()).Should(BeNil())
})
It("Should return token permission for a local repo client", func() {
dl := scut.TestDetailLogger{}

tmpDir, err := ioutil.TempDir("", "")
Expect(err).Should(BeNil())
defer os.RemoveAll(tmpDir)

_, e := git.PlainClone(tmpDir, false, &git.CloneOptions{
URL: "http://github.com/ossf-tests/scorecard-check-token-permissions-e2e",
})
Expect(e).Should(BeNil())

repo, err := localdir.MakeLocalDirRepo(tmpDir)
Expect(err).Should(BeNil())

x := localdir.CreateLocalDirClient(context.Background(), logger)
err = x.InitRepo(repo, clients.HeadSHA)
Expect(err).Should(BeNil())

req := checker.CheckRequest{
Ctx: context.Background(),
RepoClient: x,
Repo: repo,
Dlogger: &dl,
}
expected := scut.TestReturn{
Error: nil,
Score: checker.MinResultScore,
NumberOfWarn: 1,
NumberOfInfo: 2,
NumberOfDebug: 5,
}
result := checks.TokenPermissions(&req)
// UPGRADEv2: to remove.
// Old version.

Expect(result.Error).Should(BeNil())
Expect(result.Pass).Should(BeFalse())
// New version.
Expect(scut.ValidateTestReturn(nil, "token permissions", &expected, &result, &dl)).Should(BeTrue())
Expect(x.Close()).Should(BeNil())
})
})
})

0 comments on commit e5f5deb

Please sign in to comment.