Completed
Push — master ( a25b05...ef3e6d )
by Daniel
01:24
created

testConfigurableName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 17
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 17
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 11
nc 1
nop 0
1
<?php
2
3
/**
4
 * @package spamprotection
5
 */
6
class FormSpamProtectionExtensionTest extends SapphireTest
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
7
{
8
    protected $usesDatabase = false;
9
10
    /**
11
     * @var Form
12
     */
13
    protected $form = null;
14
    
15
    public function setUp()
16
    {
17
        parent::setUp();
18
19
        $this->form = new Form($this, 'Form', new FieldList(
0 ignored issues
show
Documentation introduced by
$this is of type this<FormSpamProtectionExtensionTest>, but the function expects a object<Controller>.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
20
            new TextField('Title'),
21
            new TextField('Comment'),
22
            new TextField('URL')
23
        ), new FieldList()
24
        );
25
        $this->form->disableSecurityToken();
26
    }
27
28
    public function testEnableSpamProtection()
29
    {
30
        Config::inst()->update(
31
            'FormSpamProtectionExtension', 'default_spam_protector',
32
            'FormSpamProtectionExtensionTest_FooProtector'
33
        );
34
35
        $form = $this->form->enableSpamProtection();
36
37
        $this->assertEquals('Foo', $form->Fields()->fieldByName('Captcha')->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
38
    }
39
40
    public function testEnableSpamProtectionCustomProtector()
41
    {
42
        $form = $this->form->enableSpamProtection(array(
43
            'protector' => 'FormSpamProtectionExtensionTest_BarProtector'
44
        ));
45
46
        $this->assertEquals('Bar', $form->Fields()->fieldByName('Captcha')->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
47
    }
48
49 View Code Duplication
    public function testEnableSpamProtectionCustomTitle()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
50
    {
51
        $form = $this->form->enableSpamProtection(array(
52
            'protector' => 'FormSpamProtectionExtensionTest_BarProtector',
53
            'title' => 'Baz',
54
        ));
55
        
56
        $this->assertEquals('Baz', $form->Fields()->fieldByName('Captcha')->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
57
    }
58
59 View Code Duplication
    public function testCustomOptions()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
60
    {
61
        $form = $this->form->enableSpamProtection(array(
62
            'protector' => 'FormSpamProtectionExtensionTest_BazProtector',
63
            'title' => 'Qux',
64
            'name' => 'Borris'
65
        ));
66
67
        $this->assertEquals('Qux', $form->Fields()->fieldByName('Borris')->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
68
    }
69
    
70
    public function testConfigurableName()
71
    {
72
        $field_name = "test_configurable_name";
73
        Config::inst()->update(
74
            'FormSpamProtectionExtension', 'default_spam_protector',
75
            'FormSpamProtectionExtensionTest_FooProtector'
76
        );
77
        Config::inst()->update(
78
            'FormSpamProtectionExtension', 'field_name',
79
            $field_name
80
        );
81
        $form = $this->form->enableSpamProtection();
82
        // remove for subsequent tests
83
        Config::inst()->remove('FormSpamProtectionExtension', 'field_name');
84
        // field should take up configured name
85
        $this->assertEquals('Foo', $form->Fields()->fieldByName($field_name)->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
86
    }
87
    
88 View Code Duplication
    public function testInsertBefore()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
89
    {
90
        $form = $this->form->enableSpamProtection(array(
91
            'protector' => 'FormSpamProtectionExtensionTest_FooProtector',
92
            'insertBefore' => 'URL'
93
        ));
94
        
95
        $fields = $form->Fields();
96
        $this->assertEquals('Title', $fields[0]->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
97
        $this->assertEquals('Comment', $fields[1]->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
98
        $this->assertEquals('Foo', $fields[2]->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
99
        $this->assertEquals('URL', $fields[3]->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
100
    }
101
    
102 View Code Duplication
    public function testInsertBeforeMissing()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
103
    {
104
        $form = $this->form->enableSpamProtection(array(
105
            'protector' => 'FormSpamProtectionExtensionTest_FooProtector',
106
            'insertBefore' => 'NotAField'
107
        ));
108
        
109
        // field should default to the end instead
110
        $fields = $form->Fields();
111
        $this->assertEquals('Title', $fields[0]->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
112
        $this->assertEquals('Comment', $fields[1]->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
113
        $this->assertEquals('URL', $fields[2]->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
114
        $this->assertEquals('Foo', $fields[3]->Title());
0 ignored issues
show
Bug introduced by
The method assertEquals() does not seem to exist on object<FormSpamProtectionExtensionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
115
    }
116
}
117
118
/**
119
 * @package spamprotection
120
 */
121 View Code Duplication
class FormSpamProtectionExtensionTest_BazProtector implements SpamProtector, TestOnly
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
Coding Style Compatibility introduced by
PSR1 recommends that each class should be in its own file to aid autoloaders.

Having each class in a dedicated file usually plays nice with PSR autoloaders and is therefore a well established practice. If you use other autoloaders, you might not want to follow this rule.

Loading history...
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
122
{
123
    public function getFormField($name = null, $title = null, $value = null)
124
    {
125
        return new TextField($name, $title, $value);
126
    }
127
128
    public function setFieldMapping($fieldMapping)
129
    {
130
    }
131
}
132
133
/**
134
 * @package spamprotection
135
 */
136 View Code Duplication
class FormSpamProtectionExtensionTest_BarProtector implements SpamProtector, TestOnly
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
Coding Style Compatibility introduced by
PSR1 recommends that each class should be in its own file to aid autoloaders.

Having each class in a dedicated file usually plays nice with PSR autoloaders and is therefore a well established practice. If you use other autoloaders, you might not want to follow this rule.

Loading history...
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
137
{
138
    public function getFormField($name = null, $title = null, $value = null)
139
    {
140
        $title = $title ?: 'Bar';
141
        return new TextField($name, $title, $value);
142
    }
143
144
    public function setFieldMapping($fieldMapping)
145
    {
146
    }
147
}
148
149
/**
150
 * @package spamprotection
151
 */
152 View Code Duplication
class FormSpamProtectionExtensionTest_FooProtector implements SpamProtector, TestOnly
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
Coding Style Compatibility introduced by
PSR1 recommends that each class should be in its own file to aid autoloaders.

Having each class in a dedicated file usually plays nice with PSR autoloaders and is therefore a well established practice. If you use other autoloaders, you might not want to follow this rule.

Loading history...
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
153
{
154
    public function getFormField($name = null, $title = null, $value = null)
155
    {
156
        return new TextField($name, 'Foo', $value);
157
    }
158
159
    public function setFieldMapping($fieldMapping)
160
    {
161
    }
162
}
163