Ojs\ApiBundle\Tests\Controller\JournalArticleFileRestControllerTest::testPostFileAction PHP 메소드

testPostFileAction() 공개 메소드

public testPostFileAction ( )
    public function testPostFileAction()
    {
        $content = ['file' => ['filename' => 'sampleArticleFile.pdf', 'encoded_content' => $this->sampleArticleFileEncoded], 'type' => 2, 'langCode' => 1, 'title' => 'PHPUnit Test Title', 'description' => 'PHPUnit Test Title'];
        $this->client->request('POST', '/api/v1/journal/1/article/1/files?apikey=' . $this->apikey, [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($content));
        $this->assertStatusCode(201, $this->client);
    }