LoginSignup
13
13

More than 5 years have passed since last update.

HTTPクライアントプログラムで読み込みタイムアウトをテストするアドホックサーバーをワンライナーで

Last updated at Posted at 2015-04-03

RubyビルトインのWEBrickを利用する。例えば10秒でレスポンスするサーバー。

$ ruby -rwebrick -e "WEBrick::HTTPServer.new(Port:3333).tap{|s|s.mount_proc(?/){sleep 10}}.start"

これでクライアント側でタイムアウトを3秒とか5秒とかに設定して、http://localhost:3333/にアクセスさせれば幸せになれる。

13
13
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
13