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

59 lines
1.7 KiB
PHP
Raw Normal View History

2016-01-25 04:39:46 +00:00
<?php
use Database\Tester\Models\NullablePost;
class NullableModelTest extends PluginTestCase
2016-01-25 04:39:46 +00:00
{
2019-06-12 16:22:20 +00:00
public function setUp() : void
2016-01-25 04:39:46 +00:00
{
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 zero integer
2016-01-26 21:40:23 +00:00
$post->author_nickname = 0;
$post->save();
$this->assertNotNull($post->author_nickname);
2016-01-26 21:40:23 +00:00
$this->assertEquals(0, $post->author_nickname);
// Save as zero float
$post->author_nickname = 0.0;
$post->save();
$this->assertNotNull($post->author_nickname);
$this->assertEquals(0.0, $post->author_nickname);
// Save as zero string
$post->author_nickname = '0';
$post->save();
$this->assertNotNull($post->author_nickname);
$this->assertEquals('0', $post->author_nickname);
// Save as false
$post->author_nickname = false;
$post->save();
$this->assertNotNull($post->author_nickname);
$this->assertEquals(false, $post->author_nickname);
2016-01-25 04:39:46 +00:00
}
}