Jacek Kowalski
2013-09-05 0868e0642f694bf5c08951f67f5a4b7eadde041a
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
class BotSessionTest extends PHPUnit_Framework_TestCase {
    function testSessionFolder() {
        $dbFolder = dirname(__FILE__).'/../../database';
        
        $this->assertTrue(is_writable($dbFolder));
        $this->assertTrue(count(glob($dbFolder.'/*.sqlite')) == 0);
    }
    
    /**
     * @depends testSessionFolder
     */
    function testPullEmpty() {
        $dbFolder = dirname(__FILE__).'/../../database';
        
        $session = new BotSession('test://user1@test');
        $session->setClass('test');
        
        $this->assertEquals(array(), $session->pull());
        $this->assertTrue(count(glob($dbFolder.'/*.sqlite')) == 1);
    }
    
    /**
     * @depends testPullEmpty
     * @expectedException Exception
     */
    function testSetClass() {
        $session = new BotSession('test://user1');
        $session->pull();
    }
    
    /**
     * @depends testPullEmpty
     */
    function testLegacyImport() {
        $dbFolder = dirname(__FILE__).'/../../database';
        $oldDbFolder = $dbFolder = dirname(__FILE__).'/../../db';
        
        $data = array('test' => true, 'other' => 'yes, sir!');
        $data_serialized = serialize($data);
        
        $this->assertTrue(mkdir($oldDbFolder));
        $this->assertTrue(is_writable($oldDbFolder));
        $this->assertTrue(mkdir($oldDbFolder.'/test'));
        
        $filename = $oldDbFolder.'/test/testUser.ggdb';
        $this->assertEquals(strlen($data_serialized), file_put_contents($filename, $data_serialized));
        $this->assertEquals($data_serialized, file_get_contents($filename));
        
        $session = new BotSession('test://testUser@test');
        $session->setClass('test');
        
        $this->assertTrue(isset($session->test));
        $this->assertEquals($data, $session->pull());
        
        $this->assertFalse(file_exists($filename));
        $this->assertTrue(rmdir($oldDbFolder.'/test'));
        $this->assertTrue(rmdir($oldDbFolder));
    }
    
    /**
     * @depends testPullEmpty
     */
    function testManualExample() {
        $session = new BotSession('test://user1@test');
        $session->setClass('test');
        
        // Ustawienie pojedynczej wartości
        $session->zmienna = 'To jest test';
        $this->assertTrue(isset($session->zmienna));
        $this->assertEquals('To jest test', $session->zmienna);
        
        // Usunięcie pojedynczej wartości
        unset($session->zmienna);
        $this->assertFalse(isset($session->zmienna));
        $this->assertEquals(NULL, $session->zmienna);
        
        // Ustawienie pojedynczej wartości ponownie
        $session->zmienna = 'To jest test';
        $this->assertTrue(isset($session->zmienna));
        $this->assertEquals('To jest test', $session->zmienna);
        
        // Usunięcie wszystkich danych
        $session->truncate();
        $this->assertFalse(isset($session->zmienna));
        $this->assertEquals(NULL, $session->zmienna);
        $this->assertEquals(array(), $session->pull());
 
        // Dopisanie (nadpisanie) danych
        $array = array(
            'zmienna' => 'To jest test2',
            'zmienna2' => new DateTime('2012-01-10')
        );
        $session->push($array);
 
        $this->assertEquals('To jest test2', $session->zmienna);
        $this->assertEquals($array, $session->pull());
        
        // push() nie usuwa istniejących danych
        $session->zmienna3 = '333';
        $session->push($array);
        $this->assertNotEquals($array, $session->pull());
        
        unset($this->session);
    }
    
    /**
     * @depends testManualExample
     */
    function testManualExample2() {
        $session = new BotSession('test://user1@test');
        $session->setClass('test');
        
        $array = array(
            'zmienna' => 'To jest test2',
            'zmienna2' => new DateTime('2012-01-10'),
            'zmienna3' => '333'
        );
        
        $this->assertEquals($array, $session->pull());
        
        
        $session->setClass('test2');
        $this->assertEquals(array(), $session->pull());
    }
    
    /**
     * @depends testManualExample2
     */
    function testCleanup() {
        $dbFolder = dirname(__FILE__).'/../../database';
        foreach(glob($dbFolder.'/*.sqlite') as $file) {
            unlink($file);
        }
    }
}