-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewTest.php
78 lines (60 loc) · 2.19 KB
/
ViewTest.php
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
<?php
namespace yii1tech\mailer\test;
use Yii;
use yii1tech\mailer\View;
class ViewTest extends TestCase
{
public function testGetViewFile(): void
{
$view = new View();
$filename = $view->getViewFile('plain');
$this->assertSame(__DIR__ . '/views/mail/plain.php', $filename);
$filename = $view->getViewFile('application.bootstrap');
$this->assertSame(__DIR__ . '/bootstrap.php', $filename);
}
public function testRenderWithoutLayout(): void
{
$view = new View();
$view->layout = null;
$content = $view->render('plain', [
'name' => 'John Doe',
]);
$this->assertStringContainsString('Name = John Doe', $content);
}
public function testRenderWithLayout(): void
{
$view = new View();
$view->layout = 'layout';
$content = $view->render('plain', [
'name' => 'John Doe',
]);
$this->assertStringContainsString('Name = John Doe', $content);
$this->assertStringContainsString('<!--Header-->', $content);
$this->assertStringContainsString('<!--Footer-->', $content);
}
public function testSetupViewRenderer(): void
{
$view = new View();
$view->setViewRenderer([
'class' => \CPradoViewRenderer::class,
]);
$viewRenderer = $view->getViewRenderer();
$this->assertTrue($viewRenderer instanceof \CPradoViewRenderer);
}
public function testRestoreOrigins(): void
{
$view = new View();
$view->layout = 'default-layout';
$content = $view->render('switch', [
'name' => 'John Doe',
], 'ru');
$this->assertStringContainsString('Name = John Doe', $content);
$this->assertStringContainsString('Locale = ru', $content);
$this->assertStringContainsString('<!--Header-->', $content);
$this->assertStringContainsString('<!--Footer-->', $content);
$this->assertStringContainsString('Clip = Test Clip Content', $content);
$this->assertSame('default-layout', $view->layout);
$this->assertSame('en_us', Yii::app()->getLanguage());
$this->assertCount(0, $view->getClips());
}
}