3.6 练习
最后更新于:2022-04-01 22:28:21
# 3.6 练习
从这以后,我建议在单独的主题分支中做练习:
```
$ git checkout static-pages
$ git checkout -b static-pages-exercises
```
这么做就不会和本书正文产生冲突了。
练习做完后,可以把相应的分支推送到远程仓库中(如果有远程仓库的话):
```
# 做完第一个练习后
$ git commit -am "Eliminate repetition (solves exercise 3.1)"
# 做完第二个练习后
$ git add -A
$ git commit -m "Add a Contact page (solves exercise 3.2)"
$ git push -u origin static-pages-exercises
$ git checkout master
```
(为了继续后面的开发,最后一步只切换到主分支,但不合并,以免和正文产生冲突。)在后面的章节中,使用的分支和提交消息有所不同,但基本思想是一致的。
电子书中有练习的答案,如果想阅读参考答案,请[购买电子书](http://railstutorial-china.org/#purchase)。
1. 你可能注意到了,静态页面控制器的测试([代码清单 3.22](#listing-title-tests))中有些重复,每个标题测试中都有“Ruby on Rails Tutorial Sample App”。我们要使用特殊的函数 `setup` 去除重复。这个函数在每个测试运行之前执行。请你确认[代码清单 3.38](#listing-base-title-test) 中的测试仍能通过。([代码清单 3.38](#listing-base-title-test) 中使用了一个实例变量,[2.2.2 节](chapter2.html#mvc-in-action)简单介绍过,[4.4.5 节](chapter4.html#a-user-class)会进一步介绍。这段代码中还使用了字符串插值操作,[4.2.2 节](chapter4.html#strings)会做介绍。)
2. 为这个演示应用添加一个“联系”页面。[[14](#fn-14)]参照[代码清单 3.13](#listing-about-test),先编写一个测试,检查页面的标题是否为 “Contact | Ruby on Rails Tutorial Sample App”,从而确定 /static_pages/contact 对应的页面是否存在。把[代码清单 3.39](#listing-proposed-contact-page) 中的内容写入“联系”页面的视图,让测试通过。注意,这个练习是独立的,所以[代码清单 3.39](#listing-proposed-contact-page) 中的代码不会影响[代码清单 3.38](#listing-base-title-test) 中的测试。
##### 代码清单 3.38:使用通用标题的静态页面控制器测试 GREEN
test/controllers/static_pages_controller_test.rb
```
require 'test_helper'
class StaticPagesControllerTest < ActionController::TestCase
def setup @base_title = "Ruby on Rails Tutorial Sample App" end
test "should get home" do
get :home
assert_response :success
assert_select "title", "Home | #{@base_title}" end
test "should get help" do
get :help
assert_response :success
assert_select "title", "Help | #{@base_title}" end
test "should get about" do
get :about
assert_response :success
assert_select "title", "About | #{@base_title}" end
end
```
##### 代码清单 3.39:“联系”页面的内容
app/views/static_pages/contact.html.erb
```
<% provide(:title, "Contact") %>
';
Contact
Contact the Ruby on Rails Tutorial about the sample app at the contact page.
```