29 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php declare(strict_types=1);
 | |
| class ShimmieApiTest extends ShimmiePHPUnitTestCase
 | |
| {
 | |
|     public function testAPI()
 | |
|     {
 | |
|         $this->log_in_as_user();
 | |
|         $image_id = $this->post_image("tests/pbx_screenshot.jpg", "pbx");
 | |
| 
 | |
|         // FIXME: get_page should support GET params
 | |
|         $this->get_page("api/shimmie/get_tags");
 | |
|         $this->get_page("api/shimmie/get_tags/pb");
 | |
|         //$this->get_page("api/shimmie/get_tags?tag=pb");
 | |
|         $this->get_page("api/shimmie/get_image/$image_id");
 | |
|         //$this->get_page("api/shimmie/get_image?id=$image_id");
 | |
|         $this->get_page("api/shimmie/find_images");
 | |
|         $this->get_page("api/shimmie/find_images/pbx");
 | |
|         $this->get_page("api/shimmie/find_images/pbx/1");
 | |
| 
 | |
|         $page = $this->get_page("api/shimmie/get_user/demo");
 | |
|         $this->assertEquals(200, $page->code);
 | |
| 
 | |
|         //$this->get_page("api/shimmie/get_user?name=demo");
 | |
|         //$this->get_page("api/shimmie/get_user?id=2");
 | |
| 
 | |
|         // FIXME: test unspecified / bad values
 | |
|         // FIXME: test that json is encoded properly
 | |
|     }
 | |
| }
 |