File: UploadPhoto.php

package info (click to toggle)
roundcube 1.6.11%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 44,868 kB
  • sloc: javascript: 195,588; php: 76,818; sql: 3,150; sh: 2,882; pascal: 1,079; makefile: 234; xml: 93; perl: 73; ansic: 48; python: 21
file content (68 lines) | stat: -rw-r--r-- 2,424 bytes parent folder | download
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
<?php

namespace Roundcube\Tests\Actions\Contacts;

use Roundcube\Tests\ActionTestCase;
use Roundcube\Tests\OutputJsonMock;

/**
 * Test class to test rcmail_action_contacts_upload_photo
 */
class Actions_Contacts_UploadPhoto extends ActionTestCase
{
    /**
     * Test photo upload
     */
    function test_run()
    {
        $action = new \rcmail_action_contacts_upload_photo();
        $output = $this->initOutput(\rcmail_action::MODE_AJAX, 'contacts', 'upload-photo');

        $this->assertInstanceOf(\rcmail_action::class, $action);
        $this->assertTrue($action->checks());

        $_SERVER['REQUEST_METHOD'] = 'POST';

        // No files uploaded case
        $this->runAndAssert($action, OutputJsonMock::E_EXIT);

        $result = $output->getOutput();

        $this->assertSame(['Content-Type: application/json; charset=UTF-8'], $output->headers);
        $this->assertSame('upload-photo', $result['action']);
        $this->assertTrue(strpos($result['exec'], 'this.photo_upload_end();') !== false);

        // Upload a file
        $content = base64_decode(\rcmail_output::BLANK_GIF);
        $file    = $this->createTempFile($content);
        $_SESSION['contacts'] = null;
        $_FILES['_photo']     = [
            'name'     => 'test.gif',
            'type'     => 'image/gif',
            'tmp_name' => $file,
            'error'    => 0,
            'size'     => strlen($content),
        ];

        // Attachments handling plugins use move_uploaded_file() which does not work
        // here. We'll add a fake hook handler for our purposes.
        $rcmail = \rcmail::get_instance();
        $rcmail->plugins->register_hook('attachment_upload', function($att) {
            $att['status'] = true;
            $att['id']     = 'fake';
            return $att;
        });

        $this->runAndAssert($action, OutputJsonMock::E_EXIT);

        $result = $output->getOutput();
        $this->assertSame(['Content-Type: application/json; charset=UTF-8'], $output->headers);
        $this->assertSame('upload-photo', $result['action']);
        $this->assertTrue(strpos($result['exec'], 'this.replace_contact_photo("fake");') !== false);
        $this->assertTrue(strpos($result['exec'], 'this.photo_upload_end();') !== false);

        $this->assertSame('test.gif', $_SESSION['contacts']['files']['fake']['name']);

        // TODO: Test invalid image format, upload errors handling
    }
}