first test for API, need refactor

This commit is contained in:
Nicolas Lœuillet 2015-02-10 23:13:34 +01:00
parent f5deb024a2
commit e1dd7f70c5
2 changed files with 25 additions and 5 deletions

View file

@ -33,7 +33,7 @@ class WallabagRestController extends Controller
throw $this->createNotFoundException(); throw $this->createNotFoundException();
} }
return $user->getSalt(); return array($user->getSalt());
} }
/** /**
* Retrieve all entries. It could be filtered by many options. * Retrieve all entries. It could be filtered by many options.

View file

@ -3,6 +3,7 @@
namespace Wallabag\CoreBundle\Tests\Controller; namespace Wallabag\CoreBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
use Symfony\Component\Security\Core\Encoder\MessageDigestPasswordEncoder;
class WallabagRestControllerTest extends WebTestCase class WallabagRestControllerTest extends WebTestCase
{ {
@ -16,11 +17,31 @@ class WallabagRestControllerTest extends WebTestCase
$this->assertEquals(404, $client->getResponse()->getStatusCode()); $this->assertEquals(404, $client->getResponse()->getStatusCode());
} }
public function testEmptyGetEntries() public function testGetEntries()
{ {
$client = $this->createClient(); $client = $this->createClient();
$client->request('GET', '/api/entries'); $client->request('GET', '/api/salts/admin.json');
$this->assertTrue($client->getResponse()->isOk()); $content = json_decode($client->getResponse()->getContent());
$salt = $content[0];
$username = 'admin';
$password = 'test';
$encryptedPassword = sha1($password.$username.$salt);
$nonce = substr(md5(uniqid('nonce_', true)), 0, 16);
$now = new \DateTime('now', new \DateTimeZone('UTC'));
$created = (string)$now->format( 'Y-m-d\TH:i:s\Z' );
$digest = base64_encode(sha1(base64_decode($nonce).$created.$encryptedPassword, true));
$headers = array(
'PHP_AUTH_USER' => 'username',
'HTTP_AUTHORIZATION' => 'Authorization profile="UsernameToken"',
'HTTP_x-wsse' => 'X-WSSE: UsernameToken Username="'.$username.'", PasswordDigest="'.$digest.'", Nonce="'.$nonce.'", Created="'.$created.'"'
);
$client->request('GET', '/api/entries', array(), array(), $headers);
$this->assertContains('Mailjet', $client->getResponse()->getContent());
$this->assertTrue( $this->assertTrue(
$client->getResponse()->headers->contains( $client->getResponse()->headers->contains(
@ -28,6 +49,5 @@ class WallabagRestControllerTest extends WebTestCase
'application/json' 'application/json'
) )
); );
$this->assertEquals('[]', $client->getResponse()->getContent());
} }
} }