1

我的对象GETsa 文件通过 HTTP。

它这样做,使用If-Modified-Since标题。如果自标头中的时间以来文件尚未修改,则将返回 Not Modified 响应,并且不应获取和写入文件。像这样:

class YouTube
  #...
  def parse
    uri = URI("http://i.ytimg.com/vi/#{@id}/0.jpg")
    req = Net::HTTP::Get.new(uri.request_uri)
    if File.exists? thumbname
      stat = File.stat thumbname
      req['If-Modified-Since'] = stat.mtime.rfc2822
    end

    res = Net::HTTP.start(uri.hostname, uri.port) {|http|
      http.request(req)
    }

    File.open(thumbname, 'wb') do |f|
      f.write res.body
    end if res.is_a?(Net::HTTPSuccess)
  end
  #...
end

我想测试这两种情况(在这两种情况下,磁盘上都存在一个文件)。为此,我需要存根其中的任何Net::HTTP内容,或者我需要存根 File.stat 以返回一个mtime我确信在线资源将返回一个新的或未修改的自。

我应该存根(甚至模拟)Net::HTTP吗?如果是这样,是什么?

或者我应该存根mtime返回一个遥远的过去或未来的日期,以强制或禁止未修改的标题?


编辑:深入研究此事,我了解到i.ytimg.com域不支持这些标头。所以我需要通过从 YouTube API 检查 JSON 来解决这个问题。但是,“测试 if-modified-since-headers 时模拟什么以及如何模拟”的问题仍然存在。

以下是我得出的域不支持这一点的结论:

$curl -I --header 'If-Modified-Since: Sun, 24 Mar 2013 17:33:29 +0100' -L http://i.ytimg.com/vi/D80QdsFWdcQ/0.jpg
HTTP/1.1 200 OK
Content-Type: image/jpeg
Date: Sun, 24 Mar 2013 16:31:10 GMT
Expires: Sun, 24 Mar 2013 22:31:10 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 13343
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=21600
Age: 822

那里没有“最后修改”。用另一个调用来说明 exaple.com,它确实支持 if-modified-since 标头。

$curl -I --header 'If-Modified-Since: Sun, 24 Mar 2013 17:33:29 +0100' -L example.com
HTTP/1.0 302 Found
Location: http://www.iana.org/domains/example/
Server: BigIP
Connection: Keep-Alive
Content-Length: 0

HTTP/1.1 302 FOUND
Date: Sun, 24 Mar 2013 16:47:47 GMT
Server: Apache/2.2.3 (CentOS)
Location: http://www.iana.org/domains/example
Connection: close
Content-Type: text/html; charset=utf-8

HTTP/1.1 304 NOT MODIFIED
Date: Sun, 24 Mar 2013 16:47:47 GMT
Server: Apache/2.2.3 (CentOS)
Connection: close
4

0 回答 0