Changeset 918 in tests for trunk/includes/testcase.php
- Timestamp:
- 07/19/2012 03:51:42 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/includes/testcase.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/testcase.php
r906 r918 1 1 <?php 2 2 3 require_once 'factory.php';4 require_once 'trac.php';3 require_once dirname( __FILE__ ) . '/factory.php'; 4 require_once dirname( __FILE__ ) . '/trac.php'; 5 5 6 6 class WP_UnitTestCase extends PHPUnit_Framework_TestCase { 7 8 protected static $forced_tickets = array(); 7 9 8 10 function setUp() { … … 128 130 $this->knownWPBug( $ticket ); 129 131 } elseif ( 'UT' == substr( $ticket, 0, 2 ) ) { 130 $this->knownUTBug( substr( $ticket, 2 ) ); 132 $ticket = substr( $ticket, 2 ); 133 if ( $ticket && is_numeric( $ticket ) ) 134 $this->knownUTBug( $ticket ); 135 } elseif ( 'Plugin' == substr( $ticket, 0, 6 ) ) { 136 $ticket = substr( $ticket, 6 ); 137 if ( $ticket && is_numeric( $ticket ) ) 138 $this->knownPluginBug( $ticket ); 131 139 } 132 140 } … … 137 145 */ 138 146 function knownWPBug( $ticket_id ) { 139 if ( ! WP_TESTS_FORCE_KNOWN_BUGS && ! TracTickets::isTracTicketClosed( 'http://core.trac.wordpress.org', $ticket_id ) ) { 147 if ( WP_TESTS_FORCE_KNOWN_BUGS || in_array( $ticket_id, self::$forced_tickets ) ) 148 return; 149 if ( ! TracTickets::isTracTicketClosed( 'http://core.trac.wordpress.org', $ticket_id ) ) 140 150 $this->markTestSkipped( sprintf( 'WordPress Ticket #%d is not fixed', $ticket_id ) ); 141 }142 151 } 143 152 … … 146 155 */ 147 156 function knownUTBug( $ticket_id ) { 148 if ( ! WP_TESTS_FORCE_KNOWN_BUGS && ! TracTickets::isTracTicketClosed( 'http://unit-tests.trac.wordpress.org', $ticket_id ) ) { 157 if ( WP_TESTS_FORCE_KNOWN_BUGS || in_array( 'UT' . $ticket_id, self::$forced_tickets ) ) 158 return; 159 if ( ! TracTickets::isTracTicketClosed( 'http://unit-tests.trac.wordpress.org', $ticket_id ) ) 149 160 $this->markTestSkipped( sprintf( 'Unit Tests Ticket #%d is not fixed', $ticket_id ) ); 150 }151 161 } 152 162 … … 155 165 */ 156 166 function knownPluginBug( $ticket_id ) { 157 if ( ! WP_TESTS_FORCE_KNOWN_BUGS && ! TracTickets::isTracTicketClosed( 'http://plugins.trac.wordpress.org', $ticket_id ) ) { 167 if ( WP_TESTS_FORCE_KNOWN_BUGS || in_array( 'Plugin' . $ticket_id, self::$forced_tickets ) ) 168 return; 169 if ( ! TracTickets::isTracTicketClosed( 'http://plugins.trac.wordpress.org', $ticket_id ) ) 158 170 $this->markTestSkipped( sprintf( 'WordPress Plugin Ticket #%d is not fixed', $ticket_id ) ); 159 } 171 } 172 173 public static function forceTicket( $ticket ) { 174 self::$forced_tickets[] = $ticket; 160 175 } 161 176
Note: See TracChangeset
for help on using the changeset viewer.