gpt4 book ai didi

ruby - cucumber 动态加载数据表

转载 作者:太空宇宙 更新时间:2023-11-03 17:58:40 25 4
gpt4 key购买 nike

我目前正在尝试将 Cucumber 与 capybara 一起用于网络应用程序的一些集成测试。

有一个测试,我只想点击所有(或大部分)网络应用程序的页面,看看是否没有返回错误。我希望之后能够看到哪些页面无法正常工作。

我认为场景大纲是最好的方法,所以我以这种方式开始:

Scenario Outline: Checking all pages pages

When I go on the page <page>
Then the page has no HTTP error response

Examples:
| page |
| "/resource1" |
| "/resource2" |
...

我目前有 82 页并且工作正常。

但是我发现这种方法不可维护,因为可能会有新的资源和将被删除的资源。

更好的方法是从某个地方加载表中的数据(解析索引页面的 HTML、数据库等...)。

但我没有弄清楚该怎么做。

我遇到了一个 article about table transformation但我不知道如何在场景大纲中使用此转换。

有什么建议吗?

好的,因为有些困惑。如果你看看上面的例子。我想要做的就是改变它,使表格几乎是空的:

Scenario Outline: Checking all pages pages

When I go on the page <page>
Then the page has no HTTP error response

Examples:
| page |
| "will be generated" |

然后我想添加一个看起来像这样的转换:

Transform /^table:page$/ do
all_my_pages.each do |page|
table.hashes << {:page => page}
end
table.hashes
end

我在同一个文件中指定了转换,但它没有执行,所以我假设转换不适用于场景大纲。

最佳答案

Cucumber 确实不是该任务的错误工具,您应该根据特性来描述功能。如果您想以编程方式描述行为,您应该使用 rspec 或 test-unit 之类的东西。

此外,您的场景步骤应该像书面文本一样具有描述性和专业性,而不是像编程语言中使用的抽象短语。它们不应包含“附带细节”,例如资源的确切 URL 或它的 ID。

请阅读http://blog.carbonfive.com/2011/11/07/modern-cucumber-and-rails-no-more-training-wheels/http://skillsmatter.com/podcast/home/refuctoring-your-cukes

关于你关于“插入表格”的问题,是的,如果你意味着向它添加额外的行,事实上你可以用它做任何你喜欢的事情。Transform block 的结果完全替换了原始表。

Transform /^table:Name,Posts$/ do
# transform the table into a list of hashes
results = table.hashes.map do |row|
user = User.create! :name => row["Name"]
posts = (1..row["Posts"]).map { |i| Post.create! :title => "Nr #{i}" }
{ :user => user, :posts => posts }
end
# append another hash to the results (e.g. a User "Tim" with 2 Posts)
tim = User.create! :name => "Tim"
tims_posts = [Post.create! :title => "First", Post.create! :title => "Second"]
results << { :user => tim, :posts => tims_posts }
results
end

Given /^I have Posts of the following Users:$/ do |transformation_results|
transformation_results.each do |row|
# assing Posts to the corresponding User
row[:user].posts = row[:posts]
end
end

您可以像这样将它与场景大纲结合起来:

Scenario Outline: Paginate the post list of an user at 10
Given I have Posts of the following Users:
| Name | Posts |
| Max | 7 |
| Tom | 11 |
When I visit the post list of <name>
Then I should see <count> posts
Examples:
| name | count |
| Max | 7 |
| Tom | 10 |
| Tim | 2 |

这应该说明为什么向表格“添加”行可能不是最佳实践。

请注意,无法在表格内扩展示例标签:

Scenario Outline: Paginate the post list of an user at 10
Given I have Posts of the following Users:
| Name | Posts |
| <name> | <existing> | # won't work
When I visit the post list of <name>
Then I should see <displayed> posts
Examples:
| name | existing | displayed |
| Max | 7 | 7 |
| Tom | 11 | 10 |
| Tim | 2 | 2 |

关于ruby - cucumber 动态加载数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8877949/

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