Blame view

framework/tests/forms/FileFieldTest.php 1.99 KB
385d70ca   Administrator   Importers CRUD
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  <?php
  /**
   * @package framework
   * @subpackage tests
   */
  class FileFieldTest extends FunctionalTest {
  
  	/** 
  	 * Test a valid upload of a required file in a form. Error is set to 0, as the upload went well 
  	 */
  	public function testUploadRequiredFile() {
  		$form = new Form(
  			new Controller(),
  			'Form',
  			new FieldList(
  				$fileField = new FileField('cv', 'Upload your CV')
  			),
  			new FieldList()
  		);
  		$fileFieldValue = array(
  			'name' => 'aCV.txt',
  			'type' => 'application/octet-stream',
  			'tmp_name' => '/private/var/tmp/phpzTQbqP',
  			'error' => 0,
  			'size' => 3471
  		);
  		$fileField->setValue($fileFieldValue);
  	
  		$this->assertTrue(
  			$form->validate()
  		);
  	}
  
  	/**
  	 * Test different scenarii for a failed upload : an error occured, no files where provided
  	 */
  	public function testUploadMissingRequiredFile() {
  		$form = new Form(
  			new Controller(),
  			'Form',
  			new FieldList(
  				$fileField = new FileField('cv', 'Upload your CV')
  			),
  			new FieldList(),
  			new RequiredFields('cv')
  		);
  		// All fields are filled but for some reason an error occured when uploading the file => fails
  		$fileFieldValue = array(
  			'name' => 'aCV.txt',
  			'type' => 'application/octet-stream',
  			'tmp_name' => '/private/var/tmp/phpzTQbqP',
  			'error' => 1,
  			'size' => 3471
  		);
  		$fileField->setValue($fileFieldValue);
  	
  		$this->assertFalse(
  			$form->validate(),
  			'An error occured when uploading a file, but the validator returned true'
  		);
  	
  		// We pass an empty set of parameters for the uploaded file => fails
  		$fileFieldValue = array();
  		$fileField->setValue($fileFieldValue);
  	
  		$this->assertFalse(
  			$form->validate(),
  			'An empty array was passed as parameter for an uploaded file, but the validator returned true'
  		);
  	
  		// We pass an null value for the uploaded file => fails
  		$fileFieldValue = null;
  		$fileField->setValue($fileFieldValue);
  	
  		$this->assertFalse(
  			$form->validate(),
  			'A null value was passed as parameter for an uploaded file, but the validator returned true'
  		);
  	}
  }