gpt4 book ai didi

cucumber - 小 cucumber 和 cucumber 中的功能和场景是什么?

转载 作者:行者123 更新时间:2023-12-02 21:45:19 26 4
gpt4 key购买 nike

假设我正在使用 Cucumber 开发购物车 BDD。购物车相当复杂,有很多花里胡哨的东西,但这对于“博客”或“用户个人资料”来说也同样适用。

我一直认为“购物车”是功能,而附加功能是场景。但是,这可能会生成较大的功能文件,并且违背场景的字面含义。看起来是这样的:

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

填写的详细信息越多,这个“空购物车”组就会变得越长。我想知道,“清空购物车”是否应该被视为一个独立的功能?这将导致许多功能,但都只包含一些场景。然后,场景变得更像“上下文”。就像这样:

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

将某项内容设为功能的良好指南是什么?我什么时候应该将场景重新组合成它们自己的功能?一个功能通常有多少个场景

最佳答案

您可以通过在 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.

这对于实际的购物车和 UI 来说都是如此。它没有实现细节。您可以看到某些步骤与您的多个步骤相对应;这是一件好事,因为它保持了代码的复杂性,使其更易于维护。

如果我们这样表述您的其他场景,我们会得到:

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当他说没有硬性规则时,所以见机行事;如果它不起作用,就做一些不同的事情。希望这些提示也能有所帮助。

关于cucumber - 小 cucumber 和 cucumber 中的功能和场景是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16058824/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com