D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
td-agent
/
embedded
/
lib
/
ruby
/
gems
/
2.1.0
/
gems
/
td-client-0.8.85
/
spec
/
Filename :
spec_helper.rb
back
Copy
require 'rubygems' # XXX skip coverage setting if run appveyor. Because, fail to push coveralls in appveyor. unless ENV['APPVEYOR'] begin if defined?(:RUBY_ENGINE) && RUBY_ENGINE == 'ruby' # SimpleCov officially supports MRI 1.9+ only for now # https://github.com/colszowka/simplecov#ruby-version-compatibility require 'simplecov' require 'coveralls' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([ SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter ]) SimpleCov.start("test_frameworks") end rescue NameError # skip measuring coverage at Ruby 1.8 end end require 'rspec' require 'webmock/rspec' WebMock.disable_net_connect!(:allow_localhost => true) include WebMock::API $LOAD_PATH << File.dirname(__FILE__)+"../lib" require 'td-client' require 'msgpack' require 'json' include TreasureData shared_context 'common helper' do let :account_id do 1 end let :headers do if RUBY_VERSION >= "2.0.0" {'Accept' => '*/*', 'Accept-Encoding' => /gzip/, 'Date' => /.*/, 'User-Agent' => /Ruby/} else {'Accept' => '*/*', 'Date' => /.*/, 'User-Agent' => /Ruby/} end end def stub_api_request(method, path, opts = nil) scheme = 'https' with_opts = {:headers => headers} if opts scheme = 'http' if opts[:ssl] == false with_opts[:query] = opts[:query] if opts[:query] end stub_request(method, "#{scheme}://api.treasuredata.com#{path}").with(with_opts) end def e(s) s.to_s.gsub(/[^*\-0-9A-Z_a-z]/){|x|'%%%02X' % x.ord} end end