2021-04-02 05:09:45 +03:00
|
|
|
// Copyright 2021 Security Scorecard Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2021-01-27 02:34:05 +03:00
|
|
|
package e2e
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-02-15 22:27:45 +03:00
|
|
|
. "github.com/onsi/ginkgo/v2"
|
2021-01-27 02:34:05 +03:00
|
|
|
. "github.com/onsi/gomega"
|
2021-05-24 06:51:52 +03:00
|
|
|
|
2022-01-12 22:49:01 +03:00
|
|
|
"github.com/ossf/scorecard/v4/checker"
|
|
|
|
"github.com/ossf/scorecard/v4/checks"
|
2022-02-15 01:24:35 +03:00
|
|
|
"github.com/ossf/scorecard/v4/clients"
|
2022-01-12 22:49:01 +03:00
|
|
|
"github.com/ossf/scorecard/v4/clients/githubrepo"
|
|
|
|
scut "github.com/ossf/scorecard/v4/utests"
|
2021-01-27 02:34:05 +03:00
|
|
|
)
|
|
|
|
|
2021-07-30 04:54:19 +03:00
|
|
|
var _ = Describe("E2E TEST:"+checks.CheckBranchProtection, func() {
|
2021-01-27 02:34:05 +03:00
|
|
|
Context("E2E TEST:Validating branch protection", func() {
|
2021-12-03 05:17:00 +03:00
|
|
|
It("Should get non-admin branch protection on other repositories", func() {
|
2021-07-21 19:21:43 +03:00
|
|
|
dl := scut.TestDetailLogger{}
|
2021-10-21 21:22:41 +03:00
|
|
|
repo, err := githubrepo.MakeGithubRepo("ossf-tests/scorecard-check-branch-protection-e2e")
|
2021-09-10 20:13:14 +03:00
|
|
|
Expect(err).Should(BeNil())
|
2021-09-02 05:32:26 +03:00
|
|
|
repoClient := githubrepo.CreateGithubRepoClient(context.Background(), logger)
|
2022-02-15 01:24:35 +03:00
|
|
|
err = repoClient.InitRepo(repo, clients.HeadSHA)
|
2021-08-31 00:12:57 +03:00
|
|
|
Expect(err).Should(BeNil())
|
2021-07-21 19:21:43 +03:00
|
|
|
req := checker.CheckRequest{
|
2021-09-02 05:32:26 +03:00
|
|
|
Ctx: context.Background(),
|
|
|
|
RepoClient: repoClient,
|
2021-09-10 20:13:14 +03:00
|
|
|
Repo: repo,
|
2021-09-02 05:32:26 +03:00
|
|
|
Dlogger: &dl,
|
2021-01-27 02:34:05 +03:00
|
|
|
}
|
2021-07-21 19:21:43 +03:00
|
|
|
expected := scut.TestReturn{
|
2021-08-31 00:12:57 +03:00
|
|
|
Error: nil,
|
2021-11-20 04:42:21 +03:00
|
|
|
Score: 6,
|
2021-10-21 21:22:41 +03:00
|
|
|
NumberOfWarn: 1,
|
2021-12-03 05:17:00 +03:00
|
|
|
NumberOfInfo: 3,
|
|
|
|
NumberOfDebug: 3,
|
2021-07-21 19:21:43 +03:00
|
|
|
}
|
|
|
|
result := checks.BranchProtection(&req)
|
|
|
|
// UPGRADEv2: to remove.
|
|
|
|
// Old version.
|
2021-10-21 21:22:41 +03:00
|
|
|
Expect(result.Error).Should(BeNil())
|
2021-11-20 08:51:11 +03:00
|
|
|
Expect(result.Pass).Should(BeFalse())
|
|
|
|
|
2021-12-04 00:53:18 +03:00
|
|
|
// New version.
|
|
|
|
Expect(scut.ValidateTestReturn(nil, "branch protection accessible", &expected, &result, &dl)).Should(BeTrue())
|
|
|
|
Expect(repoClient.Close()).Should(BeNil())
|
|
|
|
})
|
|
|
|
It("Should fail to return branch protection on other repositories", func() {
|
|
|
|
dl := scut.TestDetailLogger{}
|
|
|
|
repo, err := githubrepo.MakeGithubRepo("ossf-tests/scorecard-check-branch-protection-e2e-none")
|
|
|
|
Expect(err).Should(BeNil())
|
|
|
|
repoClient := githubrepo.CreateGithubRepoClient(context.Background(), logger)
|
2022-02-15 01:24:35 +03:00
|
|
|
err = repoClient.InitRepo(repo, clients.HeadSHA)
|
2021-12-04 00:53:18 +03:00
|
|
|
Expect(err).Should(BeNil())
|
|
|
|
req := checker.CheckRequest{
|
|
|
|
Ctx: context.Background(),
|
|
|
|
RepoClient: repoClient,
|
|
|
|
Repo: repo,
|
|
|
|
Dlogger: &dl,
|
|
|
|
}
|
|
|
|
expected := scut.TestReturn{
|
|
|
|
Error: nil,
|
|
|
|
Score: 0,
|
|
|
|
NumberOfWarn: 2,
|
|
|
|
NumberOfInfo: 0,
|
|
|
|
NumberOfDebug: 0,
|
|
|
|
}
|
|
|
|
result := checks.BranchProtection(&req)
|
|
|
|
// UPGRADEv2: to remove.
|
|
|
|
// Old version.
|
|
|
|
Expect(result.Error).Should(BeNil())
|
|
|
|
Expect(result.Pass).Should(BeFalse())
|
|
|
|
|
|
|
|
// New version.
|
|
|
|
Expect(scut.ValidateTestReturn(nil, "branch protection accessible", &expected, &result, &dl)).Should(BeTrue())
|
|
|
|
Expect(repoClient.Close()).Should(BeNil())
|
|
|
|
})
|
|
|
|
It("Should fail to return branch protection on other repositories", func() {
|
|
|
|
dl := scut.TestDetailLogger{}
|
|
|
|
repo, err := githubrepo.MakeGithubRepo("ossf-tests/scorecard-check-branch-protection-e2e-patch-1")
|
|
|
|
Expect(err).Should(BeNil())
|
|
|
|
repoClient := githubrepo.CreateGithubRepoClient(context.Background(), logger)
|
2022-02-15 01:24:35 +03:00
|
|
|
err = repoClient.InitRepo(repo, clients.HeadSHA)
|
2021-12-04 00:53:18 +03:00
|
|
|
Expect(err).Should(BeNil())
|
|
|
|
req := checker.CheckRequest{
|
|
|
|
Ctx: context.Background(),
|
|
|
|
RepoClient: repoClient,
|
|
|
|
Repo: repo,
|
|
|
|
Dlogger: &dl,
|
|
|
|
}
|
|
|
|
expected := scut.TestReturn{
|
|
|
|
Error: nil,
|
|
|
|
Score: 1,
|
|
|
|
NumberOfWarn: 2,
|
|
|
|
NumberOfInfo: 3,
|
|
|
|
NumberOfDebug: 3,
|
|
|
|
}
|
|
|
|
result := checks.BranchProtection(&req)
|
|
|
|
// UPGRADEv2: to remove.
|
|
|
|
// Old version.
|
|
|
|
Expect(result.Error).Should(BeNil())
|
|
|
|
Expect(result.Pass).Should(BeFalse())
|
|
|
|
|
2021-07-21 19:21:43 +03:00
|
|
|
// New version.
|
2021-10-21 21:22:41 +03:00
|
|
|
Expect(scut.ValidateTestReturn(nil, "branch protection accessible", &expected, &result, &dl)).Should(BeTrue())
|
2021-11-15 06:53:01 +03:00
|
|
|
Expect(repoClient.Close()).Should(BeNil())
|
2021-07-30 04:54:19 +03:00
|
|
|
})
|
2021-01-27 02:34:05 +03:00
|
|
|
})
|
|
|
|
})
|