| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Service_Akismet
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * @see Zend_Service_Akismet
- */
- require_once 'Zend/Service/Akismet.php';
- /**
- * @see Zend_Http_Client_Adapter_Test
- */
- require_once 'Zend/Http/Client/Adapter/Test.php';
- /**
- * @category Zend
- * @package Zend_Service_Akismet
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Service
- * @group Zend_Service_Akismet
- */
- class Zend_Service_AkismetTest extends PHPUnit_Framework_TestCase
- {
- public function setUp()
- {
- $this->akismet = new Zend_Service_Akismet('somebogusapikey', 'http://framework.zend.com/wiki/');
- $adapter = new Zend_Http_Client_Adapter_Test();
- $client = new Zend_Http_Client(null, array(
- 'adapter' => $adapter
- ));
- $this->adapter = $adapter;
- Zend_Service_Akismet::setHttpClient($client);
- $this->comment = array(
- 'user_ip' => '71.161.221.76',
- 'user_agent' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1)',
- 'comment_type' => 'comment',
- 'comment_content' => 'spam check'
- );
- }
- public function testBlogUrl()
- {
- $this->assertEquals('http://framework.zend.com/wiki/', $this->akismet->getBlogUrl());
- $this->akismet->setBlogUrl('http://framework.zend.com/');
- $this->assertEquals('http://framework.zend.com/', $this->akismet->getBlogUrl());
- }
- public function testApiKey()
- {
- $this->assertEquals('somebogusapikey', $this->akismet->getApiKey());
- $this->akismet->setApiKey('invalidapikey');
- $this->assertEquals('invalidapikey', $this->akismet->getApiKey());
- }
- public function testCharset()
- {
- $this->assertEquals('UTF-8', $this->akismet->getCharset());
- $this->akismet->setCharset('ISO-8859-1');
- $this->assertEquals('ISO-8859-1', $this->akismet->getCharset());
- }
- public function testPort()
- {
- $this->assertEquals(80, $this->akismet->getPort());
- $this->akismet->setPort(8080);
- $this->assertEquals(8080, $this->akismet->getPort());
- }
- public function testUserAgent()
- {
- $this->akismet->setUserAgent('MyUserAgent/1.0 | Akismet/1.11');
- $this->assertEquals('MyUserAgent/1.0 | Akismet/1.11', $this->akismet->getUserAgent());
- }
- public function testUserAgentDefaultMatchesFrameworkVersion()
- {
- $this->assertContains('Zend Framework/' . Zend_Version::VERSION, $this->akismet->getUserAgent());
- }
- public function testVerifyKey()
- {
- $response = "HTTP/1.0 200 OK\r\n"
- . "Content-type: text/plain; charset=utf-8\r\n"
- . "Content-length: 5\r\n"
- . "Server: LiteSpeed\r\n"
- . "Date: Tue, 06 Feb 2007 14:41:24 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "valid";
- $this->adapter->setResponse($response);
- $this->assertTrue($this->akismet->verifyKey());
- $response = "HTTP/1.0 200 OK\r\n"
- . "Content-type: text/plain; charset=utf-8\r\n"
- . "Content-length: 7\r\n"
- . "Server: LiteSpeed\r\n"
- . "Date: Tue, 06 Feb 2007 14:41:24 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "invalid";
- $this->adapter->setResponse($response);
- $this->assertFalse($this->akismet->verifyKey());
- }
- public function testIsSpamThrowsExceptionOnInvalidKey()
- {
- $response = "HTTP/1.0 200 OK\r\n"
- . "X-powered-by: PHP/4.4.2\r\n"
- . "Content-type: text/plain; charset=utf-8\r\n"
- . "X-akismet-server: 72.21.44.242\r\n"
- . "Content-length: 7\r\n"
- . "Server: LiteSpeed\r\n"
- . "Date: Tue, 06 Feb 2007 14:50:24 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "invalid";
- $this->adapter->setResponse($response);
- try {
- $this->akismet->isSpam($this->comment);
- $this->fail('Response of "invalid" should trigger exception');
- } catch (Exception $e) {
- // success
- }
- }
- public function testIsSpam()
- {
- $response = "HTTP/1.0 200 OK\r\n"
- . "X-powered-by: PHP/4.4.2\r\n"
- . "Content-type: text/plain; charset=utf-8\r\n"
- . "X-akismet-server: 72.21.44.242\r\n"
- . "Content-length: 4\r\n"
- . "Server: LiteSpeed\r\n"
- . "Date: Tue, 06 Feb 2007 14:50:24 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "true";
- $this->adapter->setResponse($response);
- $this->assertTrue($this->akismet->isSpam($this->comment));
- $response = "HTTP/1.0 200 OK\r\n"
- . "X-powered-by: PHP/4.4.2\r\n"
- . "Content-type: text/plain; charset=utf-8\r\n"
- . "X-akismet-server: 72.21.44.242\r\n"
- . "Content-length: 5\r\n"
- . "Server: LiteSpeed\r\n"
- . "Date: Tue, 06 Feb 2007 14:50:24 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "false";
- $this->adapter->setResponse($response);
- $this->assertFalse($this->akismet->isSpam($this->comment));
- }
- public function testSubmitSpamThrowsExceptionOnInvalidKey()
- {
- $response = "HTTP/1.0 200 OK\r\n"
- . "X-powered-by: PHP/4.4.2\r\n"
- . "Content-type: text/plain; charset=utf-8\r\n"
- . "X-akismet-server: 72.21.44.242\r\n"
- . "Content-length: 7\r\n"
- . "Server: LiteSpeed\r\n"
- . "Date: Tue, 06 Feb 2007 14:50:24 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "invalid";
- $this->adapter->setResponse($response);
- try {
- $this->akismet->submitSpam($this->comment);
- $this->fail('Response of "invalid" should trigger exception');
- } catch (Exception $e) {
- // success
- }
- }
- public function testSubmitSpam()
- {
- $response = "HTTP/1.0 200 OK\r\n"
- . "X-powered-by: PHP/4.4.2\r\n"
- . "Content-type: text/html\r\n"
- . "Content-length: 41\r\n"
- . "Server: LiteSpeed\r\n"
- . "Date: Tue, 06 Feb 2007 15:01:47 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "Thanks for making the web a better place.";
- $this->adapter->setResponse($response);
- try {
- $this->akismet->submitSpam($this->comment);
- } catch (Exception $e) {
- $this->fail('Valid key should not throw exceptions');
- }
- }
- public function testSubmitHam()
- {
- $response = "HTTP/1.0 200 OK\r\n"
- . "X-powered-by: PHP/4.4.2\r\n"
- . "Content-type: text/html\r\n"
- . "Content-length: 41\r\n"
- . "Server: LiteSpeed\r\n"
- . "Date: Tue, 06 Feb 2007 15:01:47 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "Thanks for making the web a better place.";
- $this->adapter->setResponse($response);
- try {
- $this->akismet->submitHam($this->comment);
- } catch (Exception $e) {
- $this->fail('Valid key should not throw exceptions');
- }
- }
- }
|