crucible_ci 0.1.5 → 0.1.6
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 +4 -4
- data/.gitignore +1 -1
- data/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/exe/crucible_ci +2 -2
- data/exe/{console → crucible_ci_console} +0 -0
- data/exe/{setup → crucible_ci_setup} +0 -0
- data/lib/crucible_ci/version.rb +1 -1
- data/lib/crucible_ci.rb +4 -8
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b568ccfc23ecc9519620b02302caf9952657c65
|
4
|
+
data.tar.gz: c4568d4bf99353d953bb22333088dfab97360f17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b2304353de5543fa73c04d9617bb9753ef6aa278c7f44acbef1273b36b3e14bb6f292a919e590308357929d28fb5bf893d68468cfce39f1f357ac40b7d9e11f
|
7
|
+
data.tar.gz: 094682d0d4805366b03a6f50d1d6d8a3b6c11795b455861a435c6c6feec708dad1c76f5cfce5e4151943fabc071634518b4c5367f736b035d7e7b2598200cc83
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
@@ -26,7 +26,7 @@ GIT
|
|
26
26
|
|
27
27
|
GIT
|
28
28
|
remote: https://github.com/fhir-crucible/plan_executor.git
|
29
|
-
revision:
|
29
|
+
revision: 6f984863fd81b0a2a45dd914dd3660a00c718c81
|
30
30
|
branch: master
|
31
31
|
specs:
|
32
32
|
plan_executor (1.8.0)
|
@@ -41,7 +41,7 @@ GIT
|
|
41
41
|
PATH
|
42
42
|
remote: .
|
43
43
|
specs:
|
44
|
-
crucible_ci (0.1.
|
44
|
+
crucible_ci (0.1.5)
|
45
45
|
methadone (~> 1.9.2)
|
46
46
|
plan_executor (~> 1.8)
|
47
47
|
|
data/README.md
CHANGED
@@ -37,7 +37,7 @@ Where `server_url` is the URL of a FHIR server accessible to the current compute
|
|
37
37
|
|
38
38
|
## Development
|
39
39
|
|
40
|
-
After checking out the repo, run `bin/
|
40
|
+
After checking out the repo, run `bin/crucible_ci_setup` to install dependencies. You can also run `bin/crucible_ci_console` for an interactive prompt that will allow you to experiment.
|
41
41
|
|
42
42
|
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).
|
43
43
|
|
data/exe/crucible_ci
CHANGED
@@ -12,9 +12,9 @@ class App
|
|
12
12
|
main do |server_url|
|
13
13
|
allowed_failures = options['allowed-failures'] ? options['allowed-failures'].to_i : 0
|
14
14
|
if options[:resource] || options[:test]
|
15
|
-
CrucibleCi::Executor.execute(server_url, allowed_failures, options[:test], options[:resource])
|
15
|
+
CrucibleCi::Executor.execute(server_url, allowed_failures, options[:test], options[:resource], logger)
|
16
16
|
else
|
17
|
-
CrucibleCi::Executor.execute_all(server_url, allowed_failures)
|
17
|
+
CrucibleCi::Executor.execute_all(server_url, allowed_failures, logger)
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
File without changes
|
File without changes
|
data/lib/crucible_ci/version.rb
CHANGED
data/lib/crucible_ci.rb
CHANGED
@@ -4,28 +4,24 @@ require 'benchmark'
|
|
4
4
|
|
5
5
|
module CrucibleCi
|
6
6
|
class Executor
|
7
|
-
def self.execute(url, allowed_failures, test = nil, resource = nil)
|
7
|
+
def self.execute(url, allowed_failures, test = nil, resource = nil, logger = nil)
|
8
8
|
results = nil
|
9
|
-
FHIR.logger =
|
9
|
+
FHIR.logger = defined?(Rails) ? Rails.logger : logger
|
10
10
|
b = Benchmark.measure do
|
11
11
|
client = FHIR::Client.new(url)
|
12
12
|
client.conformance_statement
|
13
|
-
# options = client.get_oauth2_metadata_from_conformance
|
14
|
-
# set_client_secrets(client, options) unless options.empty?
|
15
13
|
results = execute_test(client, test, resource)
|
16
14
|
end
|
17
15
|
puts "Execute #{test} completed in #{b.real} seconds."
|
18
16
|
passing?(results, allowed_failures)
|
19
17
|
end
|
20
18
|
|
21
|
-
def self.execute_all(url, allowed_failures)
|
19
|
+
def self.execute_all(url, allowed_failures, logger = nil)
|
22
20
|
results = nil
|
23
|
-
FHIR.logger =
|
21
|
+
FHIR.logger = defined?(Rails) ? Rails.logger : logger
|
24
22
|
b = Benchmark.measure do
|
25
23
|
client = FHIR::Client.new(url)
|
26
24
|
client.conformance_statement
|
27
|
-
# options = client.get_oauth2_metadata_from_conformance
|
28
|
-
# set_client_secrets(client, options) unless options.empty?
|
29
25
|
results = execute_all(client)
|
30
26
|
end
|
31
27
|
puts "Execute All completed in #{b.real} seconds."
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: crucible_ci
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael O'Keefe
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02-
|
11
|
+
date: 2017-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -112,9 +112,9 @@ description:
|
|
112
112
|
email:
|
113
113
|
- mokeefe@mitre.org
|
114
114
|
executables:
|
115
|
-
- console
|
116
115
|
- crucible_ci
|
117
|
-
-
|
116
|
+
- crucible_ci_console
|
117
|
+
- crucible_ci_setup
|
118
118
|
extensions: []
|
119
119
|
extra_rdoc_files: []
|
120
120
|
files:
|
@@ -125,9 +125,9 @@ files:
|
|
125
125
|
- README.md
|
126
126
|
- Rakefile
|
127
127
|
- crucible_ci.gemspec
|
128
|
-
- exe/console
|
129
128
|
- exe/crucible_ci
|
130
|
-
- exe/
|
129
|
+
- exe/crucible_ci_console
|
130
|
+
- exe/crucible_ci_setup
|
131
131
|
- lib/crucible_ci.rb
|
132
132
|
- lib/crucible_ci/version.rb
|
133
133
|
- logs/.gitkeep
|
@@ -151,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
151
151
|
version: '0'
|
152
152
|
requirements: []
|
153
153
|
rubyforge_project:
|
154
|
-
rubygems_version: 2.
|
154
|
+
rubygems_version: 2.6.10
|
155
155
|
signing_key:
|
156
156
|
specification_version: 4
|
157
157
|
summary: A way to run Plan Executor tests in the command line
|