NeuraLegion/cypress-har-generator

View on GitHub

Showing 17 of 33 total issues

File NetworkRequest.ts has 606 lines of code (exceeds 500 allowed). Consider refactoring.
Open

import { CookieParser } from './CookieParser';
import { NetworkCookie } from './NetworkCookie';
import { StringUtils } from '../utils/StringUtils';
import type { RequestExtraInfo, ResponseExtraInfo } from './ExtraInfoBuilder';
import type { Header, Param, QueryString } from 'har-format';
Severity: Major
Found in src/network/NetworkRequest.ts - About 4 hrs to fix

    Function buildTimings has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

      private buildTimings(): Timings {
        const timing = this.request.timing;
        const issueTime: number = this.request.issueTime;
        const startTime: number = this.request.startTime;
    
    
    Severity: Minor
    Found in src/network/EntryBuilder.ts - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function buildTimings has 69 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      private buildTimings(): Timings {
        const timing = this.request.timing;
        const issueTime: number = this.request.issueTime;
        const startTime: number = this.request.startTime;
    
    
    Severity: Major
    Found in src/network/EntryBuilder.ts - About 2 hrs to fix

      Function setupNodeEvents has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          setupNodeEvents(
            on: Cypress.PluginEvents,
            _: Cypress.PluginConfigOptions
          ): void {
            install(on);
      Severity: Minor
      Found in cypress.config.ts - About 1 hr to fix

        Function updateNetworkRequestWithResponse has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          private updateNetworkRequestWithResponse(
            networkRequest: NetworkRequest,
            response: Protocol.Network.Response
          ): void {
            if (response.url && networkRequest.url !== response.url) {
        Severity: Minor
        Found in src/network/NetworkObserver.ts - About 1 hr to fix

          Function requestWillBeSent has 31 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            public requestWillBeSent({
              type,
              loaderId,
              initiator,
              redirectResponse,
          Severity: Minor
          Found in src/network/NetworkObserver.ts - About 1 hr to fix

            Function build has 29 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              public async build(): Promise<Entry> {
                let serverIPAddress: string = this.request.remoteAddress;
            
                const portPositionInString: number = serverIPAddress.lastIndexOf(':');
            
            
            Severity: Minor
            Found in src/network/EntryBuilder.ts - About 1 hr to fix

              Function updateNetworkRequestWithResponse has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                private updateNetworkRequestWithResponse(
                  networkRequest: NetworkRequest,
                  response: Protocol.Network.Response
                ): void {
                  if (response.url && networkRequest.url !== response.url) {
              Severity: Minor
              Found in src/network/NetworkObserver.ts - About 55 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function addExtraResponseInfo has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                public addExtraResponseInfo(extraResponseInfo: ResponseExtraInfo): void {
                  this.responseHeaders = extraResponseInfo.responseHeaders;
              
                  if (extraResponseInfo.responseHeadersText) {
                    this.responseHeadersText = extraResponseInfo.responseHeadersText;
              Severity: Minor
              Found in src/network/NetworkRequest.ts - About 55 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function escapeCharacters has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                public static escapeCharacters(
                  str: string,
                  chars: string = '^[]{}()\\\\.$*+?|'
                ): string {
                  let foundChar = false;
              Severity: Minor
              Found in src/utils/StringUtils.ts - About 35 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function requestWillBeSent has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                public requestWillBeSent({
                  type,
                  loaderId,
                  initiator,
                  redirectResponse,
              Severity: Minor
              Found in src/network/NetworkObserver.ts - About 35 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function saveHar has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                public async saveHar(options: SaveOptions): Promise<void> {
                  if (!this.supported) {
                    return;
                  }
              
              
              Severity: Minor
              Found in src/Plugin.ts - About 35 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Avoid too many return statements within this function.
              Open

                  return this.parseMultipartFormDataParameters(formData, boundary);
              Severity: Major
              Found in src/network/NetworkRequest.ts - About 30 mins to fix

                Function setupNodeEvents has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                    setupNodeEvents(
                      on: Cypress.PluginEvents,
                      _: Cypress.PluginConfigOptions
                    ): void {
                      install(on);
                Severity: Minor
                Found in cypress.config.ts - About 25 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Function parseSetCookie has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                  public parseSetCookie(setCookieHeader: string): NetworkCookie[] | undefined {
                    this._initialize(setCookieHeader);
                
                    for (let kv = this._extractKeyValue(); kv; kv = this._extractKeyValue()) {
                      if (this._lastCookie) {
                Severity: Minor
                Found in src/network/CookieParser.ts - About 25 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Function parseFormParameters has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                  private async parseFormParameters(): Promise<Param[]> {
                    if (
                      this.requestContentType?.match(
                        /^application\/x-www-form-urlencoded\s*(;.*)?$/i
                      )
                Severity: Minor
                Found in src/network/NetworkRequest.ts - About 25 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Function parseCookie has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                  public parseCookie(cookieHeader: string): NetworkCookie[] | undefined {
                    this._initialize(cookieHeader);
                
                    for (let kv = this._extractKeyValue(); kv; kv = this._extractKeyValue()) {
                      if (kv.key.charAt(0) === '$' && this._lastCookie) {
                Severity: Minor
                Found in src/network/CookieParser.ts - About 25 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Severity
                Category
                Status
                Source
                Language