11 require_once(
'./libs/composer/vendor/autoload.php');
29 protected function setUp() : void
32 $this->version =
'1.2.3.4.5.6.7.8.9';
33 $this->meta_content =
new MetaContent($this->version);
38 $path =
'/path/to/file.css';
39 $this->meta_content->addCss($path);
40 $collection = $this->meta_content->getCss();
42 $first_item = iterator_to_array($collection->getItems())[0];
43 $this->assertInstanceOf(Css::class, $first_item);
44 $this->assertEquals($path .
'?version=' . $this->version, $first_item->getContent());
50 $path =
'/path/to/file.css?my=query';
51 $this->meta_content->addCss($path);
52 $collection = $this->meta_content->getCss();
54 $first_item = iterator_to_array($collection->getItems())[0];
55 $this->assertInstanceOf(Css::class, $first_item);
56 $this->assertEquals($path .
'&version=' . $this->version, $first_item->getContent());
62 $css =
'body {background-color:red;}';
63 $this->meta_content->addInlineCss($css);
64 $collection = $this->meta_content->getInlineCss();
66 $first_item = iterator_to_array($collection->getItems())[0];
67 $this->assertInstanceOf(InlineCss::class, $first_item);
68 $this->assertEquals($css, $first_item->getContent());
74 $path =
'/path/to/file.js';
75 $this->meta_content->addJs($path);
76 $collection = $this->meta_content->getJs();
78 $first_item = iterator_to_array($collection->getItems())[$path];
79 $this->assertInstanceOf(Js::class, $first_item);
80 $this->assertEquals($path .
'?version=' . $this->version, $first_item->getContent());
81 $this->assertEquals(2, $first_item->getBatch());
86 $path =
'/path/to/file.js';
87 $path_with_query = $path .
'?my=query';
88 $this->meta_content->addJs($path_with_query);
89 $collection = $this->meta_content->getJs();
91 $first_item = iterator_to_array($collection->getItems())[$path];
92 $this->assertInstanceOf(Js::class, $first_item);
93 $this->assertEquals($path_with_query .
'&version=' . $this->version, $first_item->getContent());
94 $this->assertEquals(2, $first_item->getBatch());