]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - tests/unit_test_backend_cvs.php
extended the functionality of the cvs backend, extended the unit test
[SourceForge/phpwiki.git] / tests / unit_test_backend_cvs.php
1 <?php
2 /**
3  * Unit tests the 'lib/WikiDB/backend/cvs.php' file and with it
4  * the class WikiDB_backend_cvs. This isn't based on the PhpUnit, and
5  * is designed to be run directly using the php4 command.
6  *
7  * Author: Gerrit Riessen, gerrit.riessen@open-source-consultants.de
8  */
9
10 // assume that the we've cd'ed to the tests directory
11 ini_set('include_path', '..' );
12
13 function rcs_id()
14 {
15 }
16
17 if ( $USER == "root" ) {
18   // root user can't check in to a CVS repository
19   print( "can not be run as root\n" );
20   exit();
21 }
22
23 // set to false if something went wrong
24 $REMOVE_DEBUG = true;
25
26 require_once( 'lib/WikiDB/backend/cvs.php' );
27
28 $db_params                           = array();
29 /**
30  * These are the parameters required by the backend. 
31  */
32 $db_params[CVS_PAGE_SOURCE]          = "../pgsrc";
33 $db_params[CVS_CHECK_FOR_REPOSITORY] = true;
34 // the following three are removed if the test succeeds.
35 $db_params[CVS_DOC_DIR]              = "/tmp/wiki_docs";
36 $db_params[CVS_REPOSITORY]           = "/tmp/wiki_repository";
37 $db_params[CVS_DEBUG_FILE]           = "/tmp/php_cvs.log";
38
39 //
40 // Check the creation of a new CVS repository and the importing of
41 // the default pages.
42 //
43 $cvsdb = new WikiDB_backend_cvs( $db_params );
44 // check that all files contained in page source where checked in.
45 $allPageNames = array();
46 $d = opendir( $db_params[CVS_PAGE_SOURCE] );
47 while ( $entry = readdir( $d ) ) {
48     exec( "grep 'Checking in $entry' " . $db_params[CVS_DEBUG_FILE],
49           $cmdOutput, $cmdRetval );
50     
51     if ( !is_dir( $db_params[CVS_PAGE_SOURCE] . "/" . $entry )) {
52         $allPageNames[] = $entry;
53         
54         if ( $cmdRetval ) {
55             print "*** Error: [$entry] was not checked in -- view " 
56                 . $db_params[CVS_DEBUG_FILE] . " for details\n";
57             $REMOVE_DEBUG = false;
58         }
59     }
60 }
61 closedir( $d );
62
63 //
64 // Check that the meta data files were created
65 //
66 function get_pagedata( $page_name, $key, &$cvsdb ) 
67 {
68     global $REMOVE_DEBUG;
69     $pageHash = $cvsdb->get_pagedata( $page_name );
70     if ( $pageHash[CMD_VERSION] != "1" ) {
71         print ( "*** Error: [$page_name] version wrong 1 != "
72                 . $pageHash[CMD_VERSION] ."\n" );
73         $REMOVE_DEBUG = false;
74     }
75
76     $new_data = array();
77     $new_data[CMD_CONTENT] = "";
78     $cvsdb->update_pagedata( $page_name, $new_data );
79
80     $pageHash = $cvsdb->get_pagedata( $page_name );
81     if ( $pageHash[CMD_VERSION] != "2" ) {
82         print ( "*** Error: [$page_name] version wrong 2 != "
83                 . $pageHash[CMD_VERSION] ."\n" );
84         $REMOVE_DEBUG = false;
85     }
86 }
87 array_walk( $allPageNames, 'get_pagedata', $cvsdb );
88
89 //
90 // test the add and delete pages
91 //
92 $new_page_data = array();
93 $pname = "Hello_World_Fubar";
94
95 $new_page_data[CMD_CONTENT] = "hello world\nPlease to meet you\n\n";
96 $cvsdb->update_pagedata( $pname, $new_page_data );
97 if ( $cvsdb->get_latest_version( $pname ) != "1" ) {
98     print( "***Error Line " . __LINE__ . ": expecting version number 1\n");
99     $REMOVE_DEBUG=false;
100 }
101
102 $new_page_data[CMD_CONTENT] = "goodbye cruel world\nbye bye....\n";
103 $cvsdb->update_pagedata( $pname, $new_page_data );
104 if ( $cvsdb->get_latest_version( $pname ) != "2" ) {
105     print( "***Error Line " . __LINE__ . ": expecting version number 2\n");
106     $REMOVE_DEBUG=false;
107 }
108
109 //
110 // clean up after ourselves
111 //
112 if ( $REMOVE_DEBUG ) {
113     exec( "rm -fr " . $db_params[CVS_DOC_DIR], $cmdout, $retval );
114     exec( "rm -fr " . $db_params[CVS_REPOSITORY], $cmdout, $retval );
115     exec( "rm -f " . $db_params[CVS_DEBUG_FILE], $cmdout, $retval );
116 } else {
117     print "It appears something went wrong, nothing being removed\n";
118 }
119
120 ?>