mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-07-22 00:00:47 -04:00
Compare commits
10 Commits
ce07b2ff50
...
4b074a6d8a
Author | SHA1 | Date | |
---|---|---|---|
|
4b074a6d8a | ||
|
791a94322f | ||
|
3cd063b153 | ||
|
9a64fadb56 | ||
|
e178bc9f20 | ||
|
4ef2d9c3ce | ||
|
39d0356340 | ||
|
1e05cdbe62 | ||
|
e27301013d | ||
|
ec7b845c67 |
@ -19,21 +19,18 @@ Signal.trap("INFO") { print_status } unless ENV.key?("CI")
|
||||
|
||||
Thread.start do
|
||||
frontpage = HTTPX.get("https://news.ycombinator.com").to_s
|
||||
|
||||
|
||||
html = Oga.parse_html(frontpage)
|
||||
|
||||
links = html.css('.itemlist a.storylink').map{|link| link.get('href') }
|
||||
|
||||
|
||||
links = html.css('.athing .title a').map{|link| link.get('href') }.select { |link| URI(link).absolute? }
|
||||
|
||||
links = links.select {|l| l.start_with?("https") }
|
||||
|
||||
|
||||
puts links
|
||||
|
||||
|
||||
responses = HTTPX.get(*links)
|
||||
|
||||
|
||||
links.each_with_index do |l, i|
|
||||
puts "#{responses[i].status}: #{l}"
|
||||
end
|
||||
end.join
|
||||
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
require "httpx"
|
||||
require "oga"
|
||||
|
||||
http = HTTPX.plugin(:persistent).with(timeout: { operation_timeut: 5, connect_timeout: 5})
|
||||
http = HTTPX.plugin(:persistent).with(timeout: { request_timeout: 5 })
|
||||
|
||||
PAGES = (ARGV.first || 10).to_i
|
||||
pages = PAGES.times.map do |page|
|
||||
@ -16,10 +16,11 @@ Array(http.get(*pages)).each_with_index.map do |response, i|
|
||||
end
|
||||
html = Oga.parse_html(response.to_s)
|
||||
# binding.irb
|
||||
page_links = html.css('.itemlist a.titlelink').map{|link| link.get('href') }
|
||||
page_links = html.css('.athing .title a').map{|link| link.get('href') }.select { |link| URI(link).absolute? }
|
||||
puts "page(#{i+1}): #{page_links.size}"
|
||||
if page_links.size == 0
|
||||
puts "error(#{response.status}) on page #{i+1}"
|
||||
next
|
||||
end
|
||||
# page_links.each do |link|
|
||||
# puts "link: #{link}"
|
||||
@ -31,6 +32,11 @@ end
|
||||
links = links.each_with_index do |pages, i|
|
||||
puts "Page: #{i+1}\t Links: #{pages.size}"
|
||||
pages.each do |page|
|
||||
puts "URL: #{page.uri} (#{page.status})"
|
||||
case page
|
||||
in status:
|
||||
puts "URL: #{page.uri} (#{status})"
|
||||
in error:
|
||||
puts "URL: #{page.uri} (#{error.message})"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -6,11 +6,9 @@ include HTTPX
|
||||
URLS = %w[http://nghttp2.org https://nghttp2.org/blog/]# * 3
|
||||
|
||||
client = HTTPX.plugin(:proxy)
|
||||
client = client.with_proxy(uri: "http://61.7.174.110:54132")
|
||||
responses = client.get(URLS)
|
||||
client = client.with_proxy(uri: "http://134.209.29.120:8080")
|
||||
responses = client.get(*URLS)
|
||||
puts responses.map(&:status)
|
||||
|
||||
# response = client.get(URLS.first)
|
||||
# puts response.status
|
||||
|
||||
|
||||
|
@ -273,7 +273,7 @@ module HTTPX
|
||||
end
|
||||
|
||||
def timeout
|
||||
return @timeout if defined?(@timeout)
|
||||
return @timeout if @timeout
|
||||
|
||||
return @options.timeout[:connect_timeout] if @state == :idle
|
||||
|
||||
@ -518,7 +518,6 @@ module HTTPX
|
||||
else
|
||||
transition(:closing)
|
||||
transition(:closed)
|
||||
emit(:reset)
|
||||
|
||||
@parser.reset if @parser
|
||||
transition(:idle)
|
||||
@ -617,7 +616,7 @@ module HTTPX
|
||||
def purge_after_closed
|
||||
@io.close if @io
|
||||
@read_buffer.clear
|
||||
remove_instance_variable(:@timeout) if defined?(@timeout)
|
||||
@timeout = nil
|
||||
end
|
||||
|
||||
def build_socket(addrs = nil)
|
||||
|
@ -181,7 +181,7 @@ module HTTPX
|
||||
if response.is_a?(ErrorResponse)
|
||||
disable
|
||||
else
|
||||
manage_connection(response)
|
||||
manage_connection(request, response)
|
||||
end
|
||||
|
||||
if exhausted?
|
||||
@ -224,7 +224,7 @@ module HTTPX
|
||||
|
||||
private
|
||||
|
||||
def manage_connection(response)
|
||||
def manage_connection(request, response)
|
||||
connection = response.headers["connection"]
|
||||
case connection
|
||||
when /keep-alive/i
|
||||
@ -254,7 +254,7 @@ module HTTPX
|
||||
disable
|
||||
when nil
|
||||
# In HTTP/1.1, it's keep alive by default
|
||||
return if response.version == "1.1"
|
||||
return if response.version == "1.1" && request.headers["connection"] != "close"
|
||||
|
||||
disable
|
||||
end
|
||||
|
@ -76,7 +76,6 @@ module HTTPX
|
||||
else
|
||||
transition(:closing)
|
||||
transition(:closed)
|
||||
emit(:reset)
|
||||
|
||||
parser.reset if @parser
|
||||
transition(:idle)
|
||||
|
@ -223,9 +223,6 @@ module HTTPX
|
||||
@connected_connections += 1
|
||||
end
|
||||
select_connection(connection)
|
||||
connection.on(:close) do
|
||||
unregister_connection(connection)
|
||||
end
|
||||
end
|
||||
|
||||
def unregister_connection(connection)
|
||||
|
@ -87,16 +87,18 @@ module HTTPX
|
||||
def lookup(hostname, ttl)
|
||||
return unless @lookups.key?(hostname)
|
||||
|
||||
@lookups[hostname] = @lookups[hostname].select do |address|
|
||||
entries = @lookups[hostname] = @lookups[hostname].select do |address|
|
||||
address["TTL"] > ttl
|
||||
end
|
||||
ips = @lookups[hostname].flat_map do |address|
|
||||
|
||||
ips = entries.flat_map do |address|
|
||||
if address.key?("alias")
|
||||
lookup(address["alias"], ttl)
|
||||
else
|
||||
IPAddr.new(address["data"])
|
||||
end
|
||||
end
|
||||
end.compact
|
||||
|
||||
ips unless ips.empty?
|
||||
end
|
||||
|
||||
|
@ -260,7 +260,9 @@ module HTTPX
|
||||
connection.on(:open) do
|
||||
emit(:connection_opened, connection.origin, connection.io.socket)
|
||||
# only run close callback if it opened
|
||||
connection.on(:close) { emit(:connection_closed, connection.origin, connection.io.socket) }
|
||||
end
|
||||
connection.on(:close) do
|
||||
emit(:connection_closed, connection.origin, connection.io.socket) if connection.used?
|
||||
end
|
||||
catch(:coalesced) do
|
||||
pool.init_connection(connection, options)
|
||||
|
30
regression_tests/bug_1_1_1_test.rb
Normal file
30
regression_tests/bug_1_1_1_test.rb
Normal file
@ -0,0 +1,30 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require "test_helper"
|
||||
require "support/http_helpers"
|
||||
|
||||
class Bug_1_1_1_Test < Minitest::Test
|
||||
include HTTPHelpers
|
||||
|
||||
def test_conection_callbacks_fire_setup_once
|
||||
uri = build_uri("/get")
|
||||
|
||||
connected = 0
|
||||
|
||||
HTTPX.on_connection_opened { |*| connected += 1 }
|
||||
.on_connection_closed { |*| connected -= 1 }
|
||||
.wrap do |session|
|
||||
3.times.each do
|
||||
response = session.get(uri)
|
||||
verify_status(response, 200)
|
||||
assert connected.zero?
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def scheme
|
||||
"http://"
|
||||
end
|
||||
end
|
@ -59,13 +59,13 @@ module HTTPX
|
||||
|
||||
def initialize: (Buffer, options) -> untyped
|
||||
|
||||
def manage_connection: (Response) -> void
|
||||
def manage_connection: (Request request, Response response) -> void
|
||||
|
||||
def disable: () -> void
|
||||
|
||||
def disable_pipelining: () -> void
|
||||
|
||||
def set_protocol_headers: (Request) -> _Each[[String, String]]
|
||||
def set_protocol_headers: (Request request) -> _Each[[String, String]]
|
||||
|
||||
def handle: (Request request) -> void
|
||||
|
||||
|
@ -22,3 +22,7 @@ acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machine
|
||||
|
||||
http_port 3128
|
||||
https_port 3128
|
||||
|
||||
# limit the number of file descriptors so that Squid doesn't try allocating
|
||||
# hundreds of gigabytes of RAM on systems with large NOFILE ulimits
|
||||
max_filedescriptors 1024
|
||||
|
Loading…
x
Reference in New Issue
Block a user