1 | <?php |
||||
2 | |||||
3 | /* |
||||
4 | * This file is part of the jquery-datatables-bundle package. |
||||
5 | * |
||||
6 | * (c) 2018 WEBEWEB |
||||
7 | * |
||||
8 | * For the full copyright and license information, please view the LICENSE |
||||
9 | * file that was distributed with this source code. |
||||
10 | */ |
||||
11 | |||||
12 | namespace WBW\Bundle\JQuery\DataTablesBundle\Tests; |
||||
13 | |||||
14 | use Throwable; |
||||
15 | use WBW\Bundle\CoreBundle\Config\ConfigurationHelper; |
||||
16 | use WBW\Bundle\CoreBundle\Provider\AssetsProviderInterface; |
||||
17 | use WBW\Bundle\JQuery\DataTablesBundle\DependencyInjection\WBWJQueryDataTablesExtension; |
||||
18 | use WBW\Bundle\JQuery\DataTablesBundle\WBWJQueryDataTablesBundle; |
||||
19 | use WBW\Library\Symfony\Helper\AssetsHelper; |
||||
20 | |||||
21 | /** |
||||
22 | * jQuery DataTables bundle test. |
||||
23 | * |
||||
24 | * @author webeweb <https://github.com/webeweb> |
||||
25 | * @package WBW\Bundle\JQuery\DataTablesBundle\Tests |
||||
26 | */ |
||||
27 | class WBWJQueryDataTablesBundleTest extends AbstractTestCase { |
||||
28 | |||||
29 | /** |
||||
30 | * Test build() |
||||
31 | * |
||||
32 | * @return void |
||||
33 | */ |
||||
34 | public function testBuild(): void { |
||||
35 | |||||
36 | $obj = new WBWJQueryDataTablesBundle(); |
||||
37 | |||||
38 | $obj->build($this->containerBuilder); |
||||
39 | $this->assertNull(null); |
||||
40 | } |
||||
41 | |||||
42 | /** |
||||
43 | * Test getAssetsRelativeDirectory() |
||||
44 | * |
||||
45 | * @return void |
||||
46 | */ |
||||
47 | public function testGetAssetsRelativeDirectory(): void { |
||||
48 | |||||
49 | $obj = new WBWJQueryDataTablesBundle(); |
||||
50 | |||||
51 | $this->assertEquals(AssetsProviderInterface::ASSETS_RELATIVE_DIRECTORY, $obj->getAssetsRelativeDirectory()); |
||||
52 | } |
||||
53 | |||||
54 | /** |
||||
55 | * Test getContainerExtension() |
||||
56 | * |
||||
57 | * @return void |
||||
58 | */ |
||||
59 | public function testGetContainerExtension(): void { |
||||
60 | |||||
61 | $obj = new WBWJQueryDataTablesBundle(); |
||||
62 | |||||
63 | $this->assertInstanceOf(WBWJQueryDataTablesExtension::class, $obj->getContainerExtension()); |
||||
64 | } |
||||
65 | |||||
66 | /** |
||||
67 | * Test getTranslationDomain() |
||||
68 | * |
||||
69 | * @return void |
||||
70 | */ |
||||
71 | public function testGetTranslationDomain(): void { |
||||
72 | |||||
73 | $this->assertEquals(WBWJQueryDataTablesBundle::TRANSLATION_DOMAIN, WBWJQueryDataTablesBundle::getTranslationDomain()); |
||||
74 | } |
||||
75 | |||||
76 | /** |
||||
77 | * Test listAssets() |
||||
78 | * |
||||
79 | * @return void |
||||
80 | * @throws Throwable Throws an exception if an error occurs. |
||||
81 | */ |
||||
82 | public function testListAssets(): void { |
||||
83 | |||||
84 | $config = realpath(__DIR__ . "/../DependencyInjection"); |
||||
85 | $assets = realpath(__DIR__ . "/../Resources/assets"); |
||||
86 | |||||
87 | // Load the YAML configuration. |
||||
88 | $config = ConfigurationHelper::loadYamlConfig($config, "assets"); |
||||
89 | $version = $config["assets"]["wbw.jquery_datatables.asset.jquery_datatables"]["version"]; |
||||
90 | $requires = $config["assets"]["wbw.jquery_datatables.asset.jquery_datatables"]["requires"]; |
||||
91 | $plugins = $config["assets"]["wbw.jquery_datatables.asset.jquery_datatables"]["plugins"]; |
||||
92 | |||||
93 | $res = AssetsHelper::listAssets($assets); |
||||
94 | $this->assertCount(19, $res); |
||||
95 | |||||
96 | $i = -1; |
||||
97 | |||||
98 | $this->assertRegexp("/datatables\-" . preg_quote($version) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
|
|||||
99 | $this->assertRegexp("/datatables\-autofill\-" . preg_quote($plugins["autofill"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
100 | $this->assertRegexp("/datatables\-buttons\-" . preg_quote($plugins["buttons"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
101 | $this->assertRegexp("/datatables\-colreorder\-" . preg_quote($plugins["colreorder"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
102 | $this->assertRegexp("/datatables\-datetime\-" . preg_quote($plugins["datetime"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
103 | $this->assertRegexp("/datatables\-fixedcolumns\-" . preg_quote($plugins["fixedcolumns"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
104 | $this->assertRegexp("/datatables\-fixedheader\-" . preg_quote($plugins["fixedheader"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
105 | $this->assertRegexp("/datatables\-jszip\-" . preg_quote($requires["jszip"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
106 | $this->assertRegexp("/datatables\-keytable\-" . preg_quote($plugins["keytable"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
107 | $this->assertRegexp("/datatables\-pdfmake\-" . preg_quote($requires["pdfmake"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
108 | $this->assertRegexp("/datatables\-responsive\-" . preg_quote($plugins["responsive"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
109 | $this->assertRegexp("/datatables\-rowgroup\-" . preg_quote($plugins["rowgroup"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
110 | $this->assertRegexp("/datatables\-rowreorder\-" . preg_quote($plugins["rowreorder"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
111 | $this->assertRegexp("/datatables\-scroller\-" . preg_quote($plugins["scroller"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
112 | $this->assertRegexp("/datatables\-searchbuilder\-" . preg_quote($plugins["searchbuilder"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
113 | $this->assertRegexp("/datatables\-searchpanes\-" . preg_quote($plugins["searchpanes"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
114 | $this->assertRegexp("/datatables\-select\-" . preg_quote($plugins["select"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
115 | $this->assertRegexp("/datatables\-staterestore\-" . preg_quote($plugins["staterestore"]["version"]) . "\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
116 | $this->assertRegexp("/editable\-table\.zip$/", $res[++$i]); |
||||
0 ignored issues
–
show
The function
PHPUnit\Framework\Assert::assertRegExp() has been deprecated: https://github.com/sebastianbergmann/phpunit/issues/4086
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This function has been deprecated. The supplier of the function has supplied an explanatory message. The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead. ![]() |
|||||
117 | } |
||||
118 | |||||
119 | /** |
||||
120 | * Test __construct() |
||||
121 | * |
||||
122 | * @return void |
||||
123 | */ |
||||
124 | public function test__construct(): void { |
||||
125 | |||||
126 | $this->assertEquals("WBWJQueryDataTablesBundle", WBWJQueryDataTablesBundle::TRANSLATION_DOMAIN); |
||||
127 | } |
||||
128 | } |
||||
129 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.