github.com/mkimuram/operator-sdk@v0.7.1-0.20190410172100-52ad33a4bda0/internal/pkg/scorecard/helpers.go (about) 1 // Copyright 2019 The Operator-SDK Authors 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package scorecard 16 17 // These functions should be in the public test definitions file, but they are not complete/stable, 18 // so we'll keep these here until they get fully implemented 19 20 // ResultsPassFail will be used when multiple CRs are supported 21 func ResultsPassFail(results []TestResult) (earned, max int) { 22 for _, result := range results { 23 if result.EarnedPoints != result.MaximumPoints { 24 return 0, 1 25 } 26 } 27 return 1, 1 28 } 29 30 // ResultsCumulative will be used when multiple CRs are supported 31 func ResultsCumulative(results []TestResult) (earned, max int) { 32 for _, result := range results { 33 earned += result.EarnedPoints 34 max += result.MaximumPoints 35 } 36 return earned, max 37 }