cucumber-calliope_importer 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +42 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/cucumber-calliope_importer-0.1.0.gem +0 -0
- data/cucumber-calliope_importer.gemspec +40 -0
- data/lib/cucumber/calliope_importer/json.rb +61 -0
- data/lib/cucumber/calliope_importer/version.rb +5 -0
- data/lib/cucumber/calliope_importer.rb +9 -0
- data/lib/cucumber/cli/add_to_options.rb +9 -0
- metadata +105 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 687622ca4e7d14d8dc9b95fb5b236428b1a53a19
|
4
|
+
data.tar.gz: dcc5209e1bcb4b4335066ca4551b467bdf24b776
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 714753b7b9757a47c54728e23f29fb25c2823aeaaa7bc91ebaf2036d690a6dc879bc9c5600b6da27aba0b4b8fa60c6afb384edc0621c222bccbd0c95e452dc09
|
7
|
+
data.tar.gz: 4d3ca7035005188eae7242e4515b01c1e9e87b4fdc496aca20a16558ce0813684a293a59fe96b3458f0bdfe00f7f905f339d141eb8eae976d430871f590ac048
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Maurice Wijnia
|
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,42 @@
|
|
1
|
+
# Cucumber::CalliopeImporter
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/cucumber/calliope_importer`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'cucumber-calliope_importer'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install cucumber-calliope_importer
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
CalliopeImport uses environment variables of a test run to make an API call with the test results.
|
26
|
+
You can set those variables and call the formatter like this:
|
27
|
+
|
28
|
+
$ cucumber API_KEY='API Key Here' PROFILE_ID='Profile_ID Here' -f calliope_import
|
29
|
+
|
30
|
+
## Development
|
31
|
+
|
32
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
33
|
+
|
34
|
+
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).
|
35
|
+
|
36
|
+
## Contributing
|
37
|
+
|
38
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/cucumber-calliope_importer.
|
39
|
+
|
40
|
+
## License
|
41
|
+
|
42
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "cucumber/calliope_importer"
|
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(__FILE__)
|
data/bin/setup
ADDED
Binary file
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "cucumber/calliope_importer/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "cucumber-calliope_importer"
|
8
|
+
spec.version = Cucumber::CalliopeImporter::VERSION
|
9
|
+
spec.authors = ["Maurice Wijnia"]
|
10
|
+
spec.email = ["maurice.wijnia@spritecloud.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{This gem adds a 'calliope-import' formatter to cucumber that uploads cucumber json output to the calliope.pro platform.}
|
13
|
+
spec.description = %q{CalliopeImport uses environment variables of a test run to make an API call with the test results.
|
14
|
+
You can set those variables and call the formatter like this:
|
15
|
+
|
16
|
+
$ cucumber API_KEY='API Key Here' PROFILE_ID='Profile_ID Here' -f calliope_import}
|
17
|
+
spec.homepage = "https://github.com/mauricewijnia/cucumber-calliope_import"
|
18
|
+
spec.license = "MIT"
|
19
|
+
|
20
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
21
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
22
|
+
if spec.respond_to?(:metadata)
|
23
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
24
|
+
else
|
25
|
+
raise "RubyGems 2.0 or newer is required to protect against " \
|
26
|
+
"public gem pushes."
|
27
|
+
end
|
28
|
+
|
29
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
30
|
+
f.match(%r{^(test|spec|features)/})
|
31
|
+
end
|
32
|
+
spec.bindir = "exe"
|
33
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
34
|
+
spec.require_paths = ["lib"]
|
35
|
+
|
36
|
+
spec.add_development_dependency "bundler", "~> 1.15"
|
37
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
38
|
+
|
39
|
+
spec.add_runtime_dependency "cucumber", "~> 2"
|
40
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
require 'cucumber/formatter/json'
|
2
|
+
|
3
|
+
module Cucumber
|
4
|
+
module CalliopeImporter
|
5
|
+
class Json < Formatter::Json
|
6
|
+
def initialize(config)
|
7
|
+
super
|
8
|
+
if ENV['API_KEY'].nil? || ENV['PROFILE_ID'].nil?
|
9
|
+
print "\033[31m" # Sets console colors to red
|
10
|
+
print "Error: API Key and/or Profile ID were not set. Please provide them in your cucumber call or profile like this API_KEY='API Key Here' PROFILE_ID='Profile ID Here'"
|
11
|
+
print "\033[0m" # Resets console colors
|
12
|
+
exit
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def on_finished_testing(event)
|
17
|
+
results = MultiJson.dump(@feature_hashes, pretty: true)
|
18
|
+
@io.write(results)
|
19
|
+
upload_to_api(results)
|
20
|
+
end
|
21
|
+
|
22
|
+
def upload_to_api(results)
|
23
|
+
# Set data for api_call
|
24
|
+
metadata = JSON.parse(File.read('./storage/metadata.json'))
|
25
|
+
calliope_config = {
|
26
|
+
'api_key' => ENV['API_KEY'],
|
27
|
+
'profile_id' => ENV['PROFILE_ID'],
|
28
|
+
'browser' => metadata['browser']['name'],
|
29
|
+
'os' => metadata['browser']['platform']
|
30
|
+
}
|
31
|
+
# Set url
|
32
|
+
if ENV['API_URL']
|
33
|
+
calliope_config['url'] = ENV['API_URL']
|
34
|
+
else
|
35
|
+
calliope_config['url'] = 'https://app.calliope/pro'
|
36
|
+
end
|
37
|
+
api_call(results, calliope_config)
|
38
|
+
end
|
39
|
+
|
40
|
+
def api_call(results, calliope_config)
|
41
|
+
# Make API call
|
42
|
+
url = "#{calliope_config['url']}/api/v2/profile/#{calliope_config['profile_id']}/testresult?browser=#{calliope_config['browser']}&os=#{calliope_config['os']}"
|
43
|
+
url = URI.parse(url)
|
44
|
+
http = Net::HTTP.new(url.host, url.port)
|
45
|
+
# Enable ssl when necessary
|
46
|
+
if calliope_config['url'].include? 'https://'
|
47
|
+
http.use_ssl = true
|
48
|
+
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
49
|
+
end
|
50
|
+
header = {
|
51
|
+
'content-type' => 'application/json',
|
52
|
+
'x-api-key' => calliope_config['api_key']
|
53
|
+
}
|
54
|
+
request = Net::HTTP::Post.new(url, header)
|
55
|
+
request.body = results
|
56
|
+
response = http.request(request)
|
57
|
+
print "\nAPI response: #{response.body} \n"
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
metadata
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cucumber-calliope_importer
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Maurice Wijnia
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-10-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.15'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: cucumber
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2'
|
55
|
+
description: |-
|
56
|
+
CalliopeImport uses environment variables of a test run to make an API call with the test results.
|
57
|
+
You can set those variables and call the formatter like this:
|
58
|
+
|
59
|
+
$ cucumber API_KEY='API Key Here' PROFILE_ID='Profile_ID Here' -f calliope_import
|
60
|
+
email:
|
61
|
+
- maurice.wijnia@spritecloud.com
|
62
|
+
executables: []
|
63
|
+
extensions: []
|
64
|
+
extra_rdoc_files: []
|
65
|
+
files:
|
66
|
+
- ".gitignore"
|
67
|
+
- Gemfile
|
68
|
+
- LICENSE.txt
|
69
|
+
- README.md
|
70
|
+
- Rakefile
|
71
|
+
- bin/console
|
72
|
+
- bin/setup
|
73
|
+
- cucumber-calliope_importer-0.1.0.gem
|
74
|
+
- cucumber-calliope_importer.gemspec
|
75
|
+
- lib/cucumber/calliope_importer.rb
|
76
|
+
- lib/cucumber/calliope_importer/json.rb
|
77
|
+
- lib/cucumber/calliope_importer/version.rb
|
78
|
+
- lib/cucumber/cli/add_to_options.rb
|
79
|
+
homepage: https://github.com/mauricewijnia/cucumber-calliope_import
|
80
|
+
licenses:
|
81
|
+
- MIT
|
82
|
+
metadata:
|
83
|
+
allowed_push_host: https://rubygems.org
|
84
|
+
post_install_message:
|
85
|
+
rdoc_options: []
|
86
|
+
require_paths:
|
87
|
+
- lib
|
88
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
requirements: []
|
99
|
+
rubyforge_project:
|
100
|
+
rubygems_version: 2.6.13
|
101
|
+
signing_key:
|
102
|
+
specification_version: 4
|
103
|
+
summary: This gem adds a 'calliope-import' formatter to cucumber that uploads cucumber
|
104
|
+
json output to the calliope.pro platform.
|
105
|
+
test_files: []
|