⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 article_test.class.php

📁 一个用PHP编写的
💻 PHP
字号:
<?php

	lt_include( PLOG_CLASS_PATH."class/test/helpers/lifetypetestcase.class.php" );
	lt_include( PLOG_CLASS_PATH."class/dao/article.class.php" );
	lt_include( PLOG_CLASS_PATH."class/dao/articlecomments.class.php" );	
	lt_include( PLOG_CLASS_PATH."class/dao/usercomment.class.php" );

	/**
	 * \ingroup Test
	 *
	 * Test cases for the Article class
	 */
	class Article_Test extends LifeTypeTestCase
	{
		function setUp()
		{
                // 
                // Note: if you are going to copy this code for another test, note that this code
                // doesn't ever add this article to the database, since if it did, it could
                // potentially overwrite your real blog data...
                //
                // build a dummy Article object			
			$this->article = new Article(
				"dummy topic",
				"dummy text",
				Array( 1 ),   // a dummy category
				Array( 1 ),   // a dummy user
				1,  // a dummy blog
				POST_STATUS_PUBLISHED,  // published status
				0   // not read yet
			);	
		}
		
		/** 
		 * regression test for mantis case 986 (http://bugs.lifetype.net/view.php?id=986)
		 * and for method Article::hasExtendedText in general
		 */
		function testHasExtendedText()
		{
			// set some normal extended text, it should return true
			$this->article->setExtendedText( "this is a test" );
			$this->assertTrue( $this->article->hasExtendedText(), "Extended text was set but hasExtendedText returned false!" );
			
			// remove the text and try again
			$this->article->setExtendedText( "" );
			$this->assertFalse( $this->article->hasExtendedText(), "there is no text set but hasExtendedText did not return false!" );			
			
			// set some text that should work as empty
			foreach( Array( "<br/>", "<br />", "<p/>", "<p />", "" ) as $emptyText ) {
				$this->article->setExtendedText( $emptyText );
				$this->assertFalse( $this->article->hasExtendedText(), 
				                    "extended text set to ".htmlspecialchars($emptyText).", which should count as no extended text ".
				                    "but hasExtendedText did not return false!" );						
			}
		}
		
		/**
		 * Test case for mantis issue http://bugs.lifetype.net/view.php?id=1244,
		 * Articles::setComments() not using the same internal array used by
		 * Articles::getComments()
		 */
		function testSetCommentsAndGetComments()
		{
			// create a dummy comment
			$c = new UserComment( $this->article->getId(), 
								  $this->article->getBlogId(), 
								  0, 
								  "topic", 
								  "text"
			     );
			
			$cSpam = new UserComment( $this->article->getId(), 
								  $this->article->getBlogId(), 
								  0, 
								  "topic spam", 
								  "text spam"
			     );
			$cSpam->setStatus( COMMENT_STATUS_SPAM );
			
			// now calling Article::getComments() after Article::setComments() with the dummy comment above
			// should not return the same
			$this->article->setComments( Array( $c ));
			$this->article->setComments( Array( $cSpam ), COMMENT_STATUS_SPAM );
			$this->assertEquals( Array( $c ), $this->article->getComments());
			$this->assertEquals( Array( $cSpam ), $this->article->getComments( COMMENT_STATUS_SPAM ));
		}
	}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -