- Timestamp:
- 04/20/2020 10:28:21 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified sites/trunk/api.wordpress.org/public_html/events/1.0/tests/test-index.php ¶
r9749 r9750 27 27 $tests_failed += test_is_client_core(); 28 28 $tests_failed += test_get_iso_3166_2_country_codes(); 29 $tests_failed += test_remove_duplicate_events(); 29 30 30 31 $query_count = count( $wpdb->queries ); … … 1258 1259 $tests_expect_changes['core-user-agent'] = maybe_add_regional_wordcamps( $local_events, $region_data, $core_user_agent, $time_during_promo_phase_1, $location_country_within_region ); 1259 1260 1260 // There should only be one entry for an event, even if the local event array already contains the regional event.1261 $tests_expect_no_changes['duplicate-event'] = maybe_add_regional_wordcamps( array( $region_data['us']['event'] ), $region_data, $core_user_agent, $time_during_promo_phase_1, $location_country_within_region );1262 1263 1261 foreach ( $tests_expect_no_changes as $name => $result ) { 1264 switch ( $name ) { 1265 case 'duplicate-event': 1266 if ( $result !== array( $region_data['us']['event'] ) ) { 1267 $failed++; 1268 output_results( $name, false, array( $region_data['us']['event'] ), $result ); 1269 } 1270 break; 1271 default: 1272 if ( $result !== $local_events ) { 1273 $failed++; 1274 output_results( $name, false, $local_events, $result ); 1275 } 1276 break; 1262 if ( $result !== $local_events ) { 1263 $failed++; 1264 output_results( $name, false, $local_events, $result ); 1277 1265 } 1278 1266 } … … 1482 1470 1483 1471 /** 1472 * Test `remove_duplicate_events()`. 1473 */ 1474 function test_remove_duplicate_events() { 1475 $duplicate_events = array( 1476 // Each of these represents an event; extraneous fields have been removed for readability. 1477 array ( 1478 'url' => 'https://2020.us.wordcamp.org/', 1479 ), 1480 1481 array ( 1482 'url' => 'https://2020.detroit.wordcamp.org/', 1483 ), 1484 1485 array( 1486 // Intentionally missing the trailing slash, to account for inconsistencies in data. 1487 'url' => 'https://2020.us.wordcamp.org', 1488 ) 1489 ); 1490 1491 printf( "\n\nRunning 1 remove_duplicate_events() test\n" ); 1492 1493 $expected_result = array( 1494 array ( 1495 'url' => 'https://2020.us.wordcamp.org', 1496 ), 1497 1498 array ( 1499 'url' => 'https://2020.detroit.wordcamp.org/', 1500 ), 1501 ); 1502 1503 $actual_result = remove_duplicate_events( $duplicate_events ); 1504 $passed = $expected_result === $actual_result; 1505 1506 output_results( 'remove duplicate events', $passed, $expected_result, $actual_result ); 1507 1508 return $passed ? 0 : 1; 1509 } 1510 1511 /** 1484 1512 * Stub to simulate cache misses, so that the tests always get fresh results 1485 1513 *
Note: See TracChangeset
for help on using the changeset viewer.