How to use IsSuppressed method of report Package

Best Syzkaller code snippet using report.IsSuppressed

trustedadvisor_test.go

Source:trustedadvisor_test.go Github

copy

Full Screen

...45 }: {46 Status: aws.String("warning"),47 FlaggedResources: []*support.TrustedAdvisorResourceDetail{48 {49 IsSuppressed: aws.Bool(false),50 Metadata: aws.StringSlice([]string{51 "Yellow",52 "us-east-1",53 "i-0123456789abcdefg",54 "k8s.example.com",55 "m5.2xlarge",56 "$276.48",57 "1.8% 3.34MB",58 "1.7% 3.29MB",59 "1.6% 3.29MB",60 "1.6% 3.32MB",61 "1.6% 3.28MB",62 "1.7% 3.41MB",63 "1.6% 3.43MB",64 "1.6% 3.47MB",65 "1.9% 3.34MB",66 "1.6% 3.29MB",67 "1.6% 3.40MB",68 "1.7% 3.48MB",69 "1.7% 3.51MB",70 "1.7% 3.43MB",71 "1.7%",72 "3.37MB",73 "14 days"},74 ),75 Region: aws.String("us-east-1"),76 ResourceId: aws.String("QtCJL9NshMFH8AHUBLdX_fvrnAOPSTpR-hzxk0YU4oI"),77 Status: aws.String("warning"),78 },79 {80 IsSuppressed: aws.Bool(false),81 Metadata: aws.StringSlice([]string{82 "Yellow",83 "us-east-1",84 "i-abcdefg0123456789",85 "k8s.example.com",86 "m5.2xlarge",87 "$276.48",88 "1.0% 2.61MB",89 "1.1% 2.57MB",90 "1.0% 2.56MB",91 "1.0% 2.60MB",92 "1.0% 2.55MB",93 "1.0% 2.69MB",94 "1.0% 2.70MB",95 "1.0% 2.73MB",96 "1.1% 2.63MB",97 "1.0% 2.55MB",98 "1.0% 2.66MB",99 "1.0% 2.75MB",100 "1.0% 2.78MB",101 "1.0% 2.70MB",102 "1.0%",103 "2.65MB",104 "14 days"},105 ),106 Region: aws.String("us-east-1"),107 ResourceId: aws.String("M1nMGLq-DqEbS0jbaObJ1IXucGlQ_bcOOBBLQSVcCjU"),108 Status: aws.String("warning"),109 },110 // This is just to test filtering out resources that have "Green" in their metadata111 {112 Metadata: aws.StringSlice([]string{113 "Green",114 },115 ),116 },117 },118 ResourcesSummary: &support.TrustedAdvisorResourcesSummary{119 ResourcesFlagged: aws.Int64(10),120 ResourcesIgnored: aws.Int64(0),121 ResourcesProcessed: aws.Int64(12),122 ResourcesSuppressed: aws.Int64(0),123 },124 },125 {126 Category: aws.String("security"),127 Description: aws.String(`Checks for your use of AWS Identity and Access Management (IAM). You can use IAM to create users, groups, and roles in AWS, and you can use permissions to control access to AWS resources.128 <br>129 <br>130 <b>Alert Criteria</b><br>131 Yellow: No IAM users have been created for this account.132 <br>133 <br>134 <b>Recommended Action</b><br>135 Create one or more IAM users and groups in your account. You can then create additional users whose permissions are limited to perform specific tasks in your AWS environment. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAMGettingStarted.html" target="_blank">Getting Started</a>.136 <br><br>137 <b>Additional Resources</b><br>138 <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_Introduction.html" target="_blank">What Is IAM?</a>`),139 Name: aws.String("IAM Use"),140 }: {141 Status: aws.String("warning"),142 FlaggedResources: []*support.TrustedAdvisorResourceDetail{{143 IsSuppressed: aws.Bool(false),144 ResourceId: aws.String("47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU"),145 Status: aws.String("warning"),146 },147 },148 ResourcesSummary: &support.TrustedAdvisorResourcesSummary{149 ResourcesFlagged: aws.Int64(1),150 ResourcesIgnored: aws.Int64(0),151 ResourcesProcessed: aws.Int64(1),152 ResourcesSuppressed: aws.Int64(0),153 },154 },155 },156 expectedFindings: []trustedAdvisorFinding{157 {158 AccountID: "111111111111",159 Category: "COST_OPTIMIZING",160 Name: "Low Utilization Amazon EC2 Instances",161 Description: `Checks the Amazon Elastic Compute Cloud (Amazon EC2) instances that were running at any time during the last 14 days and alerts you if the daily CPU utilization was 10% or less and network I/O was 5 MB or less on 4 or more days. Running instances generate hourly usage charges. Although some scenarios can result in low utilization by design, you can often lower your costs by managing the number and size of your instances.`,162 Status: "warning",163 ResourcesSummary: support.TrustedAdvisorResourcesSummary{164 ResourcesFlagged: aws.Int64(10),165 ResourcesIgnored: aws.Int64(0),166 ResourcesProcessed: aws.Int64(12),167 ResourcesSuppressed: aws.Int64(0),168 },169 FlaggedResources: []string{"us-east-1/i-0123456789abcdefg", "us-east-1/i-abcdefg0123456789"},170 Comments: "NEW_FINDING",171 }, {172 AccountID: "111111111111",173 Category: "SECURITY",174 Name: "IAM Use",175 Description: "Checks for your use of AWS Identity and Access Management (IAM). You can use IAM to create users, groups, and roles in AWS, and you can use permissions to control access to AWS resources.",176 Status: "warning",177 ResourcesSummary: support.TrustedAdvisorResourcesSummary{178 ResourcesFlagged: aws.Int64(1),179 ResourcesIgnored: aws.Int64(0),180 ResourcesProcessed: aws.Int64(1),181 ResourcesSuppressed: aws.Int64(0),182 },183 FlaggedResources: []string{"NA"},184 Comments: "**EXCEPTION:** We use Federation and IAM roles to manage resources in AWS . No users/groups created in IAM",185 },186 },187 },188 {189 name: "Return error when getting Account ID",190 accountID: "",191 mockGetFailingTrustedAdvisorCheckResultsError: errors.New("Some API error"),192 expectedError: errors.New("Some API error"),193 },194 {195 name: "Return error when running GetFailingTrustedAdvisorCheckResult",196 accountID: "12345",197 mockGetFailingTrustedAdvisorCheckResultsError: errors.New("Some API error"),198 expectedError: errors.New("Some API error"),199 },200 }201 for _, tc := range testCases {202 t.Run(tc.name, func(t *testing.T) {203 mockCtrl := gomock.NewController(t)204 defer mockCtrl.Finish()205 mockAPIs := mocks.NewMockAPIs(mockCtrl)206 mockAPIs.EXPECT().GetAccountID().Return(tc.accountID, tc.mockGetAccountIDError).MaxTimes(1)207 mockAPIs.EXPECT().GetFailingTrustedAdvisorCheckResults().Return(tc.mockGetFailingTrustedAdvisorCheckResultsResponse, tc.mockGetFailingTrustedAdvisorCheckResultsError).MaxTimes(1)208 comments := parseCommentsFile("../../test/data/comments.yaml")209 report := &TrustedAdvisorReport{}210 err := report.GetReport(mockAPIs, comments)211 assert.ElementsMatch(t, tc.expectedFindings, report.Findings)212 assert.Equal(t, tc.expectedError, err)213 })214 }215}216func TestProcessTrustedAdvisorResults(t *testing.T) {217 testCases := []struct {218 name string219 results map[*support.TrustedAdvisorCheckDescription]*support.TrustedAdvisorCheckResult220 account string221 expectedOutput []trustedAdvisorFinding222 }{223 {224 name: "Return expected results",225 results: map[*support.TrustedAdvisorCheckDescription]*support.TrustedAdvisorCheckResult{226 {227 Category: aws.String("cost_optimizing"),228 Description: aws.String(`Checks the Amazon Elastic Compute Cloud (Amazon EC2) instances that were running at any time during the last 14 days and alerts you if the daily CPU utilization was 10% or less and network I/O was 5 MB or less on 4 or more days. Running instances generate hourly usage charges. Although some scenarios can result in low utilization by design, you can often lower your costs by managing the number and size of your instances.229 <br><br>230 Estimated monthly savings are calculated by using the current usage rate for On-Demand Instances and the estimated number of days the instance might be underutilized. Actual savings will vary if you are using Reserved Instances or Spot Instances, or if the instance is not running for a full day. To get daily utilization data, download the report for this check.231 <br>232 <br>233 <b>Alert Criteria</b><br>234 Yellow: An instance had 10% or less daily average CPU utilization and 5 MB or less network I/O on at least 4 of the previous 14 days.<br>235 <br>236 <b>Recommended Action</b><br>237 Consider stopping or terminating instances that have low utilization, or scale the number of instances by using Auto Scaling. For more information, see <a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Stop_Start.html" target="_blank">Stop and Start Your Instance</a>, <a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/terminating-instances.html" target="_blank">Terminate Your Instance</a>, and <a href="http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/WhatIsAutoScaling.html" target="_blank">What is Auto Scaling?</a><br>238 <br>239 <b>Additional Resources</b><br>240 <a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-monitoring.html" target="_blank">Monitoring Amazon EC2</a><br>241 <a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html" target="_blank">Instance Metadata and User Data</a><br>242 <a href="http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/Welcome.html" target="_blank">Amazon CloudWatch Developer Guide</a><br>243 <a href="http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/WhatIsAutoScaling.html" target="_blank">Auto Scaling Developer Guide</a>`),244 Metadata: aws.StringSlice([]string{"Status", "Region", "instance-id", "Name"}),245 Name: aws.String("Low Utilization Amazon EC2 Instances"),246 }: {247 Status: aws.String("warning"),248 FlaggedResources: []*support.TrustedAdvisorResourceDetail{249 {250 IsSuppressed: aws.Bool(false),251 Metadata: aws.StringSlice([]string{252 "Yellow",253 "us-east-1",254 "i-0123456789abcdefg",255 "k8s.example.com",256 "m5.2xlarge",257 "$276.48",258 "1.8% 3.34MB",259 "1.7% 3.29MB",260 "1.6% 3.29MB",261 "1.6% 3.32MB",262 "1.6% 3.28MB",263 "1.7% 3.41MB",264 "1.6% 3.43MB",265 "1.6% 3.47MB",266 "1.9% 3.34MB",267 "1.6% 3.29MB",268 "1.6% 3.40MB",269 "1.7% 3.48MB",270 "1.7% 3.51MB",271 "1.7% 3.43MB",272 "1.7%",273 "3.37MB",274 "14 days"},275 ),276 Region: aws.String("us-east-1"),277 ResourceId: aws.String("QtCJL9NshMFH8AHUBLdX_fvrnAOPSTpR-hzxk0YU4oI"),278 Status: aws.String("warning"),279 },280 {281 IsSuppressed: aws.Bool(false),282 Metadata: aws.StringSlice([]string{283 "Yellow",284 "us-east-1",285 "i-abcdefg0123456789",286 "k8s.example.com",287 "m5.2xlarge",288 "$276.48",289 "1.0% 2.61MB",290 "1.1% 2.57MB",291 "1.0% 2.56MB",292 "1.0% 2.60MB",293 "1.0% 2.55MB",294 "1.0% 2.69MB",295 "1.0% 2.70MB",296 "1.0% 2.73MB",297 "1.1% 2.63MB",298 "1.0% 2.55MB",299 "1.0% 2.66MB",300 "1.0% 2.75MB",301 "1.0% 2.78MB",302 "1.0% 2.70MB",303 "1.0%",304 "2.65MB",305 "14 days"},306 ),307 Region: aws.String("us-east-1"),308 ResourceId: aws.String("M1nMGLq-DqEbS0jbaObJ1IXucGlQ_bcOOBBLQSVcCjU"),309 Status: aws.String("warning"),310 },311 // This is just to test filtering out resources that have "Green" in their metadata312 {313 Metadata: aws.StringSlice([]string{314 "Green",315 },316 ),317 },318 },319 ResourcesSummary: &support.TrustedAdvisorResourcesSummary{320 ResourcesFlagged: aws.Int64(10),321 ResourcesIgnored: aws.Int64(0),322 ResourcesProcessed: aws.Int64(12),323 ResourcesSuppressed: aws.Int64(0),324 },325 },326 {327 Category: aws.String("security"),328 Description: aws.String(`Checks for your use of AWS Identity and Access Management (IAM). You can use IAM to create users, groups, and roles in AWS, and you can use permissions to control access to AWS resources.329 <br>330 <br>331 <b>Alert Criteria</b><br>332 Yellow: No IAM users have been created for this account.333 <br>334 <br>335 <b>Recommended Action</b><br>336 Create one or more IAM users and groups in your account. You can then create additional users whose permissions are limited to perform specific tasks in your AWS environment. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAMGettingStarted.html" target="_blank">Getting Started</a>.337 <br><br>338 <b>Additional Resources</b><br>339 <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_Introduction.html" target="_blank">What Is IAM?</a>`),340 Name: aws.String("IAM Use"),341 }: {342 Status: aws.String("warning"),343 FlaggedResources: []*support.TrustedAdvisorResourceDetail{{344 IsSuppressed: aws.Bool(false),345 ResourceId: aws.String("47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU"),346 Status: aws.String("warning"),347 },348 },349 ResourcesSummary: &support.TrustedAdvisorResourcesSummary{350 ResourcesFlagged: aws.Int64(1),351 ResourcesIgnored: aws.Int64(0),352 ResourcesProcessed: aws.Int64(1),353 ResourcesSuppressed: aws.Int64(0),354 },355 },356 },357 account: "111111111111",358 expectedOutput: []trustedAdvisorFinding{...

Full Screen

Full Screen

levee.go

Source:levee.go Github

copy

Full Screen

...131 case *ast.Ident:132 /*133 Sink( // levee.DoNotReport134 */135 if suppressedNodes.IsSuppressed(t) {136 return true137 }138 case *ast.SelectorExpr:139 /*140 core.Sink( // levee.DoNotReport141 */142 if suppressedNodes.IsSuppressed(t.Sel) {143 return true144 }145 }146 } else {147 fmt.Printf("unexpected node received: %v (type %T); please report this issue\n", path[0], path[0])148 }149 return suppressedNodes.IsSuppressed(path[0]) || suppressedNodes.IsSuppressed(path[1])150 }151 return false152}153func report(conf *config.Config, pass *analysis.Pass, source *source.Source, sink ssa.Node) {154 var b strings.Builder155 b.WriteString("a source has reached a sink")156 fmt.Fprintf(&b, "\n source: %v", pass.Fset.Position(source.Pos()))157 if conf.ReportMessage != "" {158 fmt.Fprintf(&b, "\n %v", conf.ReportMessage)159 }160 pass.Reportf(sink.Pos(), b.String())161}...

