是什么让Gurkin和黄瓜成为一个特色和场景?

时间:2013-04-17 11:27:53

标签: cucumber bdd gherkin

说我正在用Cucumber开发购物车BDD。购物车相当复杂,有许多铃声和口哨声,但这对于“博客”或“用户档案”来说也是如此。

我一直认为“购物车”是功能而铃声和口哨是 Scenario 。但是,这可能会生成大型功能文件,并违背 Scenario 的字面含义。这是看起来的样子:

Feature: Cart

  So that I can buy items
  As a user
  I want to place items in a cart


  #.... Many more scenarios

  Scenario: Empty a filled cart
    Given 2 products in my cart
    When I visit the cart page
    And I press "Empty cart"
    Then I should see the text:
      """
      Your cart is empty.
      """

  Scenario: Empty an empty cart
    Given 0 products in my cart
    When I visit the cart page
    Then I should not see the "Empty cart" button

  # Many more Scenario's

填写的详细信息越多,此“空车”组的时间就越长。我想知道,“清空车”应该被视为独立功能吗?这将导致许多功能,所有功能都包含一些 Scenario 场景然后变得更像“上下文”。像这样:

Feature: Emptying Cart

  So that I can reconsider my shopping-spree
  As a user
  I want to empty my cart

  Scenario: with a filled cart
    Given 2 products in my cart
    When I visit the cart page
    And I press "Empty cart"
    Then I should see the text:
      """
      Your cart is empty.
      """

  Scenario: with an empty cart
    Given 0 products in my cart
    When I visit the cart page
    Then I should not see the "Empty cart" button

制作功能的好方法是什么?我应该何时将 Scenario 重新组合到他们自己的功能中? 功能通常有多少 Scenario的

2 个答案:

答案 0 :(得分:9)

您可以使用declarative, rather than imperative语言来缩短您的情景 - 甚至可以删除一些情景。

例如:

Given the cart has two products in
When I empty the cart
Then I should see it has nothing in it.

这可能与实际的购物车一样真实。它没有实现细节。你可以看到一些步骤对应于你的一个以上;这是一件好事,因为它使代码中的复杂性更加可维护。

如果我们用这种方式说出您的其他情况,我们会得到:

Given my cart is empty
Then I should not be able to empty it again.

这里没有“何时”,因为“那个”对于那个州来说就是真的。

你真的需要这种情况吗?是否可以杀死你或你的公司以释放已经空车的能力?这基本上是美学的。它被添加以使UI更易于使用,并且唯一的方式来判断UI是否可用是实际使用它。如果你发现这种情况,我建议把它们拿出来。您始终可以对导致启用或禁用按钮的逻辑进行单元测试。

如果您更改为这种语言风格,那么删除任何仅测试美学和可用性的场景,您会发现您的功能文件变得更小,更小。

我还建议将最有趣或最令人惊讶的场景放在顶部。例如,这将是一个更有趣的场景(是的,它有两个“呐喊”,因为它描述了与两个不同用户之间的交互相关的行为):

Given a user put a copy of "Moby Dick" in his cart
When the last copy of "Moby Dick" is sold
And the user comes back to look at his cart
Then it should tell him, "Sorry, this item is currently out of stock."

这会更有趣:

Given a user put a new copy of "Moby Dick" in his cart
And there are second-hand copies of "Moby Dick" available
When the last new copy of "Moby Dick" is sold
And the user comes back to look at his cart
Then it should tell him, "Sorry, this item is currently out of stock."
And it should also show the way to the second-hand copies with,
  "2nd hand copies are available."

这将是一个差异化的场景;您的商店与其他商店的不同之处,因此对商家非常感兴趣。

通过将最有趣的内容置于顶部,功能文件很长并不重要。我们都知道购物车如何购买和销售商品,我们也不会在那个阶段阅读底部的情景。

Andy Waite is right当他说没有硬性规则的时候,所以要靠耳朵来玩;如果它不起作用,做一些不同的事情。希望这些提示也会有所帮助。

答案 1 :(得分:2)

您可以将功能分组到文件夹中,例如您可能有一个文件夹cart,然后是emtpy_cart.featureupdate_cart.feature等的功能文件。

没有硬规则,但我个人不会在一个功能文件中添加超过8个场景。

查看Relish自己的文档,了解如何构建功能的一个很好的示例:https://www.relishapp.com/relish/relish