.dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php

Summary

Maintainability
F
2 wks
Test Coverage

File tpl_driver_yf_core_test.Test.php has 632 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

require_once __DIR__ . '/tpl__setup.php';

class tpl_driver_yf_core_test extends tpl_abstract
Severity: Major
Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php - About 1 day to fix

    tpl_driver_yf_core_test has 49 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class tpl_driver_yf_core_test extends tpl_abstract
    {
        public function return_true($out = '')
        {
            return $out ? (is_array($out) ? implode(',', $out) : $out) : 'true';
    Severity: Minor
    Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php - About 6 hrs to fix

      Method test_execute has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function test_execute()
          {
              $class = get_called_class();
              $method = 'return_true';
              $this->assertEquals('true', self::_tpl('{execute(' . $class . ',' . $method . ')}'));
      Severity: Minor
      Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php - About 1 hr to fix

        Method test_if_funcs_multiple has 29 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function test_if_funcs_multiple()
            {
                $data = ['name1' => '', 'name2' => 'something', 'name3' => '', 'name4' => 'other', 'name5' => '', 'name6' => 'gggggg'];
        
                $this->assertEquals('good', self::_tpl('{if_not_ok(name1,name3)}good{/if}', $data));
        Severity: Minor
        Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php - About 1 hr to fix

          Method test_avail_arrays has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function test_avail_arrays()
              {
                  // TODO: deep debug why
                  // For some reason it fails under current jenkins
                  if (getenv('CI') === 'jenkins') {
          Severity: Minor
          Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php - About 1 hr to fix

            Method test_foreach has 27 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function test_foreach()
                {
                    $data2 = [
                        5 => ['name' => 'name1', 'age' => 21],
                        6 => ['name' => 'name2', 'age' => 22],
            Severity: Minor
            Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php - About 1 hr to fix

              Method test_complex_foreach has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function test_complex_foreach()
                  {
                      $data = [
                          'test_array_1' => ['One', 'Two', 'Three', 'Four'],
                          'test_array_2' => [
              Severity: Minor
              Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php - About 1 hr to fix

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                    public function test_foreach()
                    {
                        $data2 = [
                            5 => ['name' => 'name1', 'age' => 21],
                            6 => ['name' => 'name2', 'age' => 22],
                Severity: Major
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 4 days to fix
                .dev/tests/unit/tpl/tpl_driver_yf_foreach_test.Test.php on lines 11..40

                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 825.

                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

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                    public function test_avail_arrays()
                    {
                        // TODO: deep debug why
                        // For some reason it fails under current jenkins
                        if (getenv('CI') === 'jenkins') {
                Severity: Major
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 2 days to fix
                .dev/tests/unit/tpl/tpl_driver_yf_foreach_test.Test.php on lines 89..124

                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 504.

                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

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                    public function test_foreach_exec()
                    {
                        // Some magick here with DI container, we link to this class :-)
                        main()->modules['unittest2'] = $this;
                        $data = ['k1' => 'v1', 'k2' => 'v2'];
                Severity: Major
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 1 day to fix
                .dev/tests/unit/tpl/tpl_driver_yf_foreach_test.Test.php on lines 154..179

                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 325.

                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

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                    public function test_elseforeach()
                    {
                        $data = ['k1' => 'v1', 'k2' => 'v2'];
                        $this->assertEquals('no rows', self::_tpl('{foreach(data)} {_key}={_val} {elseforeach}no rows{/foreach}', []));
                        $this->assertEquals(' k1=v1  k2=v2 ', self::_tpl('{foreach(data)} {_key}={_val} {elseforeach}no rows{/foreach}', ['data' => $data]));
                Severity: Major
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 4 hrs to fix
                .dev/tests/unit/tpl/tpl_driver_yf_foreach_test.Test.php on lines 130..139

                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 182.

                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.
                Open

                    public function test_catch_complex()
                    {
                        $tpl_str = '
                            {catch(min_ext)}{if(debug_mode eq 0)}.min{/if}{/catch}
                            {if(css_framework eq "bs2" or css_framework eq "")}
                Severity: Major
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 4 hrs to fix
                .dev/tests/unit/tpl/tpl_driver_yf_bugs_test.Test.php on lines 67..81

                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 171.

                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.
                Open

                    public function test_css()
                    {
                        _class('assets')->clean_all();
                        $jqueryui_url = _class('assets')->get_asset('jquery-ui', 'css');
                        $this->assertNotEmpty($jqueryui_url);
                Severity: Major
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 3 hrs to fix
                .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php on lines 328..337

                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 157.

                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.
                Open

                    public function test_js()
                    {
                        _class('assets')->clean_all();
                        $jquery_url = _class('assets')->get_asset('jquery', 'js');
                        $this->assertNotEmpty($jquery_url);
                Severity: Major
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 3 hrs to fix
                .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php on lines 362..371

                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 157.

                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

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                    public function test_complex_foreach2()
                    {
                        $data = [
                            'test_array' => [
                                'One' => ['name' => 'First'],
                Severity: Major
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 2 hrs to fix
                .dev/tests/unit/tpl/tpl_driver_yf_foreach_test.Test.php on lines 74..88

                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 122.

                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.
                Open

                    public function test_if_conf()
                    {
                        conf('unit_test_conf_item2', '6');
                        $this->assertEquals(' ok ', self::_tpl('{if("conf.unit_test_conf_item2" eq "6")} ok {/if}'));
                        $this->assertEquals(' ok ', self::_tpl('{if( "conf.unit_test_conf_item2" eq "6" )} ok {/if}'));
                Severity: Minor
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 40 mins to fix
                .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php on lines 244..251

                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 93.

                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.
                Open

                    public function test_conf()
                    {
                        conf('unit_test_conf_item1', 'unit_val');
                        $this->assertEquals('unit_val', self::_tpl('{conf( "unit_test_conf_item1" )}'));
                        $this->assertEquals('unit_val', self::_tpl('{conf("unit_test_conf_item1" )}'));
                Severity: Minor
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 40 mins to fix
                .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php on lines 252..259

                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 93.

                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

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                        $data = [
                            'test_array_1' => ['One', 'Two', 'Three', 'Four'],
                            'test_array_2' => [
                                'One' => ['name' => 'First'],
                                'Two' => ['name' => 'Second'],
                Severity: Minor
                Found in .dev/tests/unit/tpl/tpl_driver_yf_core_test.Test.php and 1 other location - About 30 mins to fix
                .dev/tests/unit/tpl/tpl_driver_yf_foreach_test.Test.php on lines 48..59

                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 91.

                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