Full Screen

Full Screen

analyzer.go

Source:analyzer.go Github

copy

Full Screen

...22)23const suppressionString = "levee.DoNotReport"24// ResultType is a set of nodes that are suppressed by a comment.25type ResultType map[ast.Node]bool26// IsSuppressed determines whether the given node is suppressed.27func (rt ResultType) IsSuppressed(n ast.Node) bool {28 _, ok := rt[n]29 return ok30}31var Analyzer = &analysis.Analyzer{32 Name: "suppression",33 Doc: "This analyzer identifies ast nodes that are suppressed by comments.",34 Run: run,35 ResultType: reflect.TypeOf(new(ResultType)).Elem(),36}37func run(pass *analysis.Pass) (interface{}, error) {38 result := map[ast.Node]bool{}39 for _, f := range pass.Files {40 for node, commentGroups := range ast.NewCommentMap(pass.Fset, f, f.Comments) {41 for _, cg := range commentGroups {...

Full Screen

Full Screen

IsSuppressed

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 r := report.NewReport()4 r.Add(gosec.NewIssue(gosec.Medium, gosec.NewRule("G101", "Rule 1", "Description", "Confidence", "What", "Why", "How"), "test.go", 1, "test"))5 r.Add(gosec.NewIssue(gosec.Medium, gosec.NewRule("G102", "Rule 2", "Description", "Confidence", "What", "Why", "How"), "test.go", 1, "test"))6 r.Add(gosec.NewIssue(gosec.Medium, gosec.NewRule("G103", "Rule 3", "Description", "Confidence", "What", "Why", "How"), "test.go", 1, "test"))7 r.Add(gosec.NewIssue(gosec.Medium, gosec.NewRule("G104", "Rule 4", "Description", "Confidence", "What", "Why", "How"), "test.go", 1, "test"))8 r.Add(gosec.NewIssue(gosec.Medium, gosec.NewRule("G105", "Rule 5", "Description", "Confidence", "What", "Why", "How"), "test.go", 1, "test"))9 r.Add(gosec.NewIssue(gosec.Medium, gosec.NewRule("G106", "Rule 6", "Description", "Confidence", "What", "Why", "How"), "test.go", 1, "test"))10 r.Add(gosec.NewIssue(gosec.Medium, gosec.NewRule("G107", "Rule 7", "Description", "Confidence", "What", "Why", "How"), "test.go", 1, "test"))11 r.Add(gosec.NewIssue(gosec.Medium, gosec.NewRule("G108", "Rule 8", "Description", "Confidence", "What", "Why", "How"), "test.go", 1, "test"))12 r.Add(gosec.NewIssue(gosec.Medium, gosec.NewRule("G109", "Rule 9

Full Screen

Full Screen

IsSuppressed

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 fmt.Println("Hello, playground")4 rep := gosec.NewReport()5 issue := gosec.NewIssue(gosec.NewRule("G101", "Weak cryptographic primitive", "Weak cryptographic primitive", "Weak cryptographic primitive", rules.High, "crypto/rand"), "crypto/rand", gosec.Medium, gosec.NewLocation("test.go", 10, 10, 10))6 rep.Add(issue)7 if rep.IsSuppressed(issue) {8 fmt.Println("Issue is suppressed")9 } else {10 fmt.Println("Issue is not suppressed")11 }12}13import (14func main() {15 fmt.Println("Hello, playground")16 rep := gosec.NewReport()17 issue := gosec.NewIssue(gosec.NewRule("G101", "Weak cryptographic primitive", "Weak cryptographic primitive", "Weak cryptographic primitive", rules.High, "crypto/rand"), "crypto/rand", gosec.Medium, gosec.NewLocation("test.go", 10, 10, 10))18 rep.Add(issue)19 rep.SuppressedIssues = append(rep.SuppressedIssues, gosec.SuppressedIssue{ID: issue.ID(), Confidence: issue.Confidence, File: issue.File, Line: issue.Line, Code: issue.Code, Details: issue.Details})20 if rep.IsSuppressed(issue) {21 fmt.Println("Issue is suppressed")22 } else {23 fmt.Println("Issue is not suppressed")24 }25}

Full Screen

Full Screen

IsSuppressed

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 f, err := parser.ParseFile(fset, "1.go", nil, parser.ParseComments)4 if err != nil {5 log.Fatal(err)6 }7 report = NewReport()8 report.Add("1", 1, "Error", "Error message")9 report.Add("1", 2, "Error", "Error message")10 report.Add("1", 3, "Error", "Error message")11 report.Add("1", 4, "Error", "Error message")12 report.Add("1", 5, "Error", "Error message")13 report.Add("1", 6, "Error", "Error message")14 report.Add("1", 7, "Error", "Error message")15 report.Add("1", 8, "Error", "Error message")16 report.Add("1", 9, "Error", "Error message")17 report.Add("1", 10, "Error", "Error message")18 report.Add("1", 11, "Error", "Error message")19 report.Add("1", 12, "Error", "Error message")20 report.Add("1", 13, "Error", "Error message")21 report.Add("1", 14, "Error", "Error message")22 report.Add("1", 15, "Error", "Error message")23 report.Add("1", 16, "Error", "Error message")24 report.Add("1", 17, "Error", "Error message")25 report.Add("1", 18, "Error", "Error message")26 report.Add("1", 19, "Error", "Error message")27 report.Add("1", 20, "Error", "Error message")28 report.Add("1", 21, "Error", "Error message")29 report.Add("1", 22, "Error", "Error message")30 report.Add("1", 23, "Error", "Error message")31 report.Add("1", 24, "Error", "Error message")32 report.Add("1", 25, "Error", "Error message")33 report.Add("1", 26, "Error", "Error message")34 report.Add("1", 27, "Error", "Error

Full Screen

Full Screen

IsSuppressed

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 report := gosec.NewReport()4 fmt.Println(report.IsSuppressed("G104"))5 report.Add(gosec.NewIssue(gosec.NewRule("G104", "CWE", "Description", "Severity", gosec.High, false), "test.go", 1))6 fmt.Println(report.IsSuppressed("G104"))7 report.Add(gosec.NewIssue(gosec.NewRule("G104", "CWE", "Description", "Severity", gosec.High, true), "test.go", 1))8 fmt.Println(report.IsSuppressed("G104"))9}

Full Screen

Full Screen

IsSuppressed

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 rule := rules.NewRuleInfo(1, "test", "test", "test", rules.High, "test")4 rule.Tags = []string{}5 rule.Tags = append(rule.Tags, "test")6 rule.Tags = append(rule.Tags, "test")7 rule.Tags = append(rule.Tag

Full Screen

Full Screen

IsSuppressed

Using AI Code Generation

copy

Full Screen

1func main(){2 r := report.NewReport()3 if r.IsSuppressed() {4 fmt.Println("Report is suppressed")5 }6}

Full Screen

Full Screen

IsSuppressed

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 err := errors.New("Error: Division by zero")4 err1 := errors.New("Error: Division by zero")5 fmt.Println(err.IsSuppressed(err1))6}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful