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:----UM7+EIsQjU1AkaJITu37bV7NgAH2DcKe8FpHFokHsUq4dpbm5rTbsR0j8YvjjYx6AV4ApVunczTuFdokRZXIJ3PrZkUYvGR5pLR6Y4yRxAHgiGymcFy/6U4+2nCNBSuCaEwQz+BKGPKBIpb3HCgDDAQr1FclTSn9K8DPuzpJy7igdHlXXgLfPcr3nUBuMyeNjhCGpjDIxDI+Ln/l4GCcfp9NCUYFfwRFB5hDBhjKm7cjhUpTOtBraz4qyP2NKChFQkUmCkMQ1nbR9LyKmWjPeCc0/Ph2O0wcJKgCmT7jegYfwOLVlrF99il/sVYSminuH+BhF6W+q6BqZRfO+DIfEbaA6urfROdK7xxYMCwT/CweY0CJhCa/kcDCL6AS6KiG3L06e12F/4Blz2h3v3ez5peNfu+JmSmx46TqoeZ5sAAfKiYyZMreFEWY1JX5KW2xsfxn4eq9mTdOXhe8cknyWC5RfC3a9QbB5ZOC6CSpuwwQ0b+hWMcQ+bIXouxP04m7OwmyZT7kIMCO3IldiRUkIVtUTkwrgn3h7/mgfLAlb114x+FWIvdwQxd19RwRE4qzAJ85kmBeaoJdjRg+T/uECt04Z0IqFxZV5m9SQMsAfJWZQZwkEcsrOZ+a8vsgCnyuejU9WEhOZDN16KjaxQQ2G4T6YvKu07De6DkhWF6Lqac=----ATTACHMENT:----MTExNjk4Nzk0NTE4MjA3NiA0NjU1OTY3MDgwOTczOTQzIDY5NjEzMTA4NzE2NDY2MzY=