TestServiceSketchfab.php
| 1 | <?php |
| 2 | /** |
| 3 | * TestServiceSketchfab.php |
| 4 | * |
| 5 | * @package Tests |
| 6 | * @author Michael Pratt <pratt@hablarmierda.net> |
| 7 | * @link http://www.michael-pratt.com/ |
| 8 | * |
| 9 | * For the full copyright and license information, please view the LICENSE |
| 10 | * file that was distributed with this source code. |
| 11 | */ |
| 12 | |
| 13 | require_once 'TestProviders.php'; |
| 14 | |
| 15 | class TestServiceSketchfab extends TestProviders |
| 16 | { |
| 17 | protected $urls = array( |
| 18 | 'valid' => array( |
| 19 | 'https://sketchfab.com/show/lRyoY4ZsPRUMPlSiz03ORxTIXXK', |
| 20 | 'https://sketchfab.com/models/4e6urv5wnV8hxfhD2xUnSrvLNss', |
| 21 | 'https://sketchfab.com/show/s0eX1riDqEY6bT0uBtCjxC4V7OA', |
| 22 | 'https://sketchfab.com/show/lwVPifecIahu0rtGqlzZosBPFOC', |
| 23 | 'https://sketchfab.com/show/9lVs96AuFUAjKjwvsMG0Uf7Yy7b', |
| 24 | 'https://sketchfab.com/models/9afc7ce5f32b43a692e8861d6692ec2c', |
| 25 | 'https://sketchfab.com/models/30abb37327074983b43e9e6687126486', |
| 26 | 'https://sketchfab.com/models/e1cbf443e14c494883ac4bfe0321b4a9', |
| 27 | 'https://sketchfab.com/d3mobile-m_world_league/folders/fbebdc3958ac4acb9734d72fd80ad393', |
| 28 | 'https://sketchfab.com/freedee/folders/aa34319b1809428d9f8a85249f2d4412', |
| 29 | 'https://sketchfab.com/incenptive/folders/511829a4256a4e0b87e2396ccc0188d9', |
| 30 | 'https://sketchfab.com/barker_js/folders/c07b36bc1e764c9b8b347d34d54f57a3', |
| 31 | 'https://sketchfab.com/makerpoint/folders/bb15a149166e49cdbae2647a6575ec20', |
| 32 | ), |
| 33 | 'invalid' => array( |
| 34 | 'https://sketchfab.com/browse/', |
| 35 | 'https://sketchfab.com/browse/faved', |
| 36 | 'https://sketchfab.com/show/9lVs96AuFUAjKjwvsMG0Uf7Yy7b/other/crap', |
| 37 | 'https://sketchfab.com/order', |
| 38 | 'https://sketchfab.com/show/', |
| 39 | 'https://sketchfab.com/dashboard/upload', |
| 40 | 'https://sketchfab.com/models/', |
| 41 | 'https://sketchfab.com/show/', |
| 42 | ), |
| 43 | 'normalize' => array( |
| 44 | 'https://www.sketchfab.com/show/9lVs96AuFUAjKjwvsMG0Uf7Yy7b' => 'https://sketchfab.com/models/9lVs96AuFUAjKjwvsMG0Uf7Yy7b', |
| 45 | 'https://sketchfab.com/show/9lVs96AuFUAjKjwvsMG0Uf7Yy7b' => 'https://sketchfab.com/models/9lVs96AuFUAjKjwvsMG0Uf7Yy7b', |
| 46 | 'https://sketchfab.com/show/9lVs96AuFUAjKjwvsMG0Uf7Yy7b/' => 'https://sketchfab.com/models/9lVs96AuFUAjKjwvsMG0Uf7Yy7b', |
| 47 | 'https://www.sketchfab.com/models/9lVs96AuFUAjKjwvsMG0Uf7Yy7b/' => 'https://sketchfab.com/models/9lVs96AuFUAjKjwvsMG0Uf7Yy7b', |
| 48 | 'https://sketchfab.com/models/e1cbf443e14c494883ac4bfe0321b4a9/embed' => 'https://sketchfab.com/models/e1cbf443e14c494883ac4bfe0321b4a9', |
| 49 | 'https://sketchfab.com/models/e1cbf443e14c494883ac4bfe0321b4a9/embed/' => 'https://sketchfab.com/models/e1cbf443e14c494883ac4bfe0321b4a9', |
| 50 | 'https://sketchfab.com/models/e1cbf443e14c494883ac4bfe0321b4a9' => 'https://sketchfab.com/models/e1cbf443e14c494883ac4bfe0321b4a9', |
| 51 | ), |
| 52 | 'fake' => array( |
| 53 | 'type' => 'rich', |
| 54 | 'html' => '<iframe' |
| 55 | ) |
| 56 | ); |
| 57 | |
| 58 | public function testProvider() { $this->validateProvider('Sketchfab'); } |
| 59 | } |
| 60 | ?> |
| 61 |