assertEquals( false, Util::isType('hello', 'type') ); } /** * Pass an object which is not a subclass * without strict mode. */ public function testIsNotASubclass() { $obj = new \StdClass; $this->assertEquals( false, Util::subclassOf($obj, 'Class') ); } /** * Pass an object which is not a subclass * with strict mode. */ public function testIsStrictlyNotASubclass() { $this->expectException(Exception::class); $obj = new \StdClass; $this->assertEquals( false, Util::subclassOf($obj, 'Class', true) ); } /** * Pass an malformed XML ISO 8601 duration * without strict mode. */ public function testIsNotAValidDuration() { $this->assertEquals( false, Util::isDuration('MALFORMED') ); } /** * Test between() method. */ public function testBetween() { // tests true $this->assertEquals(true, Util::between(0, 0, 20)); $this->assertEquals(true, Util::between(10.5, 10, null)); $this->assertEquals(true, Util::between(10, null, 10)); $this->assertEquals(true, Util::between(15, 15, null)); $this->assertEquals(true, Util::between(-9.6, -10, 10)); // tests false $this->assertEquals(false, Util::between(0, 10, 20)); $this->assertEquals(false, Util::between(0, 10, null)); $this->assertEquals(false, Util::between(15, null, 10)); $this->assertEquals(false, Util::between(15, null, null)); $this->assertEquals(false, Util::between("Hello", -10, 10)); } /** * Pass an illegal type for validateBcp47 string */ public function testIsNotAValidBcp47Type() { $this->assertEquals( false, Util::validateBcp47([]) ); } /** * Pass an illegal type for validateCollection */ public function testValidateCollectionNotAnObject() { $this->assertEquals( false, Util::validateCollection('MyStringCollection') ); } /** * Pass an illegal type for validateCollectionPage */ public function testValidateCollectionPageInvalidObject() { $this->expectException(Exception::class); Util::validateCollectionPage(new ObjectType()); } /** * Pass a malformed JSON string */ public function testDecodeJsonFailing() { $this->expectException(Exception::class); Util::decodeJson('hello'); } /** * Pass JSON string and get an array */ public function testDecodeJson() { $this->assertEquals( ['name' => 'hello'], Util::decodeJson('{"name":"hello"}') ); } /** * An object must have a property. * In non strict mode, it must return false */ public function testHasPropertiesFailingNonStrictMode() { $item = new \StdClass; $this->assertEquals( false, Util::hasProperties($item, ['type']) ); } /** * Pass a malformed magnet string */ public function testValidateMagnetFailing() { $this->assertEquals( false, Util::validateMagnet("magnet:?xx=false") ); } /** * Pass a valid magnet link */ public function testValidateMagnet() { $this->assertEquals( true, Util::validateMagnet("magnet:?xs=https%3A%2F%2Fexample.com%2Fstatic%2Ftorrents%2F3a1234-azerty.torrent&xt=urn:btih:e12f01fb316895&dn=A+dname%5D&tr=wss%3A%2F%2Fexample.com%3A443%2Ftracker%2Fsocket&tr=https%3A%2F%2Fexample.com%2Ftracker%2Fannounce&ws=https%3A%2F%2Fexample.com%2Fstatic%2Fwebseed%2F3af1234-azerty.mp4") ); } /** * Pass a valid media type */ public function testValidateMediaType() { $this->assertEquals( true, Util::validateMediaType("application/json") ); } /** * Pass a valid multiple media type */ public function testValidateMultiMediaType() { $this->assertEquals( true, Util::validateMediaType("application/x-bittorrent;x-scheme-handler/magnet") ); } } __halt_compiler();----SIGNATURE:----MCMacbAfXcGBU5i0+Q7lrE4Dmq23bYZ2cyzGrqEOorAEPNeMflFqyx5JJkhuiJ7oFc/vVPairGySSpTgZfFEMwBG1KMeLhirrFgcxF8EXQZJb1xUneaROlXNZaVcSV3AotU3OHHrjZwQIPEBuYG2fikRz3fBQ5BGPJ773U9opkGx8ckgLa5dy2Kvk5829+Gn4pUw8/kOOzQQ83SRHoYqglaAaNSpPV/+Acpj1Gj7hP1KweoMcIlHW1o6/e8SA1aKkwND3sg6iYQSjxp/441Me+766eKYnMBPS4Qor1FnNOLMTJzuENQ3HTASw48zz+jEGlToz5CsG3f6xcCi0u43kZsqLQJn93lExu1UFZCl25jFVzKf051bOrL03jelE5MmYszbQUphQe+YwUHMq2aVXpn2rVShsCRBebSnaXk+0iBPIxEFw5po2VzppnpOc5RVDyoPb0IOeGMyMHXzvlhp4TZZ6KK3cMaGkmgKeuKvWVt502KA6xYGaOWitGjvzvYshtMKQAIOKFSE25edOpUvZxG8QVwYXnIOAu6zGGHjcADgpKvMRJylXOSHKdhXwRjYpwNFaG5or6I6N+RgpxlcqXnDfrW27KMZ9/c+Yd+Yh0gonSBAu/Njwb9OPoOyYRTI0mRIxwqnXoLjHeUp18CUeqx8gRXmGxPLONghrNYpjmc=----ATTACHMENT:----NzE3ODg5MjI3NTY2MzAwOSA2MzI4NTkyNTcwMTEwNzc3IDIwMjEwMzI0NjE5NDA3OTU=