StoryScriptorg/StoryScript

View on GitHub
tests.py

Summary

Maintainability
A
2 hrs
Test Coverage

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

    def test_arithmatics(self):
        self.assertEqual(processor.execute("// Arithmatics test"), None)
        self.assertEqual(processor.execute("5 + 5 * 0"), 5)
        self.assertEqual(processor.execute("10 + 20 * 2"), 50)
        self.assertEqual(processor.execute("2 ** 2"), 4)  # (Exponentiation)
Severity: Minor
Found in tests.py - About 1 hr to fix

    Function test_other has 27 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def test_other(self):
            processor.syntax_highlighting("")
            processor.syntax_highlighting("\"Hello, world!\"")
            processor.syntax_highlighting("int a = 10 + 10")
            self.assertEqual(str(values.Number(5)), "5")
    Severity: Minor
    Found in tests.py - About 1 hr to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Invalid

          def test_ternary_operator(self):
              self.assertEqual(processor.execute("int d = 10"), None)
              self.assertEqual(
                  processor.execute(
                      '? d >= 10 : print ("a is more than or equal to 10") : print ("a is less than 10") :'
      Severity: Major
      Found in tests.py and 1 other location - About 1 hr to fix
      tests.py on lines 189..195

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 38.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Invalid

          def test_switch_case(self):
              self.assertEqual(processor.execute("float c = 20.0"), None)
              self.assertEqual(
                  processor.execute(
                      'switch c case 10.0 print ("The value of c is 10") break case 20.0 print ("The value of c is 20.") break end'
      Severity: Major
      Found in tests.py and 1 other location - About 1 hr to fix
      tests.py on lines 198..204

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 38.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      There are no issues that match your filters.

      Category
      Status