1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

delete all data before testing customer switching

This commit is contained in:
Pavel 2020-06-09 11:20:52 +03:00
parent e59e09bc87
commit 9aa5293eac
2 changed files with 39 additions and 10 deletions

View file

@ -47,6 +47,43 @@ class WC_Retailcrm_Test_Case_Helper extends WC_Unit_Test_Case
return $options;
}
/**
* Removes all data from the DB.
*/
protected function deleteAllData()
{
if (function_exists('_delete_all_data')) {
_delete_all_data();
} else {
global $wpdb;
foreach ( array(
$wpdb->posts,
$wpdb->postmeta,
$wpdb->comments,
$wpdb->commentmeta,
$wpdb->term_relationships,
$wpdb->termmeta,
) as $table ) {
//phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
$wpdb->query( "DELETE FROM {$table}" );
}
foreach ( array(
$wpdb->terms,
$wpdb->term_taxonomy,
) as $table ) {
//phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
$wpdb->query( "DELETE FROM {$table} WHERE term_id != 1" );
}
$wpdb->query( "UPDATE {$wpdb->term_taxonomy} SET count = 0" );
$wpdb->query( "DELETE FROM {$wpdb->users} WHERE ID != 1" );
$wpdb->query( "DELETE FROM {$wpdb->usermeta} WHERE user_id != 1" );
}
}
/**
* @return array
*/

View file

@ -126,6 +126,7 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
public function test_history_switch_customer_tests()
{
$this->deleteAllData();
$this->regenerateMocks();
$order_id = $this->history_order_create_for_changing_customer();
$this->assertNotEmpty($order_id);
@ -296,16 +297,7 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
$this->assertEquals('Еврейская Автономная область', $order->get_billing_state());
$this->assertEquals('Компания1', $order->get_billing_company());
$this->assertEquals('9135487458709', $order->get_billing_phone());
$orderUser = $order->get_user();
if ($orderUser instanceof WP_User) {
WC_Retailcrm_Logger::debug(__METHOD__, get_user_meta($orderUser->ID));
$this->assertEquals('psycho913', $orderUser->get('_billing_first_name'));
$this->assertEquals('psycho913', $orderUser->get('_billing_last_name'));
} else {
$this->assertEmpty($order->get_customer_id());
}
$this->assertEmpty($order->get_customer_id());
}
/**