blob: d91c17e556d85b9ff9446aa061601c5bff790d5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?php
declare(strict_types=1);
namespace Drupal\Tests\file\Kernel;
use Drupal\Core\Form\FormInterface;
use Drupal\Core\Form\FormState;
use Drupal\Core\Form\FormStateInterface;
/**
* Managed file element test.
*
* @group file
*
* @see \Drupal\file\Element\ManagedFile
*/
class ManagedFileTest extends FileManagedUnitTestBase implements FormInterface {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'form_test_managed_file';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form['managed_file'] = [
'#type' => 'managed_file',
];
return $form;
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {}
/**
* Tests that managed file elements can be programmatically submitted.
*/
public function testManagedFileElement(): void {
$form_state = new FormState();
$values['managed_file'] = NULL;
$form_state->setValues($values);
$this->container->get('form_builder')->submitForm($this, $form_state);
// Should submit without any errors.
$this->assertEquals(0, count($form_state->getErrors()));
}
}
|