add reviews to products? If not, how much would cost to implement it? Regards, Susan e-‐Commerce Director Acme Furniture, Ltd. Friday, 20 September 13
review funcGonality to the UAT server for your acceptance. I trust this meets your requirement. John Project Manager MageWoders Development Friday, 20 September 13
wanted to be able to turn this feature off or on for products. I don’t seem to be able to do this? Can we have a conference call with the enGre team to resolve this? This is URGENT we can’t launch a system like this! Regards, Susan e-‐Commerce Director Acme Furniture, Ltd. Friday, 20 September 13
So that our Customers are not influenced by a product with bad review history, as an Admin User I want to disable reviews of those specific products Friday, 20 September 13
Given the following products exist: | sku | name | accepts_reviews | | Ottoman1 | Ottoman | 1 | And "Ottoman1" has existing reviews When I turn this off for "Ottoman1" product Then no review should be displayed Friday, 20 September 13
not affect other products Given the following products exist: | sku | name | accepts_reviews | | Ottoman1 | Ottoman | 1 | | Chair1 | Chair | 1 | And "Ottoman1" has existing reviews And "Chair" has existing reviews When I turn this off for "Ottoman1" product Then "Chair" can still accept reviews Friday, 20 September 13
that our Customers are not influenced by a product with bad review history, as an Admin User I want to disable reviews of those specific products Scenario: Turn off reviews per product Given the following products exist: | sku | name | accepts_reviews | | Ottoman1 | Ottoman | 1 | And "Ottoman1" has existing reviews When I turn this off for "Ottoman1" product Then no review should be displayed Scenario: Turning off reviews will not affect other products Given the following products exist: | sku | name | accepts_reviews | | Ottoman1 | Ottoman | 1 | | Chair1 | Chair | 1 | And "Ottoman1" has existing reviews And "Chair" has existing reviews When I turn this off for "Ottoman1" product Then "Chair" can still accept reviews Friday, 20 September 13
Given [some context] When [some event occurs] Then [outcome] Scenario: Some description of the scenario Given [some context] And [more context] When [some event occurs] And [another event occurs] Then [outcome] And [another outcome] But [another outcome] Friday, 20 September 13
*.feature files here +d features/bootstrap -‐ place bootstrap scripts and static files here +f features/bootstrap/FeatureContext.php -‐ place your feature related code here Friday, 20 September 13
visibility So that our Customers are not influenced by a product with bad review history, as an Admin User I want to disable reviews of those specific products Scenario: Turn off reviews per product # features/reviews/admin_user_manages_review_visibility Given the following products exist: | sku | name | accepts_reviews | | Ottoman1 | Ottoman | 1 | And "Ottoman1" has existing reviews When I turn reviews off for "Ottoman1" product Then no review should be displayed for "Ottoman1" Scenario: Turning off reviews will not affect other products # features/reviews/admin_user_manages_review_v Given the following products exist: | sku | name | accepts_reviews | | Ottoman1 | Ottoman | 1 | | Chair1 | Chair | 1 | And "Ottoman1" has existing reviews And "Chair1" has existing reviews When I turn reviews off for "Ottoman1" product Then "Chair1" can still accept reviews Friday, 20 September 13
with these snippets: /** * @Given /^the following products exist:$/ */ public function theFollowingProductsExist(TableNode $table) { throw new PendingException(); } /** * @Given /^"([^"]*)" has existing reviews$/ */ public function hasExistingReviews($arg1) { throw new PendingException(); } /** * @When /^I turn reviews off for "([^"]*)" product$/ */ public function iTurnReviewsOffForProduct($arg1) { throw new PendingException(); } /** Friday, 20 September 13
Behat\Behat\Context\TranslatedContextInterface, Behat\Behat\Context\BehatContext, Behat\Behat\Exception\PendingException; use Behat\Gherkin\Node\PyStringNode, Behat\Gherkin\Node\TableNode; use MageTest\MagentoExtension\Context\MagentoContext; /** * Features context. */ class FeatureContext extends BehatContext { public function __construct($paramters) { $this-‐>useContext('admin_user', new AdminUserContext($parameters)); } } Friday, 20 September 13
review visibility So that our Customers are not influenced by a product with bad review history, as an Admin User I want to disable reviews of those specific products Scenario: Turn off reviews per product # features/reviews/admin_user_manages_review_visibi Given the following products exist: # AdminUserContext::theProductsExist() | sku | name | accepts_reviews | | Ottoman1 | Ottoman | 1 | accepts_reviews is not yet defined as an attribute of Product And "Ottoman1" has existing reviews # AdminUserContext::hasExistingReviews() When I turn reviews off for "Ottoman1" product # AdminUserContext::iTurnReviewsOffForProduct() Then no review should be displayed for "Ottoman1" # AdminUserContext::noReviewShouldBeDisplayedFor() Scenario: Turning off reviews will not affect other products # features/reviews/admin_user_manages_revi Given the following products exist: # AdminUserContext::theProductsExist() | sku | name | accepts_reviews | | Ottoman1 | Ottoman | 1 | | Chair1 | Chair | 1 | accepts_reviews is not yet defined as an attribute of Product And "Ottoman1" has existing reviews # AdminUserContext::hasExistingReviews() And "Chair1" has existing reviews # AdminUserContext::hasExistingReviews() When I turn reviews off for "Ottoman1" product # AdminUserContext::iTurnReviewsOffForProd Friday, 20 September 13
with these snippets: /** * @Given /^"([^"]*)" has existing reviews$/ */ public function hasExistingReviews($arg1) { throw new PendingException(); } /** * @When /^I turn reviews off for "([^"]*)" product$/ */ public function iTurnReviewsOffForProduct($arg1) { throw new PendingException(); } /** * @Then /^no review should be displayed for "([^"]*)"$/ */ public function noReviewShouldBeDisplayedFor($arg1) { throw new PendingException(); } /** Friday, 20 September 13
class MageSpec_Reviews_Model_Product does not exists. -‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐100%-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐ 1 1 example (1 broken) 11ms Do you want me to create `MageSpec_Reviews_Model_Product` for you? [Y/n] Friday, 20 September 13