forked from mongodb/laravel-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConnectionTest.php
182 lines (152 loc) · 5.77 KB
/
ConnectionTest.php
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?php
declare(strict_types=1);
use Illuminate\Support\Facades\DB;
use Jenssegers\Mongodb\Collection;
use Jenssegers\Mongodb\Connection;
use Jenssegers\Mongodb\Query\Builder;
use Jenssegers\Mongodb\Schema\Builder as SchemaBuilder;
use MongoDB\Client;
use MongoDB\Database;
class ConnectionTest extends TestCase
{
public function testConnection()
{
$connection = DB::connection('mongodb');
$this->assertInstanceOf(Connection::class, $connection);
}
public function testReconnect()
{
$c1 = DB::connection('mongodb');
$c2 = DB::connection('mongodb');
$this->assertEquals(spl_object_hash($c1), spl_object_hash($c2));
$c1 = DB::connection('mongodb');
DB::purge('mongodb');
$c2 = DB::connection('mongodb');
$this->assertNotEquals(spl_object_hash($c1), spl_object_hash($c2));
}
public function testDb()
{
$connection = DB::connection('mongodb');
$this->assertInstanceOf(Database::class, $connection->getMongoDB());
$this->assertInstanceOf(Client::class, $connection->getMongoClient());
}
public function dataConnectionConfig(): Generator
{
yield 'Single host' => [
'expectedUri' => 'mongodb://some-host',
'expectedDatabaseName' => 'tests',
'config' => [
'host' => 'some-host',
'database' => 'tests',
],
];
yield 'Host and port' => [
'expectedUri' => 'mongodb://some-host:12345',
'expectedDatabaseName' => 'tests',
'config' => [
'host' => 'some-host',
'port' => 12345,
'database' => 'tests',
],
];
yield 'Port in host name takes precedence' => [
'expectedUri' => 'mongodb://some-host:12345',
'expectedDatabaseName' => 'tests',
'config' => [
'host' => 'some-host:12345',
'port' => 54321,
'database' => 'tests',
],
];
yield 'Multiple hosts' => [
'expectedUri' => 'mongodb://host-1,host-2',
'expectedDatabaseName' => 'tests',
'config' => [
'host' => ['host-1', 'host-2'],
'database' => 'tests',
],
];
yield 'Multiple hosts with same port' => [
'expectedUri' => 'mongodb://host-1:12345,host-2:12345',
'expectedDatabaseName' => 'tests',
'config' => [
'host' => ['host-1', 'host-2'],
'port' => 12345,
'database' => 'tests',
],
];
yield 'Multiple hosts with port' => [
'expectedUri' => 'mongodb://host-1:12345,host-2:54321',
'expectedDatabaseName' => 'tests',
'config' => [
'host' => ['host-1:12345', 'host-2:54321'],
'database' => 'tests',
],
];
yield 'DSN takes precedence over host/port config' => [
'expectedUri' => 'mongodb://some-host:12345/auth-database',
'expectedDatabaseName' => 'tests',
'config' => [
'dsn' => 'mongodb://some-host:12345/auth-database',
'host' => 'wrong-host',
'port' => 54321,
'database' => 'tests',
],
];
yield 'Database is extracted from DSN if not specified' => [
'expectedUri' => 'mongodb://some-host:12345/tests',
'expectedDatabaseName' => 'tests',
'config' => [
'dsn' => 'mongodb://some-host:12345/tests',
],
];
}
/** @dataProvider dataConnectionConfig */
public function testConnectionConfig(string $expectedUri, string $expectedDatabaseName, array $config): void
{
$connection = new Connection($config);
$client = $connection->getMongoClient();
$this->assertSame($expectedUri, (string) $client);
$this->assertSame($expectedDatabaseName, $connection->getMongoDB()->getDatabaseName());
}
public function testConnectionWithoutConfiguredDatabase(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Database is not properly configured.');
new Connection(['dsn' => 'mongodb://some-host']);
}
public function testCollection()
{
$collection = DB::connection('mongodb')->getCollection('unittest');
$this->assertInstanceOf(Collection::class, $collection);
$collection = DB::connection('mongodb')->collection('unittests');
$this->assertInstanceOf(Builder::class, $collection);
$collection = DB::connection('mongodb')->table('unittests');
$this->assertInstanceOf(Builder::class, $collection);
}
public function testQueryLog()
{
DB::enableQueryLog();
$this->assertCount(0, DB::getQueryLog());
DB::collection('items')->get();
$this->assertCount(1, DB::getQueryLog());
DB::collection('items')->insert(['name' => 'test']);
$this->assertCount(2, DB::getQueryLog());
DB::collection('items')->count();
$this->assertCount(3, DB::getQueryLog());
DB::collection('items')->where('name', 'test')->update(['name' => 'test']);
$this->assertCount(4, DB::getQueryLog());
DB::collection('items')->where('name', 'test')->delete();
$this->assertCount(5, DB::getQueryLog());
}
public function testSchemaBuilder()
{
$schema = DB::connection('mongodb')->getSchemaBuilder();
$this->assertInstanceOf(SchemaBuilder::class, $schema);
}
public function testDriverName()
{
$driver = DB::connection('mongodb')->getDriverName();
$this->assertEquals('mongodb', $driver);
}
}