File: MongoMemTest.php

package info (click to toggle)
php-mongo 1.5.7-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,040 kB
  • ctags: 2,802
  • sloc: ansic: 17,632; xml: 2,195; php: 1,630; pascal: 330; makefile: 52; sh: 39
file content (129 lines) | stat: -rw-r--r-- 3,392 bytes parent folder | download | duplicates (2)
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
<?php
class MongoMemTest extends PHPUnit_Framework_TestCase
{
    public function testLastError2() {
      $m = new Mongo();
      $db = $m->selectDB('db');
      $mem = memory_get_usage(true);
      for ($i=0;$i<10000;$i++) {
        $db->lastError();
      }
      $this->assertEquals($mem, memory_get_usage(true));
    }
    
    public function testPrevError2() {
      $m = new Mongo();
      $db = $m->selectDB('db');
      $mem = memory_get_usage(true);
      for ($i=0;$i<10000;$i++) {
        $db->prevError();
      }
      $this->assertEquals($mem, memory_get_usage(true));
    }

    public function testResetError2() {
      $m = new Mongo();
      $db = $m->selectDB('db');
      $mem = memory_get_usage(true);
      for ($i=0;$i<10000;$i++) {
        $db->resetError();
      }
      $this->assertEquals($mem, memory_get_usage(true));
    }

    public function testForceError2() {
      $m = new Mongo();
      $db = $m->selectDB('db');
      $mem = memory_get_usage(true);
      for ($i=0;$i<10000;$i++) {
        $db->forceError();
      }
      $this->assertEquals($mem, memory_get_usage(true));
    }

    public function testSelectDB() {
      $m = new Mongo();
      $mem = memory_get_usage(true);
      for ($i=0;$i<10000;$i++) {
        $m->selectDB("phpunit");
      }
      $this->assertEquals($mem, memory_get_usage(true));
    }

    public function testSelectCollection() {
      $m = new Mongo();
      $mem = memory_get_usage(true);
      for ($i=0;$i<10000;$i++) {
        $m->selectCollection("phpunit", "bar");
      }
      $this->assertEquals($mem, memory_get_usage(true));
    }

    public function testDropDB() {
      $m = new Mongo();
      $mem = memory_get_usage(true);
      for ($i=0;$i<10000;$i++) {
        $m->dropDB("phpunit");
      }
      $this->assertEquals($mem, memory_get_usage(true));

      $db = $m->selectDB("phpunit");
      for ($i=0;$i<10000;$i++) {
        $m->dropDB($db);
      }
    }

    public function testGetDBRef() {
      $m = new Mongo();
      $db = $m->selectDB("phpunit");
      $c = $db->selectCollection("bar");
      $obj = array("uid" => 0);
      $c->insert($obj);
      $ref=$c->createDBRef($obj);

      $mem = memory_get_usage(true);
      for ($i=0;$i<10000;$i++) {
        MongoDBRef::get($db, $ref);
      }
      $this->assertEquals($mem, memory_get_usage(true));
    }

    public function testCreateDBRef() {
      $m = new Mongo();
      $c = $m->selectCollection("phpunit", "bar");
      $obj = array("uid" => 0);
      $c->insert($obj);

      $mem = memory_get_usage(true);
      for ($i=0;$i<10000;$i++) {
        MongoDBRef::create("bar", $obj['_id']);
      }
      $this->assertEquals($mem, memory_get_usage(true));
    }

    public function testEnsureIndex() {
      $m = new Mongo();
      $c = $m->selectCollection("phpunit", "bar");
      $mem = memory_get_usage(true);
      for ($i=0; $i<10000; $i++) {
        $c->deleteIndexes();
      }
      $this->assertEquals($mem, memory_get_usage(true));
    }

    public function testCursorCount() {
      $m = new Mongo();
      $c = $m->selectCollection("phpunit", "bar");
      $c->insert(array("foo" => "bar"));
      $c->insert(array("foo" => "bar"));
      $mem = memory_get_usage(true);
      for ($i=0; $i<10000; $i++) {
        $c->find()->count();
      }
      $this->assertEquals($mem, memory_get_usage(true));
    }
    
}

?>