Sha256: 726dee79afdecfdf0fe8982c756fc34c4bee7214f03ae573726126dbc7d23797
Contents?: true
Size: 1.22 KB
Versions: 2
Compression:
Stored size: 1.22 KB
Contents
require 'minitest/autorun' require '3scale/client' require 'mocha/setup' if ENV['TEST_3SCALE_PROVIDER_KEY'] && ENV['TEST_3SCALE_APP_IDS'] && ENV['TEST_3SCALE_APP_KEYS'] class ThreeScale::NetHttpPersistenceTest < MiniTest::Unit::TestCase def setup ThreeScale::Client::HTTPClient.persistent_backend = ThreeScale::Client::HTTPClient::NetHttpPersistent provider_key = ENV['TEST_3SCALE_PROVIDER_KEY'] @app_id = ENV['TEST_3SCALE_APP_IDS'] @app_key = ENV['TEST_3SCALE_APP_KEYS'] @client = ThreeScale::Client.new(provider_key: provider_key, persistence: true) if defined?(FakeWeb) FakeWeb.allow_net_connect = true end end def test_authorize assert @client.authorize(:app_id => @app_id, :app_key => @app_key).success? end def test_keepalive_disconnect assert @client.authorize(:app_id => @app_id, :app_key => @app_key).success? sleep 70 assert @client.authorize(:app_id => @app_id, :app_key => @app_key).success? end end class ThreeScale::NetHttpKeepaliveTest < ThreeScale::NetHttpPersistenceTest def setup ThreeScale::Client::HTTPClient.persistent_backend = ThreeScale::Client::HTTPClient::NetHttpKeepAlive super end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
3scale_client-2.5.0 | test/persistence_test.rb |
3scale_client-2.5.0.pre1 | test/persistence_test.rb |