assertEquals( $this->get_checkout_url(), wc_get_checkout_url() ); } /** * Test get_checkout_url over HTTP. * * @since 2.5.0 */ public function test_get_checkout_url_ssl() { // Make sure pages exist WC_Install::create_pages(); // Force SSL checkout update_option( 'woocommerce_force_ssl_checkout', 'yes' ); $this->assertEquals( $this->get_checkout_url(), wc_get_checkout_url() ); } /** * Test wc_empty_cart(). * * @since 2.3.0 */ public function test_wc_empty_cart() { // Create dummy product $product = WC_Helper_Product::create_simple_product(); // Add the product to the cart WC()->cart->add_to_cart( $product->get_id(), 1 ); // Empty the cart wc_empty_cart(); // Check if the cart is empty $this->assertEquals( 0, WC()->cart->get_cart_contents_count() ); } /** * Test wc_format_list_of_items(). * * @since 2.4 */ public function test_wc_format_list_of_items() { $items = array( 'Title 1', 'Title 2' ); $this->assertEquals( 'Title 1 and Title 2', wc_format_list_of_items( $items ) ); } /** * Test wc_cart_totals_subtotal_html(). * * @since 2.4 */ public function test_wc_cart_totals_subtotal_html() { $product = WC_Helper_Product::create_simple_product(); WC()->cart->add_to_cart( $product->get_id(), 1 ); $this->expectOutputString( wc_price( $product->get_price( 'edit' ) ), wc_cart_totals_subtotal_html() ); } /** * Test wc_cart_totals_coupon_label(). * * @since 2.4 */ public function test_wc_cart_totals_coupon_label() { $coupon = WC_Helper_Coupon::create_coupon(); $this->expectOutputString( apply_filters( 'woocommerce_cart_totals_coupon_label', 'Coupon: ' . $coupon->get_code() ), wc_cart_totals_coupon_label( $coupon ) ); } /** * Test get_cart_url method. * * @since 2.5.0 */ public function test_wc_get_cart_url() { $cart_page_url = wc_get_page_permalink( 'cart' ); $this->assertEquals( apply_filters( 'woocommerce_get_cart_url', $cart_page_url ? $cart_page_url : '' ), wc_get_cart_url() ); } /** * Test wc_add_to_cart_message */ public function test_wc_add_to_cart_message() { $product = WC_Helper_Product::create_simple_product(); $message = wc_add_to_cart_message( array( $product->get_id() => 1 ), false, true ); $this->assertEquals( 'View cart “Dummy Product” has been added to your cart.', $message ); $message = wc_add_to_cart_message( array( $product->get_id() => 3 ), false, true ); $this->assertEquals( 'View cart “Dummy Product” has been added to your cart.', $message ); $message = wc_add_to_cart_message( array( $product->get_id() => 1 ), true, true ); $this->assertEquals( 'View cart “Dummy Product” has been added to your cart.', $message ); $message = wc_add_to_cart_message( array( $product->get_id() => 3 ), true, true ); $this->assertEquals( 'View cart 3 × “Dummy Product” have been added to your cart.', $message ); $message = wc_add_to_cart_message( $product->get_id(), false, true ); $this->assertEquals( 'View cart “Dummy Product” has been added to your cart.', $message ); $message = wc_add_to_cart_message( $product->get_id(), true, true ); $this->assertEquals( 'View cart “Dummy Product” has been added to your cart.', $message ); } }