omar2535/GraphQLer

View on GitHub
graphqler/fuzzer/fengine/materializers/getter.py

Summary

Maintainability
B
6 hrs
Test Coverage

Function get_random_scalar has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

    def get_random_scalar(self, input_name: str, scalar_type: str, objects_bucket: ObjectsBucket) -> str:
        """Gets a random scalar based on the scalar type, the return value will
           be a string regardless if of it's type as this function meant to be used
           during materialization
        Args:
Severity: Minor
Found in graphqler/fuzzer/fengine/materializers/getter.py - About 2 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

Avoid too many return statements within this function.
Open

            return self.get_random_date(input_name)
Severity: Major
Found in graphqler/fuzzer/fengine/materializers/getter.py - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                return self.get_random_id(input_name, objects_bucket)
    Severity: Major
    Found in graphqler/fuzzer/fengine/materializers/getter.py - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

                      return self.get_random_time(input_name)
      Severity: Major
      Found in graphqler/fuzzer/fengine/materializers/getter.py - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                        return self.get_random_datetime(input_name)
        Severity: Major
        Found in graphqler/fuzzer/fengine/materializers/getter.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                          return self.get_random_long(input_name)
          Severity: Major
          Found in graphqler/fuzzer/fengine/materializers/getter.py - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                            return self.get_random_json(input_name)
            Severity: Major
            Found in graphqler/fuzzer/fengine/materializers/getter.py - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                              return "null"
              Severity: Major
              Found in graphqler/fuzzer/fengine/materializers/getter.py - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                                return str(1)
                Severity: Major
                Found in graphqler/fuzzer/fengine/materializers/getter.py - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                                  return str(self.get_random_id(input_name, objects_bucket))
                  Severity: Major
                  Found in graphqler/fuzzer/fengine/materializers/getter.py - About 30 mins to fix

                    There are no issues that match your filters.

                    Category
                    Status