SessionTestCase.class.php 14.2 KB
Newer Older
doctrine's avatar
doctrine committed
1 2 3
<?php
require_once("UnitTestCase.class.php");
class Doctrine_SessionTestCase extends Doctrine_UnitTestCase {
doctrine's avatar
doctrine committed
4

5
    public function testBuildFlushTree() {
doctrine's avatar
doctrine committed
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
        $correct = array("Task","Resource","Assignment");

        $task = new Task();

        $tree = $this->session->buildFlushTree(array("Task"));
        $this->assertEqual($tree,array("Resource","Task","Assignment"));

        $tree = $this->session->buildFlushTree(array("Task","Resource"));
        $this->assertEqual($tree,$correct);

        $tree = $this->session->buildFlushTree(array("Task","Assignment","Resource"));
        $this->assertEqual($tree,$correct);

        $tree = $this->session->buildFlushTree(array("Assignment","Task","Resource"));
        $this->assertEqual($tree,$correct);


        $correct = array("Forum_Category","Forum_Board","Forum_Thread");

        $tree = $this->session->buildFlushTree(array("Forum_Board"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Category","Forum_Board"));
        $this->assertEqual($tree, $correct);

        $correct = array("Forum_Category","Forum_Board","Forum_Thread","Forum_Entry");

        $tree = $this->session->buildFlushTree(array("Forum_Entry","Forum_Board"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Board","Forum_Entry"));
        $this->assertEqual($tree, $correct);

        $tree = $this->session->buildFlushTree(array("Forum_Thread","Forum_Board"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Board","Forum_Thread"));
        $this->assertEqual($tree, $correct);

        $tree = $this->session->buildFlushTree(array("Forum_Board","Forum_Thread","Forum_Entry"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Board","Forum_Entry","Forum_Thread"));
        $this->assertEqual($tree, $correct);

        $tree = $this->session->buildFlushTree(array("Forum_Entry","Forum_Board","Forum_Thread"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Entry","Forum_Thread","Forum_Board"));
        $this->assertEqual($tree, $correct);

        $tree = $this->session->buildFlushTree(array("Forum_Thread","Forum_Board","Forum_Entry"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Thread","Forum_Entry","Forum_Board"));
        $this->assertEqual($tree, $correct);


        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Board","Forum_Thread","Forum_Category"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Category","Forum_Thread","Forum_Board"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Thread","Forum_Board","Forum_Category"));
        $this->assertEqual($tree, $correct);

        $tree = $this->session->buildFlushTree(array("Forum_Board","Forum_Thread","Forum_Category","Forum_Entry"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Board","Forum_Thread","Forum_Entry","Forum_Category"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Board","Forum_Category","Forum_Thread","Forum_Entry"));
        $this->assertEqual($tree, $correct);

        $tree = $this->session->buildFlushTree(array("Forum_Entry","Forum_Thread","Forum_Board","Forum_Category"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Entry","Forum_Thread","Forum_Category","Forum_Board"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Entry","Forum_Category","Forum_Board","Forum_Thread"));
        $this->assertEqual($tree, $correct);

        $tree = $this->session->buildFlushTree(array("Forum_Thread","Forum_Category","Forum_Board","Forum_Entry"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Thread","Forum_Entry","Forum_Category","Forum_Board"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Thread","Forum_Board","Forum_Entry","Forum_Category"));
        $this->assertEqual($tree, $correct);

        $tree = $this->session->buildFlushTree(array("Forum_Category","Forum_Entry","Forum_Board","Forum_Thread"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Category","Forum_Thread","Forum_Entry","Forum_Board"));
        $this->assertEqual($tree, $correct);
        $tree = $this->session->buildFlushTree(array("Forum_Category","Forum_Board","Forum_Thread","Forum_Entry"));
        $this->assertEqual($tree, $correct);
93

doctrine's avatar
doctrine committed
94
    }
doctrine's avatar
doctrine committed
95

96 97 98 99 100 101 102 103 104
    public function testBulkInsert() {
        $u1 = new User();
        $u1->name = "Jean Reno";
        $u1->save();

        $id = $u1->getID();
        $u1->delete();

    }
105

doctrine's avatar
doctrine committed
106
    public function testFlush() {
107 108
        $user = $this->session->getTable("User")->find(4);
        $this->assertTrue(is_numeric($user->Phonenumber[0]->entity_id));
doctrine's avatar
doctrine committed
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

        $user    = $this->session->create("Email");
        $user    = $this->session->create("User");
        $record  = $this->session->create("Phonenumber");

        $user->Email->address = "example@drinkmore.info";
        $this->assertTrue($user->email_id instanceof Email);

        $user->name = "Example user";
        $user->Group[0]->name = "Example group 1";
        $user->Group[1]->name = "Example group 2";

        $user->Phonenumber[0]->phonenumber = "123 123";

        $user->Phonenumber[1]->phonenumber = "321 2132";
        $user->Phonenumber[2]->phonenumber = "123 123";
        $user->Phonenumber[3]->phonenumber = "321 2132";



        $this->assertTrue($user->Phonenumber[0]->entity_id instanceof User);
        $this->assertTrue($user->Phonenumber[2]->entity_id instanceof User);

        $this->session->flush();

doctrine's avatar
doctrine committed
134
        $this->assertTrue(is_numeric($user->Phonenumber[0]->entity_id));
doctrine's avatar
doctrine committed
135 136

        $this->assertEqual(count($user->Group), 2);
doctrine's avatar
doctrine committed
137
        $user2 = $user;
doctrine's avatar
doctrine committed
138

139
        $user = $this->objTable->find($user->getID());
doctrine's avatar
doctrine committed
140

doctrine's avatar
doctrine committed
141
        $this->assertEqual($user->getID(), $user2->getID());
doctrine's avatar
doctrine committed
142

doctrine's avatar
doctrine committed
143 144
        $this->assertTrue(is_numeric($user->getID()));
        $this->assertTrue(is_numeric($user->email_id));
doctrine's avatar
doctrine committed
145

doctrine's avatar
doctrine committed
146
        $this->assertTrue(is_numeric($user->Phonenumber[0]->entity_id));
doctrine's avatar
doctrine committed
147 148
        $this->assertTrue($user->Phonenumber->count(), 4);
        $this->assertEqual($user->Group->count(), 2);
doctrine's avatar
doctrine committed
149 150
        
        $this->assertTrue($this->dbh instanceof Doctrine_DB);
doctrine's avatar
doctrine committed
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172

        $user = $this->objTable->find(5);

        $pf   = $this->session->getTable("Phonenumber");

        $this->assertTrue($user->Phonenumber instanceof Doctrine_Collection);
        $this->assertTrue($user->Phonenumber->count() == 3);

        $coll = new Doctrine_Collection($pf);

        $user->Phonenumber = $coll;
        $this->assertTrue($user->Phonenumber->count() == 0);

        $this->session->flush();
        unset($user);
        $user = $this->objTable->find(5);

        $this->assertEqual($user->Phonenumber->count(), 0);

        // ADDING REFERENCES

        $user->Phonenumber[0]->phonenumber = "123 123";
doctrine's avatar
doctrine committed
173
        $this->assertTrue(is_numeric($user->Phonenumber[0]->entity_id));
doctrine's avatar
doctrine committed
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258

        $user->Phonenumber[1]->phonenumber = "123 123";
        $this->session->flush();


        $this->assertTrue($user->Phonenumber->count() == 2);

        unset($user);
        $user = $this->objTable->find(5);
        $this->assertEqual($user->Phonenumber->count(), 2);

        $user->Phonenumber[3]->phonenumber = "123 123";
        $this->session->flush();

        $this->assertTrue($user->Phonenumber->count() == 3);
        unset($user);
        $user = $this->objTable->find(5);
        $this->assertTrue($user->Phonenumber->count() == 3);

        // DELETING REFERENCES

        $user->Phonenumber->delete();

        $this->assertTrue($user->Phonenumber->count() == 0);
        unset($user);
        $user = $this->objTable->find(5);
        $this->assertTrue($user->Phonenumber->count() == 0);
        
        // ADDING REFERENCES WITH STRING KEYS

        $user->Phonenumber["home"]->phonenumber = "123 123";
        $user->Phonenumber["work"]->phonenumber = "444 444";

        $this->assertEqual($user->Phonenumber->count(), 2);
        $this->session->flush();

        $this->assertTrue($user->Phonenumber->count() == 2);
        unset($user);
        $user = $this->objTable->find(5);
        $this->assertTrue($user->Phonenumber->count() == 2);

        // REPLACING ONE-TO-MANY REFERENCE

        unset($coll);
        $coll = new Doctrine_Collection($pf);
        $coll[0]->phonenumber = "123 123";
        $coll["home"]->phonenumber = "444 444";
        $coll["work"]->phonenumber = "444 444";




        $user->Phonenumber = $coll;
        $this->session->flush();
        $this->assertEqual($user->Phonenumber->count(), 3);
        $user = $this->objTable->find(5);
        $this->assertEqual($user->Phonenumber->count(), 3);

        
        // ONE-TO-ONE REFERENCES

        $user->Email->address = "drinker@drinkmore.info";
        $this->assertTrue($user->Email instanceof Email);
        $this->session->flush();
        $this->assertTrue($user->Email instanceof Email);
        $user = $this->objTable->find(5);
        $this->assertEqual($user->Email->address, "drinker@drinkmore.info");
        $id = $user->Email->getID();

        // REPLACING ONE-TO-ONE REFERENCES

        $email = $this->session->create("Email");
        $email->address = "absolutist@nottodrink.com";
        $user->Email = $email;

        $this->assertTrue($user->Email instanceof Email);
        $this->assertEqual($user->Email->address, "absolutist@nottodrink.com");
        $this->session->flush();
        unset($user);

        $user = $this->objTable->find(5);
        $this->assertTrue($user->Email instanceof Email);
        $this->assertEqual($user->Email->address, "absolutist@nottodrink.com");
        
        $emails = $this->session->query("FROM Email WHERE Email.id = $id");
doctrine's avatar
doctrine committed
259
        //$this->assertEqual(count($emails),0);
doctrine's avatar
doctrine committed
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358


    }

    public function testGetManager() {
        $this->assertEqual($this->session->getManager(),$this->manager);
    }
    public function testQuery() {
        $this->assertTrue($this->session->query("FROM User") instanceof Doctrine_Collection);
    }

    public function testDelete() {
        $user = $this->session->create("User");
        $this->session->delete($user);
        $this->assertEqual($user->getState(),Doctrine_Record::STATE_TCLEAN);
    }
    public function testGetTable() {
        $table = $this->session->getTable("Group");
        $this->assertTrue($table instanceof Doctrine_Table);
        try {
            $table = $this->session->getTable("Unknown");
            $f = false;
        } catch(Doctrine_Exception $e) {
            $f = true;
        }
        $this->assertTrue($f);

        $table = $this->session->getTable("User");
        $this->assertTrue($table instanceof UserTable);

    }
    public function testCreate() {
        $email = $this->session->create("Email");
        $this->assertTrue($email instanceof Email);
    }
    public function testGetDBH() {
        $this->assertTrue($this->session->getDBH() instanceof PDO);
    }
    public function testCount() {
        $this->assertTrue(is_integer(count($this->session)));
    }
    public function testGetIterator() {
        $this->assertTrue($this->session->getIterator() instanceof ArrayIterator);
    }
    public function testGetState() {
        $this->assertEqual($this->session->getState(),Doctrine_Session::STATE_OPEN);
        $this->assertEqual(Doctrine_Lib::getSessionStateAsString($this->session->getState()), "open");
    }
    public function testGetTables() {
        $this->assertTrue(is_array($this->session->getTables()));
    }

    public function testTransactions() {

        $this->session->beginTransaction();
        $this->assertEqual($this->session->getState(),Doctrine_Session::STATE_ACTIVE);
        $this->session->commit();
        $this->assertEqual($this->session->getState(),Doctrine_Session::STATE_OPEN);

        $this->session->beginTransaction();
        
        $user = $this->objTable->find(6);
        
        $user->name = "Jack Daniels";
        $this->session->flush();
        $this->session->commit();

        $user = $this->objTable->find(6);
        $this->assertEqual($user->name, "Jack Daniels");

    }

    public function testRollback() {
        $this->session->beginTransaction();
        $this->assertEqual($this->session->getTransactionLevel(),1);
        $this->assertEqual($this->session->getState(),Doctrine_Session::STATE_ACTIVE);
        $this->session->rollback();
        $this->assertEqual($this->session->getState(),Doctrine_Session::STATE_OPEN);
        $this->assertEqual($this->session->getTransactionLevel(),0);
    }
    public function testNestedTransactions() {
        $this->assertEqual($this->session->getTransactionLevel(),0);
        $this->session->beginTransaction();
        $this->assertEqual($this->session->getTransactionLevel(),1);
        $this->assertEqual($this->session->getState(),Doctrine_Session::STATE_ACTIVE);
        $this->session->beginTransaction();
        $this->assertEqual($this->session->getState(),Doctrine_Session::STATE_BUSY);
        $this->assertEqual($this->session->getTransactionLevel(),2);
        $this->session->commit();
        $this->assertEqual($this->session->getState(),Doctrine_Session::STATE_ACTIVE);
        $this->assertEqual($this->session->getTransactionLevel(),1);
        $this->session->commit();
        $this->assertEqual($this->session->getState(),Doctrine_Session::STATE_OPEN);
        $this->assertEqual($this->session->getTransactionLevel(),0);
    }
    public function testClear() {
        $this->session->clear();
        $this->assertEqual($this->session->getTables(), array());
    }
doctrine's avatar
doctrine committed
359

doctrine's avatar
doctrine committed
360 361
}
?>