Giter Site home page Giter Site logo

doduytrung / apigeelint Goto Github PK

View Code? Open in Web Editor NEW

This project forked from apigee/apigeelint

0.0 1.0 0.0 589 KB

Static code analysis for Apigee proxy bundles to encourage API developers to use best practices and avoid anti-patterns.

License: Apache License 2.0

JavaScript 100.00%

apigeelint's Introduction

apigeelint

Codacy Badge

Static code analysis for Apigee proxy bundles to encourage API developers to use best practices and avoid anti-patterns.

This utility is intended to capture the best practices knowledge from across Apigee including our Global Support Center team, Customer Success, Engineering, and our product team in a tool that will help developers create more scalable, performant, and stable API bundles using the Apigee DSL.

Status

At this point we are focused on plugin execution and modelling the various lintable assets including Bundles, Proxies, Targets, Flows, Steps, and Policies.

Plugins that test these abstractions are being developed concurrently.

Reporters (the means to report out results), Ingesters (bundle loaders) are to be developed with Filesystem being the only supported means of loading a bundle and all reporting now going to console.

Installation

Install using npm

npm install -g apigeelint

Usage

Run it using

apigeelint -s sampleProxy/ -f table.js

where -s points to the apiProxy source directory and -f is the output formatter desired.

Possible formats are "json.js" (the default), "stylish.js", "compact.js", "codeframe.js", "html.js", "table.js", "unix.js", "visualstudio.js", "checkstyle.js", "jslint-xml.js", "junit.js" and "tap.js".

Does this tool just lint or does it also check style?

This tool does both traditional linting (looking for problematic patterns) and style checking (enforcement of conventions). You can use it for both.

Tests

The test directory includes scripts to exercise a subset of rules. Overall linting can be tested with:

apigeelint -s ./test/sampleProxy/24Solver/apiproxy/

This sample includes many bad practices and as such generates a bit of noise.

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Rules

The list of rules is a work in progress and expected to increase over time. As product features change, rules will change as well. Linting and reporting will fall into one of the following broad categories:

Linter Status Code Name Description
Bundle        
  BN001 Bundle folder structure correctness. Bundles have a clear structure.
  BN002 Extraneous files. Ensure each folder contains appropriate resources in the bundle.
  BN003 Cache Coherence A bundle that includes cache reads should include cache writes with the same keys.
  BN004 Unused variables. Within a bundle variables created should be used in conditions, resource callouts, or policies.
  BN005 Unattached policies. Unattached policies are dead code and should be removed from production bundles.
  BN006 Bundle size - policies. Large bundles are a symptom of poor design. A high number of policies is predictive of an oversized bundle.
  BN007 Bundle size - resource callouts. Large bundles are a symptom of poor design. A high number of resource callouts is indicative of underutilizing out of the box Apigee policies.
  ◻️ BN008 IgnoreUnresolvedVariables and FaultRules Use of IgnoreUnresolvedVariables without the use of FaultRules may lead to unexpected errors.
  BN009 Statistics Collector - duplicate policies Warn on duplicate policies when no conditions are present or conditions are duplicates.
Proxy Definition        
  ◻️ PD001 RouteRules to Targets RouteRules should map to defined Targets
  PD002 Unreachable Route Rules - defaults Only one RouteRule should be present without a condition
  PD003 Unreachable Route Rules RouteRule without a condition should be last.
Target Definition        
  TD001 Mgmt Server as Target Discourage calls to the Management Server from a Proxy via target.
  ◻️ TD002 Use Target Servers Encourage the use of target servers
Flow        
  FL001 Unconditional Flows Only one unconditional flow will get executed. Error if more than one was detected.
Step        
  ST001 Empty Step Empty steps clutter the bundle.
Policy        
  PO001 JSON Threat Protection A check for a body element must be performed before policy execution.
  PO002 XML Threat Protection A check for a body element must be performed before policy execution.
  PO003 Extract Variables with JSONPayload A check for a body element must be performed before policy execution.
  PO004 Extract Variables with XMLPayload A check for a body element must be performed before policy execution.
  PO005 Extract Variables with FormParam A check for a body element must be performed before policy execution.
  ◻️ PO006 Policy Naming Conventions - default name Policy names should not be default.
  PO007 Policy Naming Conventions - type indication It is recommended that the policy name include an indicator of the policy type.
  PO008 Policy Name Attribute Conventions It is recommended that the policy name attribute match the display name of the policy.
  ◻️ PO009 Service Callout Target - Mgmt Server Targeting management server may result in higher than expected latency use with caution.
  ◻️ PO010 Service Callout Target - Target Server Encourage use of target servers.
  ◻️ PO011 Service Callout Target - Dynamic URLs Error on dynamic URLs in target server URL tag.
  ◻️ PO012 Service Callout Target - Script Target Node JSHint, ESLint.
  PO013 Resource Call Out - Javascript JSHint, ESLint.
  ◻️ PO014 Resource Call Out - Java PMD, Checkstyle.
  ◻️ PO015 Resource Call Out - Python Pylint.
  ◻️ PO016 Statistics Collector - duplicate variables Warn on duplicate variables.
  ◻️ PO017 Misconfigured - FaultRules/Fault Rule in Policy FaultRules are configured in ProxyEndpoints and TargetEndpoints.
  PO018 Regex Lookahead/Lookbehind are Expensive - Threat Protection Policy Regular expressions that include lookahead or lookbehind perform slowly on large payloads and are typically not required.
  PO019 Reserved words as variables - ServiceCallout Request Using "request" as the name of a Request may cause unexpected side effects.
  PO020 Reserved words as variables - ServiceCallout Response Using "response" as the name of a Response may cause unexpected side effects.
  ◻️ PO021 Statistics Collector - reserved variables Warn on insertion of duplicate variables.
  PO022 Nondistributed Quota When using nondistributed quota the number of allowed calls is influenced by the number of Message Processors (MPs) deployed. This may lead to higher than expected transactions for a given quota as MPs now autoscale.
  PO023 Quota Policy Reuse When the same Quota policy is used more than once you must ensure that the conditions of execution are mutually exclusive or that you intend for a call to count more than once per message processed.
  PO024 Cache Error Responses By default the ResponseCache policy will cache non 200 responses. Either create a condition or use policy configuration options to exclude non 200 responses.
FaultRules        
  FR001 No Condition on FaultRule It's not a best practice to have a FaultRule without an outer condition, which automatically makes the FaultRule true.
Conditional        
  CC001 Literals in Conditionals Warn on literals in any conditional statement.
  ◻️ CC002 Null Blank Checks Blank checks should also check for null conditions. (to be reviewed)
  CC003 Long condition statement Conditions should not be long.
  CC004 Overly complex condition Condition complexity should be limited to fix number of variables and conjunctions.
  CC006 Detect logical absurdities Conditions should not have internal logic conflicts - warn when these are detected.

From an implementation perspective the focus is on plugin support and flexibility over performance. Compute is cheap.

Disclaimer

This is not an officially supported Google product.

apigeelint's People

Contributors

davidwallen avatar apetrosian avatar swilliams11 avatar ssvaidyanathan avatar seanapigee avatar tomashe avatar maruti123 avatar dinochiesa avatar dwvd avatar aroptanov avatar billzabaronick avatar smolnikov avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.