http-test 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +72 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/http-test.gemspec +38 -0
- data/lib/http-test.rb +35 -0
- data/lib/http-test/http_methods.rb +79 -0
- data/lib/http-test/server.rb +62 -0
- data/lib/http-test/version.rb +3 -0
- metadata +114 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 79768f0376dc837f5e788e57d82c9231da3e4183
|
4
|
+
data.tar.gz: 9cce9c94af55413c8c38309d967f872ffe19085f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e6354d69fbef44b0e24be44d5dba140149dc5549805b49d5d05f88bc8f3d9be0fd2dc21d04942cd87cae77123ac0ba071c8ceb53200bca569e1e588c01bc093d
|
7
|
+
data.tar.gz: 329e2cdf4250dbf4d4b570bda2716a9eb50903fb6bf94845c632e6ac69a52e2034484e7d0f1daaeb1a5dd8198a22ba63b967eabd2f3c323681bea8abe04ef27b
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 eno
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
# Http::Test
|
2
|
+
|
3
|
+
The `http-test` ruby gem lets you define HTTP API tests in ruby code. Note that the server can be
|
4
|
+
implemented any way you want, as long as it is either available on a proper URL, or can be started
|
5
|
+
in non-daemonized mode with a single command.
|
6
|
+
|
7
|
+
## Running HTTP tests against a remove server
|
8
|
+
|
9
|
+
require_relative "./test_helper"
|
10
|
+
|
11
|
+
class RemoteHttpTest < HttpTest::TestCase
|
12
|
+
url_base "http://jsonplaceholder.typicode.com"
|
13
|
+
|
14
|
+
def test_get
|
15
|
+
GET "/posts/1"
|
16
|
+
assert_equal(200, response.status)
|
17
|
+
assert_equal(1, response["userId"])
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_head
|
21
|
+
HEAD "/posts/1"
|
22
|
+
assert_equal(200, response.status)
|
23
|
+
assert(response.body.empty?)
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_post
|
27
|
+
POST "/posts", title: "test title", body: "test body"
|
28
|
+
assert_equal(201, response.status)
|
29
|
+
assert_equal("test title", response["title"])
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_put
|
33
|
+
PUT "/posts/1", title: "new title"
|
34
|
+
assert_equal(200, response.status)
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_delete
|
38
|
+
DELETE "/posts/1"
|
39
|
+
assert_equal(200, response.status)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
## Running HTTP tests against a local server
|
44
|
+
|
45
|
+
test-http can also be used to run tests against a local test server. For this, the
|
46
|
+
you must define a command to start the server. For this mode you must define a command
|
47
|
+
to start the server in a non-daemonized mode.
|
48
|
+
|
49
|
+
class LocalHttpTest < HttpTest::TestCase
|
50
|
+
test_server "#{File.dirname(__FILE__)}/local-http"
|
51
|
+
...
|
52
|
+
end
|
53
|
+
|
54
|
+
**Limitations:**
|
55
|
+
|
56
|
+
- The command should read the PORT to listen on from the "PORT" environment value.
|
57
|
+
- Currently the only supported port is 4444. Expect this to change to a randomized port number.
|
58
|
+
|
59
|
+
## Development
|
60
|
+
|
61
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
62
|
+
|
63
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
64
|
+
|
65
|
+
## Contributing
|
66
|
+
|
67
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/radiospiel/http-test.
|
68
|
+
|
69
|
+
## License
|
70
|
+
|
71
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
72
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "http/test"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/http-test.gemspec
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'http-test/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "http-test"
|
8
|
+
spec.version = HttpTest::VERSION
|
9
|
+
spec.authors = ["eno"]
|
10
|
+
spec.email = ["eno@open-lab.org"]
|
11
|
+
|
12
|
+
spec.summary = "Simple to use HTTP API tests"
|
13
|
+
# spec.description = %q{TODO: Write a longer description or delete this line.}
|
14
|
+
# spec.homepage = "TODO: Put your gem's website or public repo URL here."
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# # to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
# if spec.respond_to?(:metadata)
|
20
|
+
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
21
|
+
# else
|
22
|
+
# raise "RubyGems 2.0 or newer is required to protect against " \
|
23
|
+
# "public gem pushes."
|
24
|
+
# end
|
25
|
+
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
27
|
+
f.match(%r{^(test|spec|features)/})
|
28
|
+
end
|
29
|
+
spec.bindir = "exe"
|
30
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
31
|
+
spec.require_paths = ["lib"]
|
32
|
+
|
33
|
+
spec.add_dependency "faraday", "~> 0.11"
|
34
|
+
|
35
|
+
spec.add_development_dependency "bundler", "~> 1.13"
|
36
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
37
|
+
spec.add_development_dependency "test-unit", "~> 3.2"
|
38
|
+
end
|
data/lib/http-test.rb
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
require "test-unit"
|
2
|
+
require "forwardable"
|
3
|
+
|
4
|
+
module HttpTest
|
5
|
+
PORT = 4444
|
6
|
+
|
7
|
+
def self.url_base(url_base = nil)
|
8
|
+
@url_base = url_base if url_base
|
9
|
+
return @url_base if @url_base
|
10
|
+
STDERR.puts <<-MSG
|
11
|
+
Either define a API endpoint via url_base <url>, or define a command to start a test_server via test_server "command"'
|
12
|
+
MSG
|
13
|
+
exit 1
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.test_server(command)
|
17
|
+
Server.start!(command)
|
18
|
+
url_base "http://localhost:#{PORT}"
|
19
|
+
end
|
20
|
+
|
21
|
+
module TestUnitAdapter
|
22
|
+
extend Forwardable
|
23
|
+
|
24
|
+
delegate url_base: HttpTest
|
25
|
+
delegate test_server: HttpTest
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
require_relative "http-test/http_methods"
|
30
|
+
require_relative "http-test/server"
|
31
|
+
|
32
|
+
class HttpTest::TestCase < Test::Unit::TestCase
|
33
|
+
include HttpTest::HttpMethods # include HTTP helper methods, like GET, PUT etc.
|
34
|
+
extend HttpTest::TestUnitAdapter
|
35
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
require "faraday"
|
2
|
+
|
3
|
+
require "net/http"
|
4
|
+
require "json"
|
5
|
+
|
6
|
+
# :status - HTTP response status code, such as 200
|
7
|
+
# :body - the response body
|
8
|
+
# :response_headers
|
9
|
+
#
|
10
|
+
#
|
11
|
+
module HttpTest::HttpMethods
|
12
|
+
module Response
|
13
|
+
module FaradayHelper
|
14
|
+
attr_accessor :faraday_response
|
15
|
+
|
16
|
+
extend Forwardable
|
17
|
+
delegate [:status, :body, :headers] => :faraday_response
|
18
|
+
|
19
|
+
alias code status
|
20
|
+
end
|
21
|
+
|
22
|
+
class BlankResponse
|
23
|
+
include FaradayHelper
|
24
|
+
|
25
|
+
def initialize(faraday_response)
|
26
|
+
self.faraday_response = faraday_response
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def self.create(faraday_response)
|
31
|
+
body, headers = faraday_response.body, faraday_response.headers
|
32
|
+
return BlankResponse.new(faraday_response) unless body && body.length > 0
|
33
|
+
|
34
|
+
response = case content_type = headers["content-type"]
|
35
|
+
when /\Aapplication\/json/ then JSON.parse faraday_response.body
|
36
|
+
when /\Atext\// then faraday_response.body
|
37
|
+
else raise "unsupported content_type: #{content_type.inspect}"
|
38
|
+
end
|
39
|
+
|
40
|
+
response.extend FaradayHelper
|
41
|
+
response.faraday_response = faraday_response
|
42
|
+
response
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def url(path)
|
47
|
+
return path if path =~ /\Ahttp(s)?:/
|
48
|
+
|
49
|
+
File.join(HttpTest.url_base, path)
|
50
|
+
end
|
51
|
+
|
52
|
+
# rubocop:disable Style/MethodName
|
53
|
+
def HEAD(path)
|
54
|
+
@response = Response.create Faraday.head(url(path))
|
55
|
+
end
|
56
|
+
|
57
|
+
def GET(path)
|
58
|
+
@response = Response.create Faraday.get(url(path))
|
59
|
+
end
|
60
|
+
|
61
|
+
def POST(path, body = {})
|
62
|
+
@response = Response.create Faraday.post(url(path), body)
|
63
|
+
end
|
64
|
+
|
65
|
+
def PUT(path, body = {})
|
66
|
+
@response = Response.create Faraday.put(url(path), body)
|
67
|
+
end
|
68
|
+
|
69
|
+
def DELETE(path)
|
70
|
+
@response = Response.create Faraday.delete(url(path))
|
71
|
+
end
|
72
|
+
|
73
|
+
attr_reader :response
|
74
|
+
|
75
|
+
def asset_redirect_to(url)
|
76
|
+
assert_equal(302, response.code)
|
77
|
+
assert_equal(url, response.headers["location"])
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
require "socket"
|
2
|
+
require "timeout"
|
3
|
+
|
4
|
+
module HttpTest::Server
|
5
|
+
extend self
|
6
|
+
|
7
|
+
PORT = HttpTest::PORT
|
8
|
+
|
9
|
+
def available!(timeout = 0.1)
|
10
|
+
s = nil
|
11
|
+
Timeout.timeout(timeout) do
|
12
|
+
STDERR.print "."
|
13
|
+
s = TCPSocket.new("127.0.0.1", PORT)
|
14
|
+
end
|
15
|
+
|
16
|
+
STDERR.puts "[http-test] test server became available on http://127.0.0.1:#{PORT}"
|
17
|
+
ensure
|
18
|
+
s&.close
|
19
|
+
end
|
20
|
+
|
21
|
+
def available?(timeout = 0.1)
|
22
|
+
available!(timeout)
|
23
|
+
true
|
24
|
+
rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH, Timeout::Error
|
25
|
+
false
|
26
|
+
end
|
27
|
+
|
28
|
+
def wait_for_port(timeout = 10)
|
29
|
+
(timeout / 0.1).to_i.times do
|
30
|
+
return true if available?(PORT)
|
31
|
+
sleep(0.1)
|
32
|
+
end
|
33
|
+
|
34
|
+
available!
|
35
|
+
end
|
36
|
+
|
37
|
+
def started?
|
38
|
+
@started ? true : false
|
39
|
+
end
|
40
|
+
|
41
|
+
def start!(command)
|
42
|
+
return if started?
|
43
|
+
|
44
|
+
pid = fork do
|
45
|
+
# Signal.trap("HUP") { STDERR.puts "Exiting web server"; exit }
|
46
|
+
# # ... do some work ...
|
47
|
+
ENV["RACK_ENV"] = "test"
|
48
|
+
ENV["PORT"] = PORT.to_s
|
49
|
+
|
50
|
+
STDERR.puts "[http-test] Trying to start test server via '#{command}'"
|
51
|
+
exec command
|
52
|
+
end
|
53
|
+
|
54
|
+
at_exit do
|
55
|
+
Process.kill("TERM", pid)
|
56
|
+
Process.wait
|
57
|
+
end
|
58
|
+
|
59
|
+
wait_for_port
|
60
|
+
@started = true
|
61
|
+
end
|
62
|
+
end
|
metadata
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: http-test
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- eno
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-01-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: faraday
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.11'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.11'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.13'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.13'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: test-unit
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.2'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.2'
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- eno@open-lab.org
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".rspec"
|
78
|
+
- ".travis.yml"
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- bin/console
|
84
|
+
- bin/setup
|
85
|
+
- http-test.gemspec
|
86
|
+
- lib/http-test.rb
|
87
|
+
- lib/http-test/http_methods.rb
|
88
|
+
- lib/http-test/server.rb
|
89
|
+
- lib/http-test/version.rb
|
90
|
+
homepage:
|
91
|
+
licenses:
|
92
|
+
- MIT
|
93
|
+
metadata: {}
|
94
|
+
post_install_message:
|
95
|
+
rdoc_options: []
|
96
|
+
require_paths:
|
97
|
+
- lib
|
98
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '0'
|
108
|
+
requirements: []
|
109
|
+
rubyforge_project:
|
110
|
+
rubygems_version: 2.5.1
|
111
|
+
signing_key:
|
112
|
+
specification_version: 4
|
113
|
+
summary: Simple to use HTTP API tests
|
114
|
+
test_files: []
|