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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
<?php
namespace Illuminate\Tests\Integration\Generators;
class MailMakeCommandTest extends TestCase
{
protected $files = [
'app/Mail/*.php',
'resources/views/foo-mail.blade.php',
'resources/views/mail/*.blade.php',
'tests/Feature/Mail/*.php',
];
public function testItCanGenerateMailFile()
{
$this->artisan('make:mail', ['name' => 'FooMail'])
->assertExitCode(0);
$this->assertFileContains([
'namespace App\Mail;',
'use Illuminate\Mail\Mailable;',
'class FooMail extends Mailable',
], 'app/Mail/FooMail.php');
$this->assertFilenameNotExists('resources/views/foo-mail.blade.php');
$this->assertFilenameNotExists('tests/Feature/Mail/FooMailTest.php');
}
public function testItCanGenerateMailFileWithMarkdownOption()
{
$this->artisan('make:mail', ['name' => 'FooMail', '--markdown' => 'foo-mail'])
->assertExitCode(0);
$this->assertFileContains([
'namespace App\Mail;',
'use Illuminate\Mail\Mailable;',
'class FooMail extends Mailable',
'return new Content(',
"markdown: 'foo-mail',",
], 'app/Mail/FooMail.php');
$this->assertFileContains([
'<x-mail::message>',
'<x-mail::button :url="\'\'">',
'</x-mail::button>',
'</x-mail::message>',
], 'resources/views/foo-mail.blade.php');
}
public function testErrorsWillBeDisplayedWhenMarkdownsAlreadyExist()
{
$existingMarkdownPath = 'resources/views/existing-markdown.blade.php';
$this->app['files']
->put(
$this->app->basePath($existingMarkdownPath),
'<x-mail::message>My existing markdown</x-mail::message>'
);
$this->artisan('make:mail', ['name' => 'FooMail', '--markdown' => 'existing-markdown'])
->expectsOutputToContain('already exists.')
->assertExitCode(0);
$this->assertFileContains([
'namespace App\Mail;',
'use Illuminate\Mail\Mailable;',
'class FooMail extends Mailable',
'return new Content(',
"markdown: 'existing-markdown',",
], 'app/Mail/FooMail.php');
$this->assertFileContains([
'<x-mail::message>',
'My existing markdown',
'</x-mail::message>',
], $existingMarkdownPath);
}
public function testItCanGenerateMailFileWithViewOption()
{
$this->artisan('make:mail', ['name' => 'FooMail', '--view' => 'foo-mail'])
->assertExitCode(0);
$this->assertFileContains([
'namespace App\Mail;',
'use Illuminate\Mail\Mailable;',
'class FooMail extends Mailable',
'return new Content(',
"view: 'foo-mail',",
], 'app/Mail/FooMail.php');
$this->assertFilenameExists('resources/views/foo-mail.blade.php');
}
public function testErrorsWillBeDisplayedWhenViewsAlreadyExist()
{
$existingViewPath = 'resources/views/existing-template.blade.php';
$this->app['files']
->put(
$this->app->basePath($existingViewPath),
'<div>My existing template</div>'
);
$this->artisan('make:mail', ['name' => 'FooMail', '--view' => 'existing-template'])
->expectsOutputToContain('already exists.')
->assertExitCode(0);
$this->assertFileContains([
'namespace App\Mail;',
'use Illuminate\Mail\Mailable;',
'class FooMail extends Mailable',
'return new Content(',
"view: 'existing-template',",
], 'app/Mail/FooMail.php');
$this->assertFilenameExists($existingViewPath);
$this->assertFileContains([
'<div>My existing template</div>',
], $existingViewPath);
}
public function testItCanGenerateMailFileWithTest()
{
$this->artisan('make:mail', ['name' => 'FooMail', '--test' => true])
->assertExitCode(0);
$this->assertFilenameExists('app/Mail/FooMail.php');
$this->assertFilenameNotExists('resources/views/foo-mail.blade.php');
$this->assertFilenameExists('tests/Feature/Mail/FooMailTest.php');
}
public function testItCanGenerateMailWithNoInitialInput()
{
$this->artisan('make:mail')
->expectsQuestion('What should the mailable be named?', 'FooMail')
->expectsQuestion('Would you like to create a view?', 'none')
->assertExitCode(0);
$this->assertFilenameExists('app/Mail/FooMail.php');
$this->assertFilenameDoesNotExists('resources/views/mail/foo-mail.blade.php');
}
public function testItCanGenerateMailWithViewWithNoInitialInput()
{
$this->artisan('make:mail')
->expectsQuestion('What should the mailable be named?', 'MyFooMail')
->expectsQuestion('Would you like to create a view?', 'view')
->assertExitCode(0);
$this->assertFilenameExists('app/Mail/MyFooMail.php');
$this->assertFilenameExists('resources/views/mail/my-foo-mail.blade.php');
}
public function testItCanGenerateMailWithMarkdownViewWithNoInitialInput()
{
$this->artisan('make:mail')
->expectsQuestion('What should the mailable be named?', 'FooMail')
->expectsQuestion('Would you like to create a view?', 'markdown')
->assertExitCode(0);
$this->assertFilenameExists('app/Mail/FooMail.php');
$this->assertFilenameExists('resources/views/mail/foo-mail.blade.php');
}
}
|