-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHTTP2PushTest.php
150 lines (122 loc) · 3.26 KB
/
HTTP2PushTest.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
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
<?php
namespace TomKeyte\LaravelHttp2Push\Tests\Feature;
use TomKeyte\LaravelHttp2Push\Http2Push;
use TomKeyte\LaravelHttp2Push\Http2PushServiceProvider;
use TomKeyte\LaravelHttp2Push\PushCookie;
use Orchestra\Testbench\TestCase;
use ReflectionClass;
class HTTP2PushTest extends TestCase
{
/**
* Override Orchestra TestCase method
*/
protected function getPackageProviders($app)
{
return [Http2PushServiceProvider::class];
}
protected function setUp(): void
{
parent::setUp();
$this->push = $this->app->get('http2push');
}
/**
* @test
*/
public function it_registers()
{
$this->assertInstanceOf(Http2Push::class, $this->push);
}
/**
* @test
*/
public function it_adds_resources()
{
$this->push->add('/js/app.js');
$this->assertTrue($this->push->isNotEmpty());
}
/**
* @test
*/
public function it_builds_the_header_correctly()
{
$this->push->add('/js/app.js');
$this->assertEquals('</js/app.js>; rel=preload; as=script', $this->push->buildLinkHeader());
$this->push->add('/css/app.css');
$this->assertEquals(
'</js/app.js>; rel=preload; as=script, </css/app.css>; rel=preload; as=style',
$this->push->buildLinkHeader()
);
}
/**
* @test
*/
public function it_ignores_duplicates()
{
$this->push->add('/js/app.js');
$this->push->add('/js/app.js');
$this->push->add('/js/app.js', 60);
$this->assertEquals('</js/app.js>; rel=preload; as=script', $this->push->buildLinkHeader());
}
/**
* @test
*/
public function it_ignores_cached_resources()
{
$resource = '/js/app.js';
$cookie = new PushCookie($resource);
$_COOKIE[$cookie->getName()] = 1;
$this->push->add($resource);
$this->assertEmpty($this->push->buildLinkHeader());
}
/**
* @test
*/
public function it_renders_the_blade_directive()
{
$compiled = resolve('blade.compiler')->compileString("@h2push('app.js')");
$this->assertEquals("<?php echo h2push('app.js'); ?>", $compiled);
}
/**
* @test
*/
public function the_helper_returns_the_resource_uri()
{
$this->assertEquals('/js/app.js', h2push('/js/app.js'));
}
/**
* @test
*/
public function the_helper_function_adds_a_resource()
{
h2push('/js/app.js');
$this->assertTrue($this->push->isNotEmpty());
}
/**
* @test
*/
public function it_adds_config_always_resources()
{
$this->app['config']->set(
'http2push.always',
[
'app.js',
[
'src' => 'app.css',
'expires' => '90',
],
]
);
// create a fresh object
// as config has changed
$push = new Http2Push;
$this->assertTrue($push->isNotEmpty());
}
/**
* @test
*/
public function it_contains_crossorigin_attribute_for_fonts()
{
$this->push->add('assets/font.otf');
$this->assertStringContainsString('crossorigin=anonymous', $this->push->buildLinkHeader());
}
}