本文整理汇总了PHP中Zend_Service_DeveloperGarden_SecurityTokenServer_Cache类的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Service_DeveloperGarden_SecurityTokenServer_Cache类的具体用法?PHP Zend_Service_DeveloperGarden_SecurityTokenServer_Cache怎么用?PHP Zend_Service_DeveloperGarden_SecurityTokenServer_Cache使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Zend_Service_DeveloperGarden_SecurityTokenServer_Cache类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getTokens
/**
* returns the fetched token from token server
*
* @return Zend_Service_DeveloperGarden_Response_SecurityTokenServer_GetTokensResponse
*/
public function getTokens()
{
$token = Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache('getTokens');
if ($token === null || !$token->isValid()) {
$token = $this->getSoapClient()->getTokens(array('serviceId' => $this->_serviceAuthId));
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setTokenToCache('getTokens', $token);
}
return $token;
}
示例2: testTokenCacheGetTokenFromCacheWithZendCacheAndCacheHit
public function testTokenCacheGetTokenFromCacheWithZendCacheAndCacheHit()
{
$tokensAr = array('securityToken', 'getTokens');
$cache = Zend_Cache::factory('Core', 'File', array('automatic_serialization' => true), array());
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setCache($cache));
$this->assertType('Zend_Cache_Core', Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getCache());
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::resetTokenCache();
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::clearCache();
$tokens = $this->service->getTokens();
$this->assertType('Zend_Service_DeveloperGarden_Response_SecurityTokenServer_GetTokensResponse', $tokens);
$this->assertType('Zend_Service_DeveloperGarden_Response_SecurityTokenServer_SecurityTokenResponse', $tokens->securityToken);
$this->assertNotNull('Zend_Service_DeveloperGarden_Response_SecurityTokenServer_SecurityTokenResponse', $tokens->getSecurityToken());
foreach ($tokensAr as $v) {
$this->assertNotNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
$this->assertNotNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
}
}
示例3: testTokenCacheGetTokenFromCacheWithZendCache
public function testTokenCacheGetTokenFromCacheWithZendCache()
{
$tokens = array('securityToken', 'getTokens');
// require_once 'Zend/Cache.php';
$cache = Zend_Cache::factory('Core', 'File', array(), array());
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setCache($cache));
$this->assertType('Zend_Cache_Core', Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getCache());
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::resetTokenCache();
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::clearCache();
foreach ($tokens as $v) {
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
}
}
示例4: testGetClientOptionsWithWsdlCache
public function testGetClientOptionsWithWsdlCache()
{
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setWsdlCache(WSDL_CACHE_BOTH));
$options = $this->service->getClientOptions();
$this->assertType('array', $options);
$this->assertArrayHasKey('cache_wsdl', $options);
$this->assertEquals(WSDL_CACHE_BOTH, $options['cache_wsdl']);
}
示例5: getClientOptions
/**
* returns an array with configured options for this client
*
* @return array
*/
public function getClientOptions()
{
$options = array('soap_version' => SOAP_1_1);
if (!empty($this->_classMap)) {
$options['classmap'] = $this->_classMap;
}
$wsdlCache = Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getWsdlCache();
if ($wsdlCache !== null) {
$options['cache_wsdl'] = $wsdlCache;
}
return $options;
}
示例6: testTokenCacheGetTokenFromCacheWithZendCache
public function testTokenCacheGetTokenFromCacheWithZendCache()
{
$tokens = array('securityToken', 'getTokens');
$cache = Zend\Cache\Cache::factory('Core', 'File', array(), array());
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setCache($cache));
$this->assertInstanceOf('Zend\\Cache\\Frontend\\Core', Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getCache());
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::resetTokenCache();
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::clearCache();
foreach ($tokens as $v) {
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
}
}
示例7: testGetClientOptionsWithWsdlCache
public function testGetClientOptionsWithWsdlCache()
{
if (!extension_loaded('soap')) {
$this->markTestSkipped('SOAP extension is not loaded');
}
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setWsdlCache(WSDL_CACHE_BOTH));
$options = $this->service->getClientOptions();
$this->assertTrue(is_array($options));
$this->assertArrayHasKey('cache_wsdl', $options);
$this->assertEquals(WSDL_CACHE_BOTH, $options['cache_wsdl']);
}
示例8: setWsdlCache
/**
* Set a cache for wsdl file
*
* @param integer $cache
* @return void
*/
public static function setWsdlCache($cache = null)
{
self::$_wsdlCache = $cache;
}