ORIENT/tests/unit/plugins/database/NullableModelTest.php

40 lines
1.0 KiB
PHP
Raw Normal View History

2016-01-25 04:39:46 +00:00
<?php
use Database\Tester\Models\NullablePost;
class NullableModelTest extends PluginTestCase
{
public function setUp()
{
parent::setUp();
include_once base_path().'/tests/fixtures/plugins/database/tester/models/Post.php';
$this->runPluginRefreshCommand('Database.Tester');
}
public function testNullifyingFields()
{
2016-01-26 21:40:23 +00:00
// Save as SQL default
$post = NullablePost::create(['author_nickname' => ''])->reload();
$this->assertEquals('October', $post->author_nickname);
2016-01-25 04:39:46 +00:00
2016-01-26 21:40:23 +00:00
// Save as empty string
2016-01-25 04:39:46 +00:00
$post->author_nickname = '';
$post->save();
$this->assertNull($post->author_nickname);
}
public function testNonEmptyValuesAreIgnored()
{
2016-01-26 21:40:23 +00:00
// Save as value
2016-01-25 04:39:46 +00:00
$post = NullablePost::create(['author_nickname' => 'Joe']);
$this->assertEquals('Joe', $post->author_nickname);
2016-01-26 21:40:23 +00:00
// Save as "not equal" operator
$post->author_nickname = 0;
$post->save();
$this->assertEquals(0, $post->author_nickname);
2016-01-25 04:39:46 +00:00
}
}