aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/lib/classes/UpdateinformationClassTest.php
blob: ba2c5a19345b12fffb740f9f4260f0dec90d20f2 (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
<?php

/*
 * Copyright (C) 2011 - Rasmus Fuhse <fuhse@data-quest.de>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 */


class UpdateInformationCase extends \Codeception\Test\Unit
{

    function setUp() {
    }


    function tearDown() {
    }


    function test_setgetinformation() {
        $old_data = ['test' => "TestValue"];
        UpdateInformation::setInformation("test.myfunc", $old_data);
        UpdateInformation::setInformation("test.myfunc2", "strangedata");
        $new_data = UpdateInformation::getInformation();
        $this->assertInternalType("array", $new_data);
        $this->assertInternalType("array", $new_data['test.myfunc']);
        $this->assertInternalType("string", $new_data['test.myfunc2']);
        $this->assertEquals("TestValue", $new_data['test.myfunc']['test']);
        $this->assertEquals("strangedata", $new_data['test.myfunc2']);
    }

    //kann man nicht automatischtesten, da abhängig von $_SERVER
    //function test_iscollecting() {}
}