summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/AppControllerTest.php
blob: 82bd7ab9c5c907e4d5e623346f5c1be4bd9d7f15 (plain)
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
/**
 * ownCloud - News
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Alessandro Cosentino <cosenal@gmail.com>
 * @author Bernhard Posselt <dev@bernhard-posselt.com>
 * @copyright Alessandro Cosentino 2014
 * @copyright Bernhard Posselt 2014
 */

namespace OCA\News\Controller;


class AppControllerTest extends \PHPUnit_Framework_TestCase {

    private $appName;
    private $request;
    private $urlGenerator;
    private $appConfig;
    private $controller;
    private $configData;

    /**
     * Gets run before each test
     */
    public function setUp(){
        $this->appName = 'news';
        $this->request = $this->getMockBuilder(
            '\OCP\IRequest')
            ->disableOriginalConstructor()
            ->getMock();
        $this->urlGenerator = $this->getMockBuilder(
            '\OCP\IURLGenerator')
            ->disableOriginalConstructor()
            ->getMock();
        $this->appConfig = $this->getMockBuilder(
            '\OCA\News\Config\AppConfig')
            ->disableOriginalConstructor()
            ->getMock();

        $this->configData = [
            "name" => "AppTest",
            "id" => "apptest",
            "description" => "This is a test app",
            "homepage" => "https://github.com/owncloud/test"
        ];

        $this->controller = new AppController($this->appName, $this->request,
            $this->urlGenerator, $this->appConfig);
    }

    public function testManifest(){
        $this->appConfig->expects($this->once())
            ->method('getConfig')
            ->will($this->returnValue($this->configData));
        $result = $this->controller->manifest();
        $this->assertEquals($result['name'],
            $this->configData['name']);
        $this->assertEquals($result['description'],
            $this->configData['description']);
        $this->assertEquals($result['developer']['url'],
            $this->configData['homepage']);
    }

}