You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							70 lines
						
					
					
						
							1.9 KiB
						
					
					
				
			
		
		
	
	
							70 lines
						
					
					
						
							1.9 KiB
						
					
					
				<?php | 
						|
 | 
						|
namespace yiiunit\extensions\mongodb; | 
						|
 | 
						|
use yii\mongodb\Collection; | 
						|
use yii\mongodb\file\Collection as FileCollection; | 
						|
 | 
						|
/** | 
						|
 * @group mongo | 
						|
 */ | 
						|
class DatabaseTest extends MongoDbTestCase | 
						|
{ | 
						|
	protected function tearDown() | 
						|
	{ | 
						|
		$this->dropCollection('customer'); | 
						|
		$this->dropFileCollection('testfs'); | 
						|
		parent::tearDown(); | 
						|
	} | 
						|
 | 
						|
	// Tests : | 
						|
 | 
						|
	public function testGetCollection() | 
						|
	{ | 
						|
		$database = $connection = $this->getConnection()->getDatabase(); | 
						|
 | 
						|
		$collection = $database->getCollection('customer'); | 
						|
		$this->assertTrue($collection instanceof Collection); | 
						|
		$this->assertTrue($collection->mongoCollection instanceof \MongoCollection); | 
						|
 | 
						|
		$collection2 = $database->getCollection('customer'); | 
						|
		$this->assertTrue($collection === $collection2); | 
						|
 | 
						|
		$collectionRefreshed = $database->getCollection('customer', true); | 
						|
		$this->assertFalse($collection === $collectionRefreshed); | 
						|
	} | 
						|
 | 
						|
	public function testGetFileCollection() | 
						|
	{ | 
						|
		$database = $connection = $this->getConnection()->getDatabase(); | 
						|
 | 
						|
		$collection = $database->getFileCollection('testfs'); | 
						|
		$this->assertTrue($collection instanceof FileCollection); | 
						|
		$this->assertTrue($collection->mongoCollection instanceof \MongoGridFS); | 
						|
 | 
						|
		$collection2 = $database->getFileCollection('testfs'); | 
						|
		$this->assertTrue($collection === $collection2); | 
						|
 | 
						|
		$collectionRefreshed = $database->getFileCollection('testfs', true); | 
						|
		$this->assertFalse($collection === $collectionRefreshed); | 
						|
	} | 
						|
 | 
						|
	public function testExecuteCommand() | 
						|
	{ | 
						|
		$database = $connection = $this->getConnection()->getDatabase(); | 
						|
 | 
						|
		$result = $database->executeCommand([ | 
						|
			'distinct' => 'customer', | 
						|
			'key' => 'name' | 
						|
		]); | 
						|
		$this->assertTrue(array_key_exists('ok', $result)); | 
						|
		$this->assertTrue(array_key_exists('values', $result)); | 
						|
	} | 
						|
 | 
						|
	public function testCreateCollection() | 
						|
	{ | 
						|
		$database = $connection = $this->getConnection()->getDatabase(); | 
						|
		$collection = $database->createCollection('customer'); | 
						|
		$this->assertTrue($collection instanceof \MongoCollection); | 
						|
	} | 
						|
} |