diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-22 11:54:45 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-22 11:54:45 -0400 |
commit | 8e3618f4128e419e1522e48ccec27082d30e4de4 (patch) | |
tree | bbde5afa42f544010b07d81f92892c0b2fc2bb4c /tests/units | |
parent | c9ba525bab06eff76b1d5fb8701848d0e3990122 (diff) |
Increase length of attachments file names (and truncate if really too long)
Diffstat (limited to 'tests/units')
-rw-r--r-- | tests/units/FileTest.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/units/FileTest.php b/tests/units/FileTest.php new file mode 100644 index 00000000..5e882fdb --- /dev/null +++ b/tests/units/FileTest.php @@ -0,0 +1,31 @@ +<?php + +require_once __DIR__.'/Base.php'; + +use Model\Task; +use Model\File; +use Model\TaskCreation; +use Model\Project; + +class FileTest extends Base +{ + public function testCreationFileNameTooLong() + { + $p = new Project($this->container); + $f = new File($this->container); + $tc = new TaskCreation($this->container); + + $this->assertEquals(1, $p->create(array('name' => 'test'))); + $this->assertEquals(1, $tc->create(array('project_id' => 1, 'title' => 'test'))); + + $this->assertTrue($f->create(1, 'test', '/tmp/foo', false, 10)); + $this->assertTrue($f->create(1, str_repeat('a', 1000), '/tmp/foo', false, 10)); + + $files = $f->getAll(1); + $this->assertNotEmpty($files); + $this->assertCount(2, $files); + + $this->assertEquals(str_repeat('a', 255), $files[0]['name']); + $this->assertEquals('test', $files[1]['name']); + } +} |