Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.142.101
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
ratchet /
rfc6455 /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
ab
[ DIR ]
drwxr-xr-x
2018-05-02 09:00
unit
[ DIR ]
drwxr-xr-x
2018-05-02 09:00
AbResultsTest.php
1.01
KB
-rw-r--r--
2018-05-02 09:00
bootstrap.php
418
B
-rw-r--r--
2018-05-02 09:00
Save
Rename
<?php namespace Ratchet\RFC6455\Test; class AbResultsTest extends \PHPUnit_Framework_TestCase { private function verifyAutobahnResults($fileName) { if (!file_exists($fileName)) { return $this->markTestSkipped('Autobahn TestSuite results not found'); } $resultsJson = file_get_contents($fileName); $results = json_decode($resultsJson); $agentName = array_keys(get_object_vars($results))[0]; foreach ($results->$agentName as $name => $result) { if ($result->behavior === "INFORMATIONAL") { continue; } $this->assertTrue(in_array($result->behavior, ["OK", "NON-STRICT"]), "Autobahn test case " . $name . " in " . $fileName); } } public function testAutobahnClientResults() { $this->verifyAutobahnResults(__DIR__ . '/ab/reports/clients/index.json'); } public function testAutobahnServerResults() { $this->verifyAutobahnResults(__DIR__ . '/ab/reports/servers/index.json'); } }