2021-06-04 17:35:06 +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-07-21 19:02:43 +03:00
|
|
|
//nolint:dupl
|
2021-06-04 17:35:06 +03:00
|
|
|
package e2e
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
|
|
|
"github.com/ossf/scorecard/checker"
|
|
|
|
"github.com/ossf/scorecard/checks"
|
2021-06-22 20:55:59 +03:00
|
|
|
"github.com/ossf/scorecard/clients/githubrepo"
|
2021-07-21 19:02:43 +03:00
|
|
|
scut "github.com/ossf/scorecard/utests"
|
2021-06-04 17:35:06 +03:00
|
|
|
)
|
|
|
|
|
2021-07-21 19:02:43 +03:00
|
|
|
// TODO: use dedicated repo that don't change.
|
|
|
|
// TODO: need negative results.
|
2021-06-04 17:35:06 +03:00
|
|
|
var _ = Describe("E2E TEST:Automatic-Dependency-Update", func() {
|
|
|
|
Context("E2E TEST:Validating dependencies are automatically updated", func() {
|
|
|
|
It("Should return deps are automatically updated for dependabot", func() {
|
2021-07-21 19:02:43 +03:00
|
|
|
dl := scut.TestDetailLogger{}
|
2021-07-26 03:37:14 +03:00
|
|
|
repoClient := githubrepo.CreateGithubRepoClient(context.Background(), ghClient, graphClient)
|
2021-06-22 20:55:59 +03:00
|
|
|
err := repoClient.InitRepo("ossf", "scorecard")
|
|
|
|
Expect(err).Should(BeNil())
|
|
|
|
|
2021-07-21 19:02:43 +03:00
|
|
|
req := checker.CheckRequest{
|
2021-06-04 17:35:06 +03:00
|
|
|
Ctx: context.Background(),
|
|
|
|
Client: ghClient,
|
2021-06-22 20:55:59 +03:00
|
|
|
RepoClient: repoClient,
|
2021-06-04 17:35:06 +03:00
|
|
|
Owner: "ossf",
|
|
|
|
Repo: "scorecard",
|
|
|
|
GraphClient: graphClient,
|
2021-07-21 19:02:43 +03:00
|
|
|
Dlogger: &dl,
|
2021-06-04 17:35:06 +03:00
|
|
|
}
|
2021-07-21 19:02:43 +03:00
|
|
|
expected := scut.TestReturn{
|
|
|
|
Errors: nil,
|
|
|
|
Score: checker.MaxResultScore,
|
|
|
|
NumberOfWarn: 0,
|
|
|
|
NumberOfInfo: 1,
|
|
|
|
NumberOfDebug: 0,
|
|
|
|
}
|
|
|
|
|
|
|
|
result := checks.AutomaticDependencyUpdate(&req)
|
|
|
|
// UPGRADEv2: to remove.
|
|
|
|
// Old version.
|
2021-06-04 17:35:06 +03:00
|
|
|
Expect(result.Error).Should(BeNil())
|
|
|
|
Expect(result.Pass).Should(BeTrue())
|
2021-07-21 19:02:43 +03:00
|
|
|
// New version.
|
|
|
|
Expect(scut.ValidateTestReturn(nil, "dependabot", &expected, &result, &dl)).Should(BeTrue())
|
2021-06-04 17:35:06 +03:00
|
|
|
})
|
|
|
|
It("Should return deps are automatically updated for renovatebot", func() {
|
2021-07-21 19:02:43 +03:00
|
|
|
dl := scut.TestDetailLogger{}
|
2021-07-26 03:37:14 +03:00
|
|
|
repoClient := githubrepo.CreateGithubRepoClient(context.Background(), ghClient, graphClient)
|
2021-06-22 20:55:59 +03:00
|
|
|
err := repoClient.InitRepo("netlify", "netlify-cms")
|
|
|
|
Expect(err).Should(BeNil())
|
|
|
|
|
2021-07-21 19:02:43 +03:00
|
|
|
req := checker.CheckRequest{
|
2021-06-04 17:35:06 +03:00
|
|
|
Ctx: context.Background(),
|
|
|
|
Client: ghClient,
|
2021-06-22 20:55:59 +03:00
|
|
|
RepoClient: repoClient,
|
2021-06-04 17:35:06 +03:00
|
|
|
Owner: "netlify",
|
|
|
|
Repo: "netlify-cms",
|
|
|
|
GraphClient: graphClient,
|
2021-07-21 19:02:43 +03:00
|
|
|
Dlogger: &dl,
|
|
|
|
}
|
|
|
|
expected := scut.TestReturn{
|
|
|
|
Errors: nil,
|
|
|
|
Score: checker.MaxResultScore,
|
|
|
|
NumberOfWarn: 0,
|
|
|
|
NumberOfInfo: 1,
|
|
|
|
NumberOfDebug: 0,
|
2021-06-04 17:35:06 +03:00
|
|
|
}
|
2021-07-21 19:02:43 +03:00
|
|
|
result := checks.AutomaticDependencyUpdate(&req)
|
|
|
|
// UPGRADEv2: to remove.
|
|
|
|
// Old version.
|
2021-06-04 17:35:06 +03:00
|
|
|
Expect(result.Error).Should(BeNil())
|
|
|
|
Expect(result.Pass).Should(BeTrue())
|
2021-07-21 19:02:43 +03:00
|
|
|
// New version.
|
|
|
|
Expect(scut.ValidateTestReturn(nil, "renovabot", &expected, &result, &dl)).Should(BeTrue())
|
2021-06-04 17:35:06 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|