🌱 e2e for local repoclient license check

- e2e for local repoclient for license check.

Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
This commit is contained in:
naveensrinivasan 2022-03-29 18:43:58 +00:00 committed by Naveen
parent cacc3e486d
commit 0644b18898

View File

@ -15,7 +15,10 @@ package e2e
import (
"context"
"io/ioutil"
"os"
"github.com/go-git/go-git/v5"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
@ -23,6 +26,7 @@ import (
"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"
)
@ -81,6 +85,46 @@ var _ = Describe("E2E TEST:"+checks.CheckLicense, func() {
Expect(result.Error).Should(BeNil())
Expect(result.Pass).Should(BeTrue())
Expect(scut.ValidateTestReturn(nil, "license found", &expected, &result,
&dl)).Should(BeTrue())
})
It("Should return license check works for the local repoclient", 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-license-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.MaxResultScore,
NumberOfWarn: 0,
NumberOfInfo: 1,
NumberOfDebug: 0,
}
result := checks.LicenseCheck(&req)
Expect(result.Error).Should(BeNil())
Expect(result.Pass).Should(BeTrue())
Expect(scut.ValidateTestReturn(nil, "license found", &expected, &result,
&dl)).Should(BeTrue())
})