123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- <?php
- namespace spec\Gaufrette\Adapter;
- //hack - mock php built-in functions
- require_once 'functions.php';
- use PhpSpec\ObjectBehavior;
- use Prophecy\Argument;
- class DoctrineDbalSpec extends ObjectBehavior
- {
- /**
- * @param \Doctrine\DBAL\Connection $connection
- */
- function let($connection)
- {
- $this->beConstructedWith($connection, 'someTableName');
- }
- function it_is_adapter()
- {
- $this->shouldHaveType('Gaufrette\Adapter');
- }
- function it_is_checksum_calculator()
- {
- $this->shouldHaveType('Gaufrette\Adapter\ChecksumCalculator');
- }
- function it_does_not_handle_directories()
- {
- $this->isDirectory('filename')->shouldReturn(false);
- }
- /**
- * @param \Doctrine\DBAL\Connection $connection
- */
- function it_checks_if_file_exists($connection)
- {
- $connection
- ->quoteIdentifier(Argument::any())
- ->will(function ($argument) { return sprintf('"%s"', $argument[0]); });
- $connection
- ->fetchColumn('SELECT COUNT("key") FROM "someTableName" WHERE "key" = :key', array('key' => 'filename'))
- ->willReturn(12);
- $this->exists('filename')->shouldReturn(true);
- $connection
- ->fetchColumn('SELECT COUNT("key") FROM "someTableName" WHERE "key" = :key', array('key' => 'filename'))
- ->willReturn(0);
- $this->exists('filename')->shouldReturn(false);
- }
- /**
- * @param \Doctrine\DBAL\Connection $connection
- */
- function it_writes_to_new_file($connection)
- {
- $connection
- ->quoteIdentifier(Argument::any())
- ->will(function ($argument) { return sprintf('"%s"', $argument[0]); });
- $connection
- ->fetchColumn('SELECT COUNT("key") FROM "someTableName" WHERE "key" = :key', array('key' => 'filename'))
- ->willReturn(false);
- $connection
- ->insert(
- 'someTableName',
- array(
- '"content"' => 'some content',
- '"mtime"' => strtotime('2012-10-10 23:10:10'),
- '"checksum"' => '9893532233caff98cd083a116b013c0b',
- '"key"' => 'filename'
- ))
- ->shouldBeCalled();
- $this->write('filename', 'some content')->shouldReturn(12);
- }
- /**
- * @param \Doctrine\DBAL\Connection $connection
- */
- function it_write_file($connection)
- {
- $connection
- ->quoteIdentifier(Argument::any())
- ->will(function ($argument) { return sprintf('"%s"', $argument[0]); });
- $connection
- ->fetchColumn('SELECT COUNT("key") FROM "someTableName" WHERE "key" = :key', array('key' => 'filename'))
- ->willReturn(true);
- $connection
- ->update(
- 'someTableName',
- array(
- '"content"' => 'some content',
- '"mtime"' => strtotime('2012-10-10 23:10:10'),
- '"checksum"' => '9893532233caff98cd083a116b013c0b',
- ),
- array(
- '"key"' => 'filename'
- ))
- ->shouldBeCalled();
- $this->write('filename', 'some content')->shouldReturn(12);
- }
- /**
- * @param \Doctrine\DBAL\Connection $connection
- */
- function it_reads_file($connection)
- {
- $connection
- ->quoteIdentifier(Argument::any())
- ->will(function ($argument) { return sprintf('"%s"', $argument[0]); });
- $connection
- ->fetchColumn('SELECT "content" FROM "someTableName" WHERE "key" = :key', array('key' => 'filename'))
- ->willReturn('some content');
- $this->read('filename')->shouldReturn('some content');
- }
- /**
- * @param \Doctrine\DBAL\Connection $connection
- */
- function it_calculates_checksum($connection)
- {
- $connection
- ->quoteIdentifier(Argument::any())
- ->will(function ($argument) { return sprintf('"%s"', $argument[0]); });
- $connection
- ->fetchColumn('SELECT "checksum" FROM "someTableName" WHERE "key" = :key', array('key' => 'filename'))
- ->willReturn(1234);
- $this->checksum('filename')->shouldReturn(1234);
- }
- /**
- * @param \Doctrine\DBAL\Connection $connection
- */
- function it_gets_mtime($connection)
- {
- $connection
- ->quoteIdentifier(Argument::any())
- ->will(function ($argument) { return sprintf('"%s"', $argument[0]); });
- $connection
- ->fetchColumn('SELECT "mtime" FROM "someTableName" WHERE "key" = :key', array('key' => 'filename'))
- ->willReturn(1234);
- $this->mtime('filename')->shouldReturn(1234);
- }
- /**
- * @param \Doctrine\DBAL\Connection $connection
- */
- function it_renames_file($connection)
- {
- $connection
- ->quoteIdentifier(Argument::any())
- ->will(function ($argument) { return sprintf('"%s"', $argument[0]); });
- $connection
- ->update(
- 'someTableName',
- array(
- '"key"' => 'newFile',
- ),
- array(
- '"key"' => 'filename'
- ))
- ->shouldBeCalled()
- ->willReturn(1);
- $this->rename('filename', 'newFile')->shouldReturn(true);
- }
- /**
- * @param \Doctrine\DBAL\Connection $connection
- * @param \Doctrine\DBAL\Statement $stmt
- */
- function it_get_keys($connection, $stmt)
- {
- $stmt->fetchAll(\PDO::FETCH_COLUMN)->willReturn(array('filename', 'filename1', 'filename2'));
- $connection
- ->quoteIdentifier(Argument::any())
- ->will(function ($argument) { return sprintf('"%s"', $argument[0]); });
- $connection
- ->executeQuery('SELECT "key" FROM "someTableName"')
- ->willReturn($stmt);
- $this->keys()->shouldReturn(array('filename', 'filename1', 'filename2'));
- }
- /**
- * @param \Doctrine\DBAL\Connection $connection
- */
- function it_deletes_file($connection)
- {
- $connection
- ->quoteIdentifier(Argument::any())
- ->will(function ($argument) { return sprintf('"%s"', $argument[0]); });
- $connection
- ->delete('someTableName', array('"key"' => 'filename'))
- ->shouldBeCalled()
- ->willReturn(1);
- $this->delete('filename')->shouldReturn(true);
- }
- }
|