Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
namespace Breyta\Test\Migrations;
use Breyta\FileHelper;
use Breyta\Migrations;
use Breyta\Test\TestCase;
use Mockery as m;
class CreateMigrationTest extends TestCase
{
protected $path = '/tmp/breyta-test';
protected function setUp()
{
if (file_exists($this->path)) {
exec('rm -Rf ' . $this->path);
}
mkdir($this->path);
$this->migrations = new Migrations($this->mockPdo(), $this->path);
}
/** @test */
public function createsAFileWithTimestamp()
{
$this->migrations->createMigration('JustAName');
self::assertNotNull(FileHelper::getTimeFromFileName($this->getCreatedFileName()));
}
/** @test */
public function addsNameToFileName()
{
$this->migrations->createMigration('JustAName');
self::assertContains('JustAName', $this->getCreatedFileName());
}
/** @test */
public function createsAClassWithNamespace()
{
$this->migrations->createMigration('JustAName');
self::assertSame('Breyta\Migration\JustAName', FileHelper::getClassFromFile($this->getCreatedFileName()));
}
/** @test */
public function appendsFoldersToNamespace()
{
$this->migrations->createMigration('News/CreateArticleTable');
self::assertSame(
'Breyta\Migration\News\CreateArticleTable',
FileHelper::getClassFromFile($this->getCreatedFileName())
);
}
/** @test */
public function containsACommentWithMigrationName()
{
$this->migrations->createMigration('News/CreateArticleTable');
$status = $this->migrations->getStatus();
self::assertContains('// ' . $status->migrations[1]->file, file_get_contents($this->getCreatedFileName()));
}
protected function getCreatedFileName()
{
$files = [];
exec('find ' . $this->path . ' -type f', $files);
self::assertCount(1, $files);
return $files[0];
}
}