getConnection(false); $params = $this->mongoConfig; $connection->open(); $this->assertEquals($params['dsn'], $connection->dsn); $this->assertEquals($params['dbName'], $connection->dbName); $this->assertEquals($params['options'], $connection->options); } public function testOpenClose() { $connection = $this->getConnection(false, false); $this->assertFalse($connection->isActive); $this->assertEquals(null, $connection->client); $connection->open(); $this->assertTrue($connection->isActive); $this->assertTrue(is_object($connection->client)); $this->assertTrue(is_object($connection->db)); $connection->close(); $this->assertFalse($connection->isActive); $this->assertEquals(null, $connection->client); $this->assertEquals(null, $connection->db); $connection = new Connection; $connection->dsn = 'unknown::memory:'; $this->setExpectedException('yii\mongo\Exception'); $connection->open(); } public function testGetCollection() { $connection = $this->getConnection(false); $collection = $connection->getCollection('customer'); $this->assertTrue($collection instanceof \MongoCollection); } }