WIP - Product CRUD (#12065)
* Created function to get the catalog visibility options
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Sanitize ids later
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Bump template version
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* Made abstract function useful
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* Allow WP_Query to preload post data, and meta in wc_get_products()
Allow WP_Query to bulk query for post data and meta if more than
just IDs are requested from wc_get_products(). Reduces query count
significantly.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Sanitize ids later
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Bump template version
* Made abstract function useful
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* Prevent notices
* Handle image_id from parent
* Fix error
* Remove _wc_save_product_price
* Remove todo
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* [Product CRUD] Abstract todos (#12305)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Revert "[Product CRUD] Abstract todos (#12305)"
This reverts commit 9a6136fcf88fec16f97457b7c8a4388f7587bfa2.
* Remove deprecated get_variation_id()
* New default attributes method
* [Product CRUD] Product Datastore (#12317)
* Fix up tests in the product/* folder.
* Handle data store updates for grouped, variable, external, simple, and general data store updates for products.
* Variations & variable changes.
* Update -functions.php calls to use data store.
* Add an interface for the public product data store methods.
* Finished product factory tests
* Correctly delete in the api, fix up some comments, and implement an interface for the public variable methods.
* Fix up delete in all versions of the api
* Handle feedback
* Match protected decloration to parent
* Product crud abstract todos (#12316)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Fix up store
* Fixed method returning in write context
* Fix error in variation admin
* Check for parent value - fixes tax class
* Remove old/complete todos
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* Remove deprecated get_variation_id()
* New default attributes method
* Fixed method returning in write context
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed coding standards
* TODO is not accurate.
* Should pass WC_Product instancies to WC_Comments methods (#12327)
* Use new method in abstract order class to prevent headers sent issue in tests
* Fixed variable description in REST API
* Updated how create initial product variation
* Fixed a few fatal errors and warnings in Products CRUD (#12329)
* Fixed a few fatal errors and warnings in Products CRUD
* Fixed sync functions
* Add variations CRUD to legacy API (#12331)
* Apply crud to variable products in legacy API v1
* New REST API do not need fallback for default attributes
* Apply variations CRUD to legacy API v2
* Legacy v2 - save default attributes
* Variations in legacy API v2 do not have descriptions
* Fixed legacy API v2 variations params
* Applied variations CRUD to legacy API v3
* Sync before save in legacy apis
* Punc
* Removed API todos
* Removed test
* Products endpoint tweaks (#12354)
* Var type already normalized on CRUD
* Let Product CRUD handle with validation, sanitization and conditional checks
* Set downloads using WC_Product_Download
* Stop try catch exceptions more than one time
* Handle WC_Data_Exception in legacy API
* Complete remove products when fails on creating
* On creating I mean!
* Already have a method to complete delete products
* Fixed standards using WP CodeSniffer
* get_the_terms() returns false when empty
* get_manage_stock returns boolean
@claudiosanches
* Merge conflict
* Variations API endpoint fixes
* Product CRUD improvements (#12359)
* args is not used any more - remove todo
* Added test for attributes
* wc_get_price_excluding_tax usage
* parent usage
* Fix rating counts
* Test fixes
* Cleanup after tests
* Make sure status transition code runs even during API calls, not just in admin.
* Default visibility
* Fix attribute setting in API
* Use get name instead of get title
* variation id usage
* Improved cross sell templates
* variation_data
* Grouped product sync
* Notices
* Sync is not needed in API
* Delete
* Rename interfaces
* Update counts in data store
2016-11-16 12:38:24 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Data Store Tests: Tests WC_Products's WC_Data_Store.
|
|
|
|
* @package WooCommerce\Tests\Product
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
class WC_Tests_Product_Data_Store extends WC_Unit_Test_Case {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make sure the default product store loads.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_product_store_loads() {
|
|
|
|
$product_store = new WC_Data_Store( 'product' );
|
|
|
|
$this->assertTrue( is_callable( array( $product_store, 'read' ) ) );
|
|
|
|
$this->assertEquals( 'WC_Product_Data_Store_CPT', $product_store->get_current_class_name() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test creating a new product.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_product_create() {
|
|
|
|
$product = new WC_Product;
|
|
|
|
$product->set_regular_price( 42 );
|
|
|
|
$product->set_name( 'My Product' );
|
|
|
|
$product->save();
|
|
|
|
|
|
|
|
$read_product = new WC_Product( $product->get_id() );
|
|
|
|
|
|
|
|
$this->assertEquals( '42', $read_product->get_regular_price() );
|
|
|
|
$this->assertEquals( 'My Product', $read_product->get_name() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test reading a product.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_product_read() {
|
|
|
|
$product = WC_Helper_Product::create_simple_product();
|
|
|
|
$product = new WC_Product( $product->get_id() );
|
|
|
|
|
|
|
|
$this->assertEquals( '10', $product->get_regular_price() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test updating a product.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_product_update() {
|
|
|
|
$product = WC_Helper_Product::create_simple_product();
|
|
|
|
|
|
|
|
$this->assertEquals( '10', $product->get_regular_price() );
|
|
|
|
|
|
|
|
$product->set_regular_price( 15 );
|
|
|
|
$product->save();
|
|
|
|
|
|
|
|
// Reread from database
|
|
|
|
$product = new WC_Product( $product->get_id() );
|
|
|
|
|
|
|
|
$this->assertEquals( '15', $product->get_regular_price() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test trashing a product.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_product_trash() {
|
|
|
|
$product = WC_Helper_Product::create_simple_product();
|
|
|
|
$product->delete();
|
|
|
|
$this->assertEquals( 'trash', $product->get_status() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test deleting a product.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_product_delete() {
|
|
|
|
$product = WC_Helper_Product::create_simple_product();
|
|
|
|
$product->delete( true );
|
|
|
|
$this->assertEquals( 0, $product->get_id() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test creating a new grouped product.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_grouped_product_create() {
|
|
|
|
$simple_product = WC_Helper_Product::create_simple_product();
|
|
|
|
$product = new WC_Product_Grouped;
|
|
|
|
$product->set_children( array( $simple_product->get_id() ) );
|
|
|
|
$product->set_name( 'My Grouped Product' );
|
|
|
|
$product->save();
|
|
|
|
$read_product = new WC_Product_Grouped( $product->get_id() );
|
|
|
|
$this->assertEquals( 'My Grouped Product', $read_product->get_name() );
|
|
|
|
$this->assertEquals( array( $simple_product->get_id() ), $read_product->get_children() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test getting / reading an grouped product.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_grouped_product_read() {
|
|
|
|
$product = WC_Helper_Product::create_grouped_product();
|
|
|
|
$read_product = new WC_Product_Grouped( $product->get_id() );
|
|
|
|
$this->assertEquals( 'Dummy Grouped Product', $read_product->get_name() );
|
|
|
|
$this->assertEquals( 2, count( $read_product->get_children() ) );
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Test updating an grouped product.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_grouped_product_update() {
|
|
|
|
$product = WC_Helper_Product::create_grouped_product();
|
|
|
|
$simple_product = WC_Helper_Product::create_simple_product();
|
|
|
|
$this->assertEquals( 'Dummy Grouped Product', $product->get_name() );
|
|
|
|
$this->assertEquals( 2, count( $product->get_children() ) );
|
|
|
|
$children = $product->get_children();
|
|
|
|
$children[] = $simple_product->get_id();
|
|
|
|
$product->set_children( $children );
|
|
|
|
$product->set_name( 'Dummy Grouped Product 2' );
|
|
|
|
$product->save();
|
|
|
|
// Reread from database
|
|
|
|
$product = new WC_Product_Grouped( $product->get_id() );
|
|
|
|
$this->assertEquals( 3, count( $product->get_children() ) );
|
|
|
|
$this->assertEquals( 'Dummy Grouped Product 2', $product->get_name() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test creating a new external product.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_external_product_create() {
|
|
|
|
$product = new WC_Product_External;
|
|
|
|
$product->set_regular_price( 42 );
|
|
|
|
$product->set_button_text( 'Test CRUD' );
|
|
|
|
$product->set_product_url( 'http://automattic.com' );
|
|
|
|
$product->set_name( 'My External Product' );
|
|
|
|
$product->save();
|
|
|
|
|
|
|
|
$read_product = new WC_Product_External( $product->get_id() );
|
|
|
|
|
|
|
|
$this->assertEquals( '42', $read_product->get_regular_price() );
|
|
|
|
$this->assertEquals( 'Test CRUD', $read_product->get_button_text() );
|
|
|
|
$this->assertEquals( 'http://automattic.com', $read_product->get_product_url() );
|
|
|
|
$this->assertEquals( 'My External Product', $read_product->get_name() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test getting / reading an external product. Make sure both our external
|
|
|
|
* product data and the main product data are present.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_external_product_read() {
|
|
|
|
$product = WC_Helper_Product::create_external_product();
|
|
|
|
$product = new WC_Product_External( $product->get_id() );
|
|
|
|
|
|
|
|
$this->assertEquals( 'Buy external product', $product->get_button_text() );
|
|
|
|
$this->assertEquals( '10', $product->get_regular_price() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test updating an external product. Make sure both our external
|
|
|
|
* product data and the main product data are written to and present.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_external_product_update() {
|
|
|
|
$product = WC_Helper_Product::create_external_product();
|
|
|
|
|
|
|
|
$this->assertEquals( 'Buy external product', $product->get_button_text() );
|
|
|
|
$this->assertEquals( '10', $product->get_regular_price() );
|
|
|
|
|
|
|
|
$product->set_button_text( 'Buy my external product' );
|
|
|
|
$product->set_regular_price( 15 );
|
|
|
|
$product->save();
|
|
|
|
|
|
|
|
// Reread from database
|
|
|
|
$product = new WC_Product_External( $product->get_id() );
|
|
|
|
|
|
|
|
$this->assertEquals( 'Buy my external product', $product->get_button_text() );
|
|
|
|
$this->assertEquals( '15', $product->get_regular_price() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test reading a variable product.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
public function test_variable_read() {
|
|
|
|
$product = WC_Helper_Product::create_variation_product();
|
|
|
|
$children = $product->get_children();
|
|
|
|
|
|
|
|
// Test sale prices too
|
|
|
|
update_post_meta( $children[0], '_price', '8' );
|
|
|
|
update_post_meta( $children[0], '_sale_price', '8' );
|
|
|
|
delete_transient( 'wc_var_prices_' . $product->get_id() );
|
|
|
|
|
|
|
|
$product = new WC_Product_Variable( $product->get_id() );
|
|
|
|
|
|
|
|
$this->assertEquals( 2, count( $product->get_children() ) );
|
|
|
|
|
|
|
|
$expected_prices['price'][ $children[0] ] = 8.00;
|
|
|
|
$expected_prices['price'][ $children[1] ] = 15.00;
|
|
|
|
$expected_prices['regular_price'][ $children[0] ] = 10.00;
|
|
|
|
$expected_prices['regular_price'][ $children[1] ] = 15.00;
|
|
|
|
$expected_prices['sale_price'][ $children[0] ] = 8.00;
|
|
|
|
$expected_prices['sale_price'][ $children[1] ] = 15.00;
|
|
|
|
|
|
|
|
$this->assertEquals( $expected_prices, $product->get_variation_prices() );
|
|
|
|
|
|
|
|
$expected_attributes = array( 'pa_size' => array( 'small', 'large' ) );
|
|
|
|
$this->assertEquals( $expected_attributes, $product->get_variation_attributes() );
|
|
|
|
$product->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test variable and variations.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
|
|
|
function test_variables_and_variations() {
|
|
|
|
$product = new WC_Product_Variable;
|
|
|
|
$product->set_name( 'Variable Product' );
|
|
|
|
|
|
|
|
$attribute = new WC_Product_Attribute();
|
|
|
|
$attribute->set_id( 0 );
|
|
|
|
$attribute->set_name( 'pa_color' );
|
|
|
|
$attribute->set_options( explode( WC_DELIMITER, 'green | red' ) );
|
|
|
|
$attribute->set_visible( false );
|
|
|
|
$attribute->set_variation( true );
|
|
|
|
|
|
|
|
$product->set_attributes( array( $attribute ) );
|
|
|
|
$product->save();
|
|
|
|
|
|
|
|
$this->assertEquals( 'Variable Product', $product->get_name() );
|
|
|
|
|
|
|
|
$variation = new WC_Product_Variation;
|
|
|
|
$variation->set_name( 'Variation #1 of Dummy Variable CRUD Product' );
|
|
|
|
$variation->set_parent_id( $product->get_id() );
|
|
|
|
$variation->set_regular_price( 10 );
|
|
|
|
$variation->set_sku( 'CRUD DUMMY SKU VARIABLE GREEN' );
|
|
|
|
$variation->set_manage_stock( 'no' );
|
|
|
|
$variation->set_downloadable( 'no' );
|
|
|
|
$variation->set_virtual( 'no' );
|
|
|
|
$variation->set_stock_status( 'instock' );
|
|
|
|
$variation->set_attributes( array( 'pa_color' => 'green' ) );
|
|
|
|
$variation->save();
|
|
|
|
|
|
|
|
$this->assertEquals( 'Variation #1 of Dummy Variable CRUD Product', $variation->get_name() );
|
|
|
|
$this->assertEquals( 'CRUD DUMMY SKU VARIABLE GREEN', $variation->get_sku() );
|
|
|
|
$this->assertEquals( 10, $variation->get_price() );
|
|
|
|
|
|
|
|
$product = new WC_Product_Variable( $product->get_id() );
|
|
|
|
$children = $product->get_children();
|
|
|
|
$this->assertEquals( $variation->get_id(), $children[0] );
|
|
|
|
|
|
|
|
$expected_attributes = array( 'pa_color' => array( 'green' ) );
|
|
|
|
$this->assertEquals( $expected_attributes, $product->get_variation_attributes() );
|
|
|
|
|
|
|
|
$variation_2 = new WC_Product_Variation;
|
|
|
|
$variation_2->set_name( 'Variation #2 of Dummy Variable CRUD Product' );
|
|
|
|
$variation_2->set_parent_id( $product->get_id() );
|
|
|
|
$variation_2->set_regular_price( 10 );
|
|
|
|
$variation_2->set_sku( 'CRUD DUMMY SKU VARIABLE RED' );
|
|
|
|
$variation_2->set_manage_stock( 'no' );
|
|
|
|
$variation_2->set_downloadable( 'no' );
|
|
|
|
$variation_2->set_virtual( 'no' );
|
|
|
|
$variation_2->set_stock_status( 'instock' );
|
|
|
|
$variation_2->set_attributes( array( 'pa_color' => 'red' ) );
|
|
|
|
$variation_2->save();
|
|
|
|
|
|
|
|
$this->assertEquals( 'Variation #2 of Dummy Variable CRUD Product', $variation_2->get_name() );
|
|
|
|
$this->assertEquals( 'CRUD DUMMY SKU VARIABLE RED', $variation_2->get_sku() );
|
|
|
|
$this->assertEquals( 10, $variation_2->get_price() );
|
|
|
|
|
|
|
|
$product = new WC_Product_Variable( $product->get_id() );
|
|
|
|
$children = $product->get_children();
|
|
|
|
$this->assertEquals( $variation_2->get_id(), $children[1] );
|
|
|
|
$this->assertEquals( 2, count( $children ) );
|
|
|
|
|
|
|
|
$expected_attributes = array( 'pa_color' => array( 'green', 'red' ) );
|
|
|
|
$this->assertEquals( $expected_attributes, $product->get_variation_attributes() );
|
|
|
|
|
|
|
|
$variation_2->set_name( 'UPDATED - Variation #2 of Dummy Variable CRUD Product' );
|
|
|
|
$variation_2->set_regular_price( 15 );
|
|
|
|
$variation_2->set_sale_price( 9.99 );
|
|
|
|
$variation_2->set_date_on_sale_to( '32532537600' );
|
|
|
|
$variation_2->save();
|
|
|
|
|
|
|
|
$product = new WC_Product_Variable( $product->get_id() );
|
|
|
|
$expected_prices['price'][ $children[0] ] = 10.00;
|
|
|
|
$expected_prices['price'][ $children[1] ] = 9.99;
|
|
|
|
$expected_prices['regular_price'][ $children[0] ] = 10.00;
|
|
|
|
$expected_prices['regular_price'][ $children[1] ] = 15.00;
|
|
|
|
$expected_prices['sale_price'][ $children[0] ] = 10.00;
|
|
|
|
$expected_prices['sale_price'][ $children[1] ] = 9.99;
|
|
|
|
|
|
|
|
$this->assertEquals( $expected_prices, $product->get_variation_prices() );
|
|
|
|
$this->assertEquals( 'UPDATED - Variation #2 of Dummy Variable CRUD Product', $variation_2->get_name() );
|
|
|
|
|
|
|
|
$product->set_name( 'Renamed Variable Product' );
|
|
|
|
$product->save();
|
|
|
|
$this->assertEquals( 'Renamed Variable Product', $product->get_name() );
|
|
|
|
$product->delete();
|
|
|
|
}
|
|
|
|
|
2016-11-21 07:45:17 +00:00
|
|
|
function test_varation_save_attributes() {
|
|
|
|
// Create a variable product with a color attribute.
|
|
|
|
$product = new WC_Product_Variable;
|
|
|
|
|
|
|
|
$attribute = new WC_Product_Attribute();
|
|
|
|
$attribute->set_id( 0 );
|
|
|
|
$attribute->set_name( 'color' );
|
|
|
|
$attribute->set_options( explode( WC_DELIMITER, 'green | red' ) );
|
|
|
|
$attribute->set_visible( true );
|
|
|
|
$attribute->set_variation( true );
|
|
|
|
|
|
|
|
$product->set_attributes( array( $attribute ) );
|
|
|
|
$product->save();
|
|
|
|
|
|
|
|
// Create a new variation with the color 'green'.
|
|
|
|
$variation = new WC_Product_Variation;
|
|
|
|
$variation->set_parent_id( $product->get_id() );
|
|
|
|
$variation->set_attributes( array( 'color' => 'green' ) );
|
|
|
|
$variation->set_status( 'private' );
|
|
|
|
$variation->save();
|
|
|
|
|
|
|
|
// Now update some value unrelated to attributes.
|
|
|
|
$variation = wc_get_product( $variation->get_id() );
|
|
|
|
$variation->set_status( 'publish' );
|
|
|
|
$variation->save();
|
|
|
|
|
|
|
|
// Load up the updated variation and verify that the saved state is correct.
|
|
|
|
$loaded_variation = wc_get_product( $variation->get_id() );
|
|
|
|
|
|
|
|
$this->assertEquals( 'publish', $loaded_variation->get_status( 'edit' ) );
|
2016-11-23 01:47:13 +00:00
|
|
|
$this->assertEquals( 'green', $loaded_variation->get_attributes( 'edit' )['attribute_color'] );
|
2016-11-21 07:45:17 +00:00
|
|
|
}
|
WIP - Product CRUD (#12065)
* Created function to get the catalog visibility options
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Sanitize ids later
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Bump template version
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* Made abstract function useful
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* Allow WP_Query to preload post data, and meta in wc_get_products()
Allow WP_Query to bulk query for post data and meta if more than
just IDs are requested from wc_get_products(). Reduces query count
significantly.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Sanitize ids later
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Bump template version
* Made abstract function useful
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* Prevent notices
* Handle image_id from parent
* Fix error
* Remove _wc_save_product_price
* Remove todo
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* [Product CRUD] Abstract todos (#12305)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Revert "[Product CRUD] Abstract todos (#12305)"
This reverts commit 9a6136fcf88fec16f97457b7c8a4388f7587bfa2.
* Remove deprecated get_variation_id()
* New default attributes method
* [Product CRUD] Product Datastore (#12317)
* Fix up tests in the product/* folder.
* Handle data store updates for grouped, variable, external, simple, and general data store updates for products.
* Variations & variable changes.
* Update -functions.php calls to use data store.
* Add an interface for the public product data store methods.
* Finished product factory tests
* Correctly delete in the api, fix up some comments, and implement an interface for the public variable methods.
* Fix up delete in all versions of the api
* Handle feedback
* Match protected decloration to parent
* Product crud abstract todos (#12316)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Fix up store
* Fixed method returning in write context
* Fix error in variation admin
* Check for parent value - fixes tax class
* Remove old/complete todos
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* Remove deprecated get_variation_id()
* New default attributes method
* Fixed method returning in write context
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed coding standards
* TODO is not accurate.
* Should pass WC_Product instancies to WC_Comments methods (#12327)
* Use new method in abstract order class to prevent headers sent issue in tests
* Fixed variable description in REST API
* Updated how create initial product variation
* Fixed a few fatal errors and warnings in Products CRUD (#12329)
* Fixed a few fatal errors and warnings in Products CRUD
* Fixed sync functions
* Add variations CRUD to legacy API (#12331)
* Apply crud to variable products in legacy API v1
* New REST API do not need fallback for default attributes
* Apply variations CRUD to legacy API v2
* Legacy v2 - save default attributes
* Variations in legacy API v2 do not have descriptions
* Fixed legacy API v2 variations params
* Applied variations CRUD to legacy API v3
* Sync before save in legacy apis
* Punc
* Removed API todos
* Removed test
* Products endpoint tweaks (#12354)
* Var type already normalized on CRUD
* Let Product CRUD handle with validation, sanitization and conditional checks
* Set downloads using WC_Product_Download
* Stop try catch exceptions more than one time
* Handle WC_Data_Exception in legacy API
* Complete remove products when fails on creating
* On creating I mean!
* Already have a method to complete delete products
* Fixed standards using WP CodeSniffer
* get_the_terms() returns false when empty
* get_manage_stock returns boolean
@claudiosanches
* Merge conflict
* Variations API endpoint fixes
* Product CRUD improvements (#12359)
* args is not used any more - remove todo
* Added test for attributes
* wc_get_price_excluding_tax usage
* parent usage
* Fix rating counts
* Test fixes
* Cleanup after tests
* Make sure status transition code runs even during API calls, not just in admin.
* Default visibility
* Fix attribute setting in API
* Use get name instead of get title
* variation id usage
* Improved cross sell templates
* variation_data
* Grouped product sync
* Notices
* Sync is not needed in API
* Delete
* Rename interfaces
* Update counts in data store
2016-11-16 12:38:24 +00:00
|
|
|
}
|