Skip to content
Snippets Groups Projects
Commit 83360e2a authored by pbarroca's avatar pbarroca
Browse files

OAI: ListIdentifiers enregistre correctement le resumptionToken en cache

parent 8827635c
Branches
Tags
No related merge requests found
......@@ -81,6 +81,9 @@ class Class_WebService_OAI_Request_ListIdentifiers {
} elseif (self::IDENTIFIERS_BY_PAGE < $count) {
$this->_token = Class_WebService_OAI_ResumptionToken::newWithParamsAndListSize($this->_params, $count);
}
if ($this->_token)
$this->_token->save();
$this->_notices = $this->_catalogue->getNotices($page_number);
}
......
......@@ -154,6 +154,7 @@ class OAIControllerListIdentifiersValidTest extends AbstractControllerTestCase {
class OAIControllerListIdentifiersWithPaginatorTest extends AbstractControllerTestCase {
protected $_xpath;
protected $_xml;
protected $_cache;
public function setUp() {
parent::setUp();
......@@ -175,16 +176,32 @@ class OAIControllerListIdentifiersWithPaginatorTest extends AbstractControllerTe
->newInstanceWithId(4)
->setClefAlpha('harrypotter-azkaban')
->setDateMaj('2012-04-03 11:42:42')));
$this->_cache = Storm_Test_ObjectWrapper::mock()
->whenCalled('save')
->answers(true);
Class_WebService_OAI_ResumptionToken::defaultCache($this->_cache);
$this->dispatch('/opac/oai/request?verb=ListIdentifiers&metadataPrefix=oai_dc');
$this->_xml = $this->_response->getBody();
}
public function tearDown() {
Class_WebService_OAI_ResumptionToken::defaultCache(null);
parent::tearDown();
}
/** @test */
public function shouldHaveResumptionToken() {
$this->_xpath->assertXPath($this->_xml, '//oai:resumptionToken');
}
/** @test */
public function shouldHaveSavedToken() {
$this->assertTrue($this->_cache->methodHasBeenCalled('save'));
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment