document.php 6.91 KB
<?
/**
 * $Id$
 *
 * KnowledgeTree Open Source Edition
 * Document Management Made Simple
 * Copyright (C) 2004 - 2008 The Jam Warehouse Software (Pty) Limited
 * 
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License version 3 as published by the
 * Free Software Foundation.
 * 
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 * details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 * 
 * You can contact The Jam Warehouse Software (Pty) Limited, Unit 1, Tramber Place,
 * Blake Street, Observatory, 7925 South Africa. or email info@knowledgetree.com.
 * 
 * The interactive user interfaces in modified source and object code versions
 * of this program must display Appropriate Legal Notices, as required under
 * Section 5 of the GNU General Public License version 3.
 * 
 * In accordance with Section 7(b) of the GNU General Public License version 3,
 * these Appropriate Legal Notices must retain the display of the "Powered by
 * KnowledgeTree" logo and retain the original copyright notice. If the display of the 
 * logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices
 * must display the words "Powered by KnowledgeTree" and retain the original 
 * copyright notice. 
 * Contributor( s): ______________________________________
 *
 */
require_once(dirname(__FILE__) . '/../test.php');
require_once(KT_DIR .  '/ktapi/ktapi.inc.php');

class APIDocumentHelper
{
	function createRandomFile($content='this is some text')
	 {
	 	$temp = tempnam(dirname(__FILE__),'myfile');
	 	$fp = fopen($temp, 'wt');
	 	fwrite($fp, $content);	 	
	 	fclose($fp);
	 	
	 	return $temp;
	 }
	
	
}


class APIDocumentTestCase extends KTUnitTestCase 
{
	/**
	 * @var KTAPI
	 */
	var $ktapi;
	
	/**
	 * @var KTAPI_Folder
	 */
	var $root;
	
	var $session;
	
	 function setUp() 
	 {
	 	$this->ktapi = new KTAPI();
	 	$this->session=$this->ktapi->start_system_session();
	 	
	 	$this->root = $this->ktapi->get_root_folder();
	 	$this->assertTrue(is_a($this->root,'KTAPI_Folder'));
	 	
	 }
	
	 function tearDown() 
	 {
	 	$this->session->logout();
	 }
	 

	 
	 
	 function testAddDocument()
	 {
	 	
	 	return;
	 	$randomFile = APIDocumentHelper::createRandomFile();
	 	$this->assertTrue(is_file($randomFile));	 	
	 	
	 	$document = $this->root->add_document('testtitle.txt','testname.txt', 'Default', $randomFile);
	 	$this->assertTrue(is_a($document, 'KTAPI_Document'));
	 	
	 	@unlink($randomFile);
	 	
	 	$documentid = $document->get_documentid();
	 		 	
	 	// get document
	 	$document = $this->ktapi->get_document_by_id($documentid);
	 	$this->assertTrue(is_a($document, 'KTAPI_Document'));
	 	$this->assertEqual($document->get_title(),'testtitle.txt');
	 	
	 	$document->delete('because we can');
	 	
	 	// check if document still exists
	 	$document = $this->ktapi->get_document_by_id($documentid);
	 	$this->assertTrue(is_a($document, 'KTAPI_Document'));
	 	$this->assertTrue($document->is_deleted());
	 	
	 	$document->expunge();
	 	
	 	// check if document still exists
	 	$document = $this->ktapi->get_document_by_id($documentid);
	 	$this->assertFalse(is_a($document, 'KTAPI_Document'));
	 	
	 	
	 }
	 
	 function testCheckinDocument()
	 {
	 	return;
	 	
	 	$randomFile = APIDocumentHelper::createRandomFile();
	 	$this->assertTrue(is_file($randomFile));
	 	
	 	$document = $this->root->add_document('testtitle.txt','testname.txt', 'Default', $randomFile);
	 	$this->assertTrue(is_a($document, 'KTAPI_Document'));
	 	
	 	@unlink($randomFile);
	 	$documentid = $document->get_documentid();
	 	
	 	// document should be checked in
	 	$document = $this->ktapi->get_document_by_id($documentid);
	 	$this->assertFalse($document->is_checked_out());
	 	
	 	$document->checkout('because');
	 	
	 	// document should now be checked out
	 	$document = $this->ktapi->get_document_by_id($documentid);
	 	$this->assertTrue($document->is_checked_out());
	 	
	 	$document->undo_checkout('because we want to undo it');

	 	// document should be checked in
	 	$document = $this->ktapi->get_document_by_id($documentid);
	 	$this->assertFalse($document->is_checked_out());

	 	$document->checkout('because');
	 	
	 	// document should now be checked out
	 	$document = $this->ktapi->get_document_by_id($documentid);
	 	$this->assertTrue($document->is_checked_out());
	 	
	 	// create another random file
	 	$randomFile = APIDocumentHelper::createRandomFile('updating the previous content');
	 	$this->assertTrue(is_file($randomFile));
	 	
	 	$document->checkin('testname.txt','updating', $randomFile);
	 	@unlink($randomFile);
	 	// document should be checked in
	 	$document = $this->ktapi->get_document_by_id($documentid);
	 	$this->assertFalse($document->is_checked_out());
	 	
	 	$document->delete('because we can');
	 	$document->expunge();
	 }
	 
	 function testAddingDuplicateTitle()
	 {
		$randomFile = APIDocumentHelper::createRandomFile();
	 	$this->assertTrue(is_file($randomFile));
	 		 	
	 	$document = $this->root->add_document('testtitle.txt','testname.txt', 'Default', $randomFile);
	 	$this->assertTrue(is_a($document, 'KTAPI_Document'));
	 	$this->assertFalse(is_file($randomFile));
	 	
	 	
	 	$documentid = $document->get_documentid();

	 	// file would have been cleaned up because of the add_document
	 	$randomFile = APIDocumentHelper::createRandomFile();
	 	$this->assertTrue(is_file($randomFile));
	 	
	 	
	 	// filenames must be the same as above
	 	$document2 = $this->root->add_document('testtitle.txt','testname2.txt', 'Default', $randomFile);
	 	$this->assertFalse(is_a($document2, 'KTAPI_Document'));
	 	
	 	@unlink($randomFile);
	 	
	 	$document->delete('because we can');
	 	$document->expunge();
	 	
	 	if (is_a($document2, 'KTAPI_Document'))
	 	{
	 		$document2->delete('because we can');
	 		$document2->expunge();
	 	}
	 	
	 }
	 
	 function testAddingDuplicateFile()
	 {
		$randomFile = APIDocumentHelper::createRandomFile();
	 	$this->assertTrue(is_file($randomFile));
	 		 	
	 	$document = $this->root->add_document('testtitle.txt','testname.txt', 'Default', $randomFile);
	 	$this->assertTrue(is_a($document, 'KTAPI_Document'));
	 	$this->assertFalse(is_file($randomFile));	 	
	 	
	 	$documentid = $document->get_documentid();
	 	
		$randomFile = APIDocumentHelper::createRandomFile();
	 	$this->assertTrue(is_file($randomFile));
	 	
	 	// filenames must be the same as above
	 	$document2 = $this->root->add_document('testtitle2.txt','testname.txt', 'Default', $randomFile);
	 	$this->assertFalse(is_a($document2, 'KTAPI_Document'));
	 	
	 	@unlink($randomFile);
	 	
	 	$document->delete('because we can');
	 	$document->expunge();
	 	
	 	if (is_a($document2, 'KTAPI_Document'))
	 	{
	 		$document2->delete('because we can');
	 		$document2->expunge();
	 	}
	 }	 
}


?>