FunctionalTestCase.php 15.1 KB
Newer Older
1 2 3 4
<?php

namespace MongoDB\Tests;

5 6
use InvalidArgumentException;
use MongoDB\BSON\ObjectId;
7
use MongoDB\Driver\Command;
8
use MongoDB\Driver\Exception\CommandException;
9
use MongoDB\Driver\Manager;
10
use MongoDB\Driver\Query;
11
use MongoDB\Driver\ReadPreference;
12
use MongoDB\Driver\Server;
13 14
use MongoDB\Driver\WriteConcern;
use MongoDB\Operation\CreateCollection;
15
use MongoDB\Operation\DatabaseCommand;
16
use MongoDB\Operation\DropCollection;
17
use stdClass;
18
use Symfony\Bridge\PhpUnit\SetUpTearDownTrait;
19
use UnexpectedValueException;
20 21 22 23 24 25 26 27 28 29 30 31
use function array_merge;
use function count;
use function current;
use function explode;
use function implode;
use function is_array;
use function is_object;
use function is_string;
use function key;
use function parse_url;
use function preg_match;
use function version_compare;
32 33 34

abstract class FunctionalTestCase extends TestCase
{
35 36
    use SetUpTearDownTrait;

37
    /** @var Manager */
38 39
    protected $manager;

40
    /** @var array */
41 42
    private $configuredFailPoints = [];

43
    private function doSetUp()
44
    {
45 46
        parent::setUp();

47
        $this->manager = new Manager(static::getUri());
48 49 50
        $this->configuredFailPoints = [];
    }

51
    private function doTearDown()
52 53 54 55
    {
        $this->disableFailPoints();

        parent::tearDown();
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
    public static function getUri($allowMultipleMongoses = false)
    {
        $uri = parent::getUri();

        if ($allowMultipleMongoses) {
            return $uri;
        }

        $urlParts = parse_url($uri);
        if ($urlParts === false) {
            return $uri;
        }

        // Only modify URIs using the mongodb scheme
        if ($urlParts['scheme'] !== 'mongodb') {
            return $uri;
        }

        $hosts = explode(',', $urlParts['host']);
        $numHosts = count($hosts);
        if ($numHosts === 1) {
            return $uri;
        }

        $manager = new Manager($uri);
        if ($manager->selectServer(new ReadPreference(ReadPreference::RP_PRIMARY))->getType() !== Server::TYPE_MONGOS) {
            return $uri;
        }

        // Re-append port to last host
        if (isset($urlParts['port'])) {
            $hosts[$numHosts-1] .= ':' . $urlParts['port'];
        }

92
        $parts = ['mongodb://'];
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

        if (isset($urlParts['user'], $urlParts['pass'])) {
            $parts += [
                $urlParts['user'],
                ':',
                $urlParts['pass'],
                '@',
            ];
        }

        $parts[] = $hosts[0];

        if (isset($urlParts['path'])) {
            $parts[] = $urlParts['path'];
        }
        if (isset($urlParts['query'])) {
109
            $parts = array_merge($parts, [
110
                '?',
111
                $urlParts['query'],
112
            ]);
113 114 115 116 117
        }

        return implode('', $parts);
    }

118
    protected function assertCollectionCount($namespace, $count)
119 120 121
    {
        list($databaseName, $collectionName) = explode('.', $namespace, 2);

Jeremy Mikola's avatar
Jeremy Mikola committed
122 123
        $cursor = $this->manager->executeCommand($databaseName, new Command(['count' => $collectionName]));
        $cursor->setTypeMap(['root' => 'array', 'document' => 'array']);
124
        $document = current($cursor->toArray());
125

126 127 128 129
        $this->assertArrayHasKey('n', $document);
        $this->assertEquals($count, $document['n']);
    }

130
    protected function assertCommandSucceeded($document)
131
    {
132
        $document = is_object($document) ? (array) $document : $document;
133

134 135 136
        $this->assertArrayHasKey('ok', $document);
        $this->assertEquals(1, $document['ok']);
    }
137

138
    protected function assertSameObjectId($expectedObjectId, $actualObjectId)
139
    {
140 141
        $this->assertInstanceOf(ObjectId::class, $expectedObjectId);
        $this->assertInstanceOf(ObjectId::class, $actualObjectId);
142
        $this->assertEquals((string) $expectedObjectId, (string) $actualObjectId);
143 144
    }

145 146 147 148 149 150 151 152 153
    /**
     * Configure a fail point for the test.
     *
     * The fail point will automatically be disabled during tearDown() to avoid
     * affecting a subsequent test.
     *
     * @param array|stdClass $command configureFailPoint command document
     * @throws InvalidArgumentException if $command is not a configureFailPoint command
     */
154
    public function configureFailPoint($command, Server $server = null)
155
    {
156 157 158 159 160 161 162 163
        if (! $this->isFailCommandSupported()) {
            $this->markTestSkipped('failCommand is only supported on mongod >= 4.0.0 and mongos >= 4.1.5.');
        }

        if (! $this->isFailCommandEnabled()) {
            $this->markTestSkipped('The enableTestCommands parameter is not enabled.');
        }

164 165 166 167
        if (is_array($command)) {
            $command = (object) $command;
        }

168
        if (! $command instanceof stdClass) {
169 170 171 172 173 174 175
            throw new InvalidArgumentException('$command is not an array or stdClass instance');
        }

        if (key($command) !== 'configureFailPoint') {
            throw new InvalidArgumentException('$command is not a configureFailPoint command');
        }

176 177
        $failPointServer = $server ?: $this->getPrimaryServer();

178
        $operation = new DatabaseCommand('admin', $command);
179
        $cursor = $operation->execute($failPointServer);
180 181 182 183 184
        $result = $cursor->toArray()[0];

        $this->assertCommandSucceeded($result);

        // Record the fail point so it can be disabled during tearDown()
185
        $this->configuredFailPoints[] = [$command->configureFailPoint, $failPointServer];
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
    /**
     * Creates the test collection with the specified options.
     *
     * If the "writeConcern" option is not specified but is supported by the
     * server, a majority write concern will be used. This is helpful for tests
     * using transactions or secondary reads.
     *
     * @param array $options
     */
    protected function createCollection(array $options = [])
    {
        if (version_compare($this->getServerVersion(), '3.4.0', '>=')) {
            $options += ['writeConcern' => new WriteConcern(WriteConcern::MAJORITY)];
        }

        $operation = new CreateCollection($this->getDatabaseName(), $this->getCollectionName(), $options);
        $operation->execute($this->getPrimaryServer());
    }

    /**
     * Drops the test collection with the specified options.
     *
     * If the "writeConcern" option is not specified but is supported by the
     * server, a majority write concern will be used. This is helpful for tests
     * using transactions or secondary reads.
     *
     * @param array $options
     */
    protected function dropCollection(array $options = [])
    {
        if (version_compare($this->getServerVersion(), '3.4.0', '>=')) {
            $options += ['writeConcern' => new WriteConcern(WriteConcern::MAJORITY)];
        }

        $operation = new DropCollection($this->getDatabaseName(), $this->getCollectionName(), $options);
        $operation->execute($this->getPrimaryServer());
    }

226
    protected function getFeatureCompatibilityVersion(ReadPreference $readPreference = null)
227
    {
228 229 230 231
        if ($this->isShardedCluster()) {
            return $this->getServerVersion($readPreference);
        }

232
        if (version_compare($this->getServerVersion(), '3.4.0', '<')) {
233
            return $this->getServerVersion($readPreference);
234
        }
235

236
        $cursor = $this->manager->executeCommand(
237 238 239
            'admin',
            new Command(['getParameter' => 1, 'featureCompatibilityVersion' => 1]),
            $readPreference ?: new ReadPreference(ReadPreference::RP_PRIMARY)
240 241 242 243 244
        );

        $cursor->setTypeMap(['root' => 'array', 'document' => 'array']);
        $document = current($cursor->toArray());

245 246 247 248 249 250 251 252 253 254 255
        // MongoDB 3.6: featureCompatibilityVersion is an embedded document
        if (isset($document['featureCompatibilityVersion']['version']) && is_string($document['featureCompatibilityVersion']['version'])) {
            return $document['featureCompatibilityVersion']['version'];
        }

        // MongoDB 3.4: featureCompatibilityVersion is a string
        if (isset($document['featureCompatibilityVersion']) && is_string($document['featureCompatibilityVersion'])) {
            return $document['featureCompatibilityVersion'];
        }

        throw new UnexpectedValueException('Could not determine featureCompatibilityVersion');
256 257
    }

258 259 260 261 262
    protected function getPrimaryServer()
    {
        return $this->manager->selectServer(new ReadPreference(ReadPreference::RP_PRIMARY));
    }

263 264 265 266
    protected function getServerVersion(ReadPreference $readPreference = null)
    {
        $cursor = $this->manager->executeCommand(
            $this->getDatabaseName(),
Jeremy Mikola's avatar
Jeremy Mikola committed
267
            new Command(['buildInfo' => 1]),
268 269 270
            $readPreference ?: new ReadPreference(ReadPreference::RP_PRIMARY)
        );

Jeremy Mikola's avatar
Jeremy Mikola committed
271
        $cursor->setTypeMap(['root' => 'array', 'document' => 'array']);
272 273
        $document = current($cursor->toArray());

274 275 276 277 278
        if (isset($document['version']) && is_string($document['version'])) {
            return $document['version'];
        }

        throw new UnexpectedValueException('Could not determine server version');
279
    }
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297

    protected function getServerStorageEngine(ReadPreference $readPreference = null)
    {
        $cursor = $this->manager->executeCommand(
            $this->getDatabaseName(),
            new Command(['serverStatus' => 1]),
            $readPreference ?: new ReadPreference('primary')
        );

        $result = current($cursor->toArray());

        if (isset($result->storageEngine->name) && is_string($result->storageEngine->name)) {
            return $result->storageEngine->name;
        }

        throw new UnexpectedValueException('Could not determine server storage engine');
    }

298 299 300 301 302 303 304 305 306
    protected function isShardedCluster()
    {
        if ($this->getPrimaryServer()->getType() == Server::TYPE_MONGOS) {
            return true;
        }

        return false;
    }

307 308 309 310 311 312 313 314 315 316
    protected function isShardedClusterUsingReplicasets()
    {
        $cursor = $this->getPrimaryServer()->executeQuery(
            'config.shards',
            new Query([], ['limit' => 1])
        );

        $cursor->setTypeMap(['root' => 'array', 'document' => 'array']);
        $document = current($cursor->toArray());

317
        if (! $document) {
318 319 320 321 322 323 324 325 326 327 328 329 330
            return false;
        }

        /**
         * Use regular expression to distinguish between standalone or replicaset:
         * Without a replicaset: "host" : "localhost:4100"
         * With a replicaset: "host" : "dec6d8a7-9bc1-4c0e-960c-615f860b956f/localhost:4400,localhost:4401"
         */
        return preg_match('@^.*/.*:\d+@', $document['host']);
    }

    protected function skipIfChangeStreamIsNotSupported()
    {
331
        switch ($this->getPrimaryServer()->getType()) {
332 333 334 335
            case Server::TYPE_MONGOS:
                if (version_compare($this->getServerVersion(), '3.6.0', '<')) {
                    $this->markTestSkipped('$changeStream is only supported on MongoDB 3.6 or higher');
                }
336
                if (! $this->isShardedClusterUsingReplicasets()) {
337 338
                    $this->markTestSkipped('$changeStream is only supported with replicasets');
                }
339 340 341

                // Temporarily skip tests because of an issue with change streams in the driver
                $this->markTestSkipped('$changeStreams currently don\'t on replica sets');
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
                break;

            case Server::TYPE_RS_PRIMARY:
                if (version_compare($this->getFeatureCompatibilityVersion(), '3.6', '<')) {
                    $this->markTestSkipped('$changeStream is only supported on FCV 3.6 or higher');
                }
                break;

            default:
                $this->markTestSkipped('$changeStream is not supported');
        }
    }

    protected function skipIfCausalConsistencyIsNotSupported()
    {
357
        switch ($this->getPrimaryServer()->getType()) {
358 359 360 361
            case Server::TYPE_MONGOS:
                if (version_compare($this->getServerVersion(), '3.6.0', '<')) {
                    $this->markTestSkipped('Causal Consistency is only supported on MongoDB 3.6 or higher');
                }
362
                if (! $this->isShardedClusterUsingReplicasets()) {
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
                    $this->markTestSkipped('Causal Consistency is only supported with replicasets');
                }
                break;

            case Server::TYPE_RS_PRIMARY:
                if (version_compare($this->getFeatureCompatibilityVersion(), '3.6', '<')) {
                    $this->markTestSkipped('Causal Consistency is only supported on FCV 3.6 or higher');
                }
                if ($this->getServerStorageEngine() !== 'wiredTiger') {
                    $this->markTestSkipped('Causal Consistency requires WiredTiger storage engine');
                }
                break;

            default:
                $this->markTestSkipped('Causal Consistency is not supported');
        }
    }

381 382 383 384 385 386
    protected function skipIfTransactionsAreNotSupported()
    {
        if ($this->getPrimaryServer()->getType() === Server::TYPE_STANDALONE) {
            $this->markTestSkipped('Transactions are not supported on standalone servers');
        }

387
        if ($this->isShardedCluster()) {
388 389 390 391 392 393 394 395 396
            if (! $this->isShardedClusterUsingReplicasets()) {
                $this->markTestSkipped('Transactions are not supported on sharded clusters without replica sets');
            }

            if (version_compare($this->getFeatureCompatibilityVersion(), '4.2', '<')) {
                $this->markTestSkipped('Transactions are only supported on FCV 4.2 or higher');
            }

            return;
397 398 399 400 401 402 403 404 405 406
        }

        if (version_compare($this->getFeatureCompatibilityVersion(), '4.0', '<')) {
            $this->markTestSkipped('Transactions are only supported on FCV 4.0 or higher');
        }

        if ($this->getServerStorageEngine() !== 'wiredTiger') {
            $this->markTestSkipped('Transactions require WiredTiger storage engine');
        }
    }
407 408 409 410 411 412 413 414 415 416 417 418 419

    /**
     * Disables any fail points that were configured earlier in the test.
     *
     * This tracks fail points set via configureFailPoint() and should be called
     * during tearDown().
     */
    private function disableFailPoints()
    {
        if (empty($this->configuredFailPoints)) {
            return;
        }

420
        foreach ($this->configuredFailPoints as list($failPoint, $server)) {
421 422 423 424
            $operation = new DatabaseCommand('admin', ['configureFailPoint' => $failPoint, 'mode' => 'off']);
            $operation->execute($server);
        }
    }
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457

    /**
     * Checks if the failCommand command is supported on this server version
     *
     * @return bool
     */
    private function isFailCommandSupported()
    {
        $minVersion = $this->isShardedCluster() ? '4.1.5' : '4.0.0';

        return version_compare($this->getServerVersion(), $minVersion, '>=');
    }

    /**
     * Checks if the failCommand command is enabled by checking the enableTestCommands parameter
     *
     * @return bool
     */
    private function isFailCommandEnabled()
    {
        try {
            $cursor = $this->manager->executeCommand(
                'admin',
                new Command(['getParameter' => 1, 'enableTestCommands' => 1])
            );

            $document = current($cursor->toArray());
        } catch (CommandException $e) {
            return false;
        }

        return isset($document->enableTestCommands) && $document->enableTestCommands === true;
    }
458
}