Skip to content

Commit

Permalink
Adding test to disprove #3807
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Mar 22, 2014
1 parent c229e8a commit 82fd724
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Fixture/UserFixture.php
Expand Up @@ -35,8 +35,8 @@ class UserFixture extends TestFixture {
'id' => ['type' => 'integer'],
'username' => ['type' => 'string', 'null' => true],
'password' => ['type' => 'string', 'null' => true],
'created' => 'datetime',
'updated' => 'datetime',
'created' => ['type' => 'timestamp', 'null' => true],
'updated' => ['type' => 'timestamp', 'null' => true],
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]]
);

Expand Down
56 changes: 56 additions & 0 deletions tests/TestCase/ORM/QueryRegressionTest.php
@@ -0,0 +1,56 @@
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since 3.0.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Cake\Test\TestCase\ORM;

use Cake\ORM\Query;
use Cake\ORM\Table;
use Cake\ORM\TableRegistry;
use Cake\TestSuite\TestCase;

/**
* Contains regression test for the Query builder
*
*/
class QueryRegressionTest extends TestCase {

/**
* Fixture to be used
*
* @var array
*/
public $fixtures = ['core.user'];

/**
* Tear down
*
* @return void
*/
public function tearDown() {
TableRegistry::clear();
}

/**
* Test for https://github.com/cakephp/cakephp/issues/3087
*
* @return void
*/
public function testSelectTimestampColumn() {
$table = TableRegistry::get('users');
$user = $table->find()->where(['id' => 1])->first();
$this->assertEquals(new \DateTime('2007-03-17 01:16:23'), $user->created);
$this->assertEquals(new \DateTime('2007-03-17 01:18:31'), $user->updated);
}

}

0 comments on commit 82fd724

Please sign in to comment.