splunk-sdk-ruby 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/CHANGELOG.md +4 -0
- data/README.md +22 -7
- data/examples/run_examples.rb +124 -0
- data/examples/run_examples.rb~ +22 -0
- data/lib/splunk-sdk-ruby/entity/job.rb +1 -1
- data/lib/splunk-sdk-ruby/version.rb +1 -1
- data/splunk-sdk-ruby.gemspec +1 -1
- data/test/test_jobs.rb +33 -0
- metadata +96 -94
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZDYzOTEzMWYzOGMyOWRhOTA1ZjdlZmRmMGVhYTJhNGMwMTFiZDI2Mg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTBmMWNkMDM3YmMwYjQyY2E1ODM1NjRjYTM1NGNiM2YwOTIzZDhhOA==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MmNhZGUwMDdkYTBjM2U3NGQyYTRmMzEyNDUxZDZjYjNkYjU0ZmFiZTgyYTRk
|
10
|
+
Y2YwZjk0ZmJmOTQ2M2JjYTgyYWJmNjE4NTg1MTIzYWIwMGQ0YmY4YjFmOWU0
|
11
|
+
MWI2ZDRkMjMzMDUxNWE0MGQwY2M0ZTcyMzI5ZmE1MzIwZGE4NTM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDc5MmZiZGI2NTNmZjM5YzRiMThhNjY4MWFiM2Q1Yjc1ZTEyM2Q5MTQ1ZGJh
|
14
|
+
MjQxZjU1NTkxOTkyYTk5ZWJmYWM0Y2E3ZDA5NDkwNmZjNzYzMTRjZGQxMTc4
|
15
|
+
ZDdmZDFkZWY0MmE3OTA3NWMwZmViNmFmOWU1OWNkMDNkMjc5NDg=
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# The Splunk Software Development Kit for Ruby
|
1
|
+
# The Splunk Software Development Kit for Ruby
|
2
2
|
|
3
|
-
#### Version 1.0
|
3
|
+
#### Version 1.0.1
|
4
4
|
This Splunk Software Development Kit (SDK) for Ruby contains library code and
|
5
5
|
examples designed to enable developers to build applications using Splunk.
|
6
6
|
|
@@ -281,11 +281,26 @@ If you would like to contribute to the SDK, go here for more information:
|
|
281
281
|
|
282
282
|
### Support
|
283
283
|
|
284
|
-
|
285
|
-
an
|
286
|
-
|
287
|
-
|
288
|
-
|
284
|
+
1. You will be granted support if you or your company are already covered
|
285
|
+
under an existing maintenance/support agreement. Visit
|
286
|
+
<http://www.splunk.com/support> and click **Submit a Case** under **Contact
|
287
|
+
a Support Engineer**.
|
288
|
+
|
289
|
+
2. If you are not covered under an existing maintenance/support agreement, you
|
290
|
+
can find help through the broader community at:
|
291
|
+
|
292
|
+
<ul>
|
293
|
+
<li><a href='http://splunk-base.splunk.com/answers/'>Splunk Answers</a> (use
|
294
|
+
the <b>sdk</b> and <b>ruby</b> tags to identify your questions)</li>
|
295
|
+
<li><a href='http://groups.google.com/group/splunkdev'>Splunkdev Google
|
296
|
+
Group</a></li>
|
297
|
+
</ul>
|
298
|
+
3. Splunk will NOT provide support for SDKs if the core library (the
|
299
|
+
code in the <b>lib</b> directory) has been modified. If you modify an SDK
|
300
|
+
and want support, you can find help through the broader community and Splunk
|
301
|
+
answers (see above). We would also like to know why you modified the core
|
302
|
+
library—please send feedback to _devinfo@splunk.com_.
|
303
|
+
4. File any issues on [GitHub](https://github.com/splunk/splunk-sdk-ruby/issues).
|
289
304
|
|
290
305
|
### Contact Us
|
291
306
|
|
@@ -0,0 +1,124 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright 2011-2012 Splunk, Inc.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License"): you may
|
5
|
+
# not use this file except in compliance with the License. You may obtain
|
6
|
+
# a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations
|
14
|
+
# under the License.
|
15
|
+
#++
|
16
|
+
|
17
|
+
# This script runs all the examples shipped with the SDK, one after another,
|
18
|
+
# editing their source on the fly to set the correct login parameters for
|
19
|
+
# your Splunk instance.
|
20
|
+
#
|
21
|
+
# You can specify the host and credentials to use on the command line, as in
|
22
|
+
#
|
23
|
+
# $ ruby run_example.rb --host localhost --port 8089
|
24
|
+
# --username admin --password changeme
|
25
|
+
#
|
26
|
+
# Any of these may be omitted. The values shown above are the defaults.
|
27
|
+
|
28
|
+
require 'optparse'
|
29
|
+
|
30
|
+
def main(argv)
|
31
|
+
credentials = {
|
32
|
+
:host => "localhost",
|
33
|
+
:port => 8089,
|
34
|
+
:username => "admin",
|
35
|
+
:password => "changeme",
|
36
|
+
}
|
37
|
+
|
38
|
+
parser = OptionParser.new do |op|
|
39
|
+
op.on("--host HOSTNAME", String, "Set Splunk host (default: localhost)") do |s|
|
40
|
+
credentials[:host] = s
|
41
|
+
end
|
42
|
+
|
43
|
+
op.on("--port PORT", Integer, "Set Splunk port (default: 8089)") do |p|
|
44
|
+
credentials[:port] = p
|
45
|
+
end
|
46
|
+
|
47
|
+
op.on("--username USERNAME", String, "Set username for login (default: admin)") do |s|
|
48
|
+
credentials[:username] = s
|
49
|
+
end
|
50
|
+
|
51
|
+
op.on("--password PASSWORD", String, "Set password for login (default: changeme)") do |s|
|
52
|
+
credentials[:password] = s
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
parser.parse!(argv)
|
57
|
+
|
58
|
+
# The examples are all named as 1_something.rb, 2_something.rb in the same
|
59
|
+
# directory as this script.
|
60
|
+
example_path = File.dirname(File.expand_path(__FILE__))
|
61
|
+
example_files = Dir.entries(example_path).
|
62
|
+
select() {|s| s.match('^\\d_.+\\.rb')}.
|
63
|
+
map() {|s| File.join(example_path, s)}
|
64
|
+
|
65
|
+
# Add the path to the Splunk SDK for Ruby.
|
66
|
+
$LOAD_PATH.push(File.join(File.dirname(example_path), "lib"))
|
67
|
+
|
68
|
+
# Run
|
69
|
+
example_files.each do |p|
|
70
|
+
run_example(p, credentials)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
|
75
|
+
module Kernel
|
76
|
+
require 'stringio'
|
77
|
+
|
78
|
+
def eval_stdout
|
79
|
+
out = StringIO.new
|
80
|
+
err = StringIO.new
|
81
|
+
$stdout = out
|
82
|
+
$stderr = err
|
83
|
+
yield
|
84
|
+
return [out.string, err.string]
|
85
|
+
ensure
|
86
|
+
$stdout = STDOUT
|
87
|
+
$stderr = STDERR
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
def run_example(abspath, credentials)
|
92
|
+
handle = File.open(abspath)
|
93
|
+
contents = handle.read()
|
94
|
+
handle.close()
|
95
|
+
|
96
|
+
credentials.each_pair do |key, value|
|
97
|
+
contents.gsub!(Regexp.new(key.inspect + "\s*=>\s*[^,\\n]+"),
|
98
|
+
key.inspect + " => " + value.inspect)
|
99
|
+
end
|
100
|
+
|
101
|
+
begin
|
102
|
+
output = eval_stdout do
|
103
|
+
eval(contents)
|
104
|
+
end
|
105
|
+
puts "SUCCESS: " + abspath
|
106
|
+
puts " stdout was:"
|
107
|
+
puts output[0].lines.map() {|s| " " + s}.join("")
|
108
|
+
if output[1] != ""
|
109
|
+
puts " stderr was:"
|
110
|
+
puts output[1].lines.map() {|s| " " + s}.join("")
|
111
|
+
end
|
112
|
+
puts
|
113
|
+
rescue Exception => e
|
114
|
+
puts "FAILURE: " + abspath
|
115
|
+
puts " using credentials " + credentials.to_s
|
116
|
+
puts " Error was:"
|
117
|
+
puts e.to_s.lines.map() {|s| " " + s}.join("")
|
118
|
+
puts
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
if __FILE__ == $0
|
123
|
+
main(ARGV)
|
124
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright 2011-2012 Splunk, Inc.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License"): you may
|
5
|
+
# not use this file except in compliance with the License. You may obtain
|
6
|
+
# a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations
|
14
|
+
# under the License.
|
15
|
+
#++
|
16
|
+
|
17
|
+
# This script runs all the examples shipped with the SDK, one after another,
|
18
|
+
# editing their source on the fly to set the correct login parameters for
|
19
|
+
# your Splunk instance. It pauses between each to ask if this was correct.
|
20
|
+
|
21
|
+
example_path = File.dirname(File.expand_path(__FILE__))
|
22
|
+
example_files = Dir.entries(example_path).filter() {|s| s.match('^\\d_')}
|
data/splunk-sdk-ruby.gemspec
CHANGED
data/test/test_jobs.rb
CHANGED
@@ -270,6 +270,39 @@ class JobsTestCase < TestCaseWithSplunkConnection
|
|
270
270
|
sleep(4)
|
271
271
|
end
|
272
272
|
end
|
273
|
+
|
274
|
+
##
|
275
|
+
# Splunk by default returns 100 events in a call to results or preview.
|
276
|
+
# We need to make sure overriding this with count works.
|
277
|
+
#
|
278
|
+
def test_search_with_many_results
|
279
|
+
internal = @service.indexes.fetch("_internal")
|
280
|
+
internal.refresh()
|
281
|
+
if internal.fetch("totalEventCount").to_i < 150
|
282
|
+
fail("Need at 150 events in index _internal for this test.")
|
283
|
+
end
|
284
|
+
|
285
|
+
job = @service.jobs.create("search index=_internal | head 150")
|
286
|
+
while !job.is_done?()
|
287
|
+
sleep(0.1)
|
288
|
+
end
|
289
|
+
|
290
|
+
stream = job.results(:count => 0)
|
291
|
+
results = Splunk::ResultsReader.new(stream)
|
292
|
+
count = 0
|
293
|
+
results.each do |event|
|
294
|
+
count += 1
|
295
|
+
end
|
296
|
+
assert_equal(150, count)
|
297
|
+
|
298
|
+
stream = job.preview(:count => 0)
|
299
|
+
results = Splunk::ResultsReader.new(stream)
|
300
|
+
count = 0
|
301
|
+
results.each do |event|
|
302
|
+
count += 1
|
303
|
+
end
|
304
|
+
assert_equal(150, count)
|
305
|
+
end
|
273
306
|
end
|
274
307
|
|
275
308
|
class LongJobTestCase < JobsTestCase
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: splunk-sdk-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Splunk
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-05-
|
11
|
+
date: 2013-05-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -45,86 +45,88 @@ executables: []
|
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
-
- lib/splunk-sdk-ruby/ambiguous_entity_reference.rb
|
49
48
|
- lib/splunk-sdk-ruby/atomfeed.rb
|
50
|
-
- lib/splunk-sdk-ruby/collection/apps.rb
|
51
|
-
- lib/splunk-sdk-ruby/collection/case_insensitive_collection.rb
|
52
|
-
- lib/splunk-sdk-ruby/collection/configuration_file.rb
|
53
|
-
- lib/splunk-sdk-ruby/collection/configurations.rb
|
54
|
-
- lib/splunk-sdk-ruby/collection/input_kinds.rb
|
55
|
-
- lib/splunk-sdk-ruby/collection/jobs.rb
|
56
|
-
- lib/splunk-sdk-ruby/collection/messages.rb
|
57
|
-
- lib/splunk-sdk-ruby/collection.rb
|
58
49
|
- lib/splunk-sdk-ruby/context.rb
|
59
|
-
- lib/splunk-sdk-ruby/
|
60
|
-
- lib/splunk-sdk-ruby/entity/job.rb
|
61
|
-
- lib/splunk-sdk-ruby/entity/message.rb
|
62
|
-
- lib/splunk-sdk-ruby/entity/modular_input_kind.rb
|
63
|
-
- lib/splunk-sdk-ruby/entity/saved_search.rb
|
64
|
-
- lib/splunk-sdk-ruby/entity/stanza.rb
|
65
|
-
- lib/splunk-sdk-ruby/entity.rb
|
66
|
-
- lib/splunk-sdk-ruby/entity_not_ready.rb
|
50
|
+
- lib/splunk-sdk-ruby/service.rb
|
67
51
|
- lib/splunk-sdk-ruby/illegal_operation.rb
|
52
|
+
- lib/splunk-sdk-ruby/version.rb
|
68
53
|
- lib/splunk-sdk-ruby/namespace.rb
|
69
|
-
- lib/splunk-sdk-ruby/
|
70
|
-
- lib/splunk-sdk-ruby/service.rb
|
54
|
+
- lib/splunk-sdk-ruby/entity.rb
|
71
55
|
- lib/splunk-sdk-ruby/splunk_http_error.rb
|
56
|
+
- lib/splunk-sdk-ruby/ambiguous_entity_reference.rb
|
57
|
+
- lib/splunk-sdk-ruby/entity_not_ready.rb
|
72
58
|
- lib/splunk-sdk-ruby/synonyms.rb
|
73
|
-
- lib/splunk-sdk-ruby/
|
59
|
+
- lib/splunk-sdk-ruby/resultsreader.rb
|
74
60
|
- lib/splunk-sdk-ruby/xml_shim.rb
|
61
|
+
- lib/splunk-sdk-ruby/entity/job.rb
|
62
|
+
- lib/splunk-sdk-ruby/entity/saved_search.rb
|
63
|
+
- lib/splunk-sdk-ruby/entity/stanza.rb
|
64
|
+
- lib/splunk-sdk-ruby/entity/index.rb
|
65
|
+
- lib/splunk-sdk-ruby/entity/modular_input_kind.rb
|
66
|
+
- lib/splunk-sdk-ruby/entity/message.rb
|
67
|
+
- lib/splunk-sdk-ruby/collection/configurations.rb
|
68
|
+
- lib/splunk-sdk-ruby/collection/case_insensitive_collection.rb
|
69
|
+
- lib/splunk-sdk-ruby/collection/jobs.rb
|
70
|
+
- lib/splunk-sdk-ruby/collection/messages.rb
|
71
|
+
- lib/splunk-sdk-ruby/collection/apps.rb
|
72
|
+
- lib/splunk-sdk-ruby/collection/configuration_file.rb
|
73
|
+
- lib/splunk-sdk-ruby/collection/input_kinds.rb
|
74
|
+
- lib/splunk-sdk-ruby/collection.rb
|
75
75
|
- lib/splunk-sdk-ruby.rb
|
76
76
|
- examples/1_connect.rb
|
77
77
|
- examples/2_manage.rb
|
78
|
-
- examples/
|
78
|
+
- examples/run_examples.rb
|
79
|
+
- examples/example_modular_inputs.spl
|
79
80
|
- examples/4_asynchronous_searches.rb
|
81
|
+
- examples/run_examples.rb~
|
80
82
|
- examples/5_stream_data_to_splunk.rb
|
83
|
+
- examples/3_blocking_searches.rb
|
81
84
|
- examples/6_work_with_modular_inputs.rb
|
82
|
-
-
|
83
|
-
- test/
|
84
|
-
- test/
|
85
|
-
- test/
|
86
|
-
- test/
|
87
|
-
- test/
|
88
|
-
- test/
|
89
|
-
- test/
|
85
|
+
- test/test_restarts.rb
|
86
|
+
- test/test_jobs.rb
|
87
|
+
- test/test_helper.rb
|
88
|
+
- test/test_service.rb
|
89
|
+
- test/test_configuration_file.rb
|
90
|
+
- test/test_saved_searches.rb
|
91
|
+
- test/test_users.rb
|
92
|
+
- test/test_context.rb
|
90
93
|
- test/data/export/4.3.5/export_results.xml
|
91
94
|
- test/data/export/5.0.1/export_results.xml
|
92
95
|
- test/data/export/5.0.1/nonreporting.xml
|
93
|
-
- test/data/
|
94
|
-
- test/data/results/4.2.5/results-empty.xml
|
95
|
-
- test/data/results/4.2.5/results-preview.xml
|
96
|
-
- test/data/results/4.2.5/results.xml
|
97
|
-
- test/data/results/4.3.5/results-empty.xml
|
98
|
-
- test/data/results/4.3.5/results-preview.xml
|
99
|
-
- test/data/results/4.3.5/results.xml
|
100
|
-
- test/data/results/5.0.2/results-empty.xml
|
101
|
-
- test/data/results/5.0.2/results-empty_preview.xml
|
96
|
+
- test/data/export/4.2.5/export_results.xml
|
102
97
|
- test/data/results/5.0.2/results-preview.xml
|
103
98
|
- test/data/results/5.0.2/results.xml
|
99
|
+
- test/data/results/5.0.2/results-empty.xml
|
100
|
+
- test/data/results/5.0.2/results-empty_preview.xml
|
101
|
+
- test/data/results/4.3.5/results-preview.xml
|
102
|
+
- test/data/results/4.3.5/results.xml
|
103
|
+
- test/data/results/4.3.5/results-empty.xml
|
104
|
+
- test/data/results/4.2.5/results-preview.xml
|
105
|
+
- test/data/results/4.2.5/results.xml
|
106
|
+
- test/data/results/4.2.5/results-empty.xml
|
104
107
|
- test/data/resultsreader_test_data.json
|
105
|
-
- test/
|
106
|
-
- test/
|
107
|
-
- test/
|
108
|
+
- test/data/atom/atom_without_feed.xml
|
109
|
+
- test/data/atom/atom_with_feed.xml
|
110
|
+
- test/data/atom/atom_with_several_entries.xml
|
111
|
+
- test/data/atom/atom_feed_with_message.xml
|
112
|
+
- test/data/atom/atom_with_simple_entries.xml
|
113
|
+
- test/data/atom_test_data.json
|
114
|
+
- test/data/export_test_data.json
|
108
115
|
- test/test_collection.rb
|
109
|
-
- test/test_configuration_file.rb
|
110
|
-
- test/test_context.rb
|
111
|
-
- test/test_entity.rb
|
112
|
-
- test/test_helper.rb
|
113
|
-
- test/test_http_error.rb
|
114
|
-
- test/test_index.rb
|
115
|
-
- test/test_inputs.rb
|
116
|
-
- test/test_jobs.rb
|
117
|
-
- test/test_messages.rb
|
118
|
-
- test/test_modular_input_kinds.rb
|
119
|
-
- test/test_namespace.rb
|
120
|
-
- test/test_restarts.rb
|
121
|
-
- test/test_resultsreader.rb
|
122
116
|
- test/test_roles.rb
|
123
|
-
- test/test_saved_searches.rb
|
124
|
-
- test/test_service.rb
|
125
|
-
- test/test_users.rb
|
126
117
|
- test/test_xml_shim.rb
|
118
|
+
- test/test_atomfeed.rb
|
127
119
|
- test/testfile.txt
|
120
|
+
- test/services.xml
|
121
|
+
- test/test_http_error.rb
|
122
|
+
- test/test_resultsreader.rb
|
123
|
+
- test/test_namespace.rb
|
124
|
+
- test/test_modular_input_kinds.rb
|
125
|
+
- test/test_inputs.rb
|
126
|
+
- test/test_entity.rb
|
127
|
+
- test/test_index.rb
|
128
|
+
- test/services.server.info.xml
|
129
|
+
- test/test_messages.rb
|
128
130
|
- CHANGELOG.md
|
129
131
|
- LICENSE
|
130
132
|
- README.md
|
@@ -156,48 +158,48 @@ signing_key:
|
|
156
158
|
specification_version: 4
|
157
159
|
summary: Ruby bindings to Splunk REST layer
|
158
160
|
test_files:
|
159
|
-
- test/
|
160
|
-
- test/
|
161
|
-
- test/
|
162
|
-
- test/
|
163
|
-
- test/
|
164
|
-
- test/
|
165
|
-
- test/
|
161
|
+
- test/test_restarts.rb
|
162
|
+
- test/test_jobs.rb
|
163
|
+
- test/test_helper.rb
|
164
|
+
- test/test_service.rb
|
165
|
+
- test/test_configuration_file.rb
|
166
|
+
- test/test_saved_searches.rb
|
167
|
+
- test/test_users.rb
|
168
|
+
- test/test_context.rb
|
166
169
|
- test/data/export/4.3.5/export_results.xml
|
167
170
|
- test/data/export/5.0.1/export_results.xml
|
168
171
|
- test/data/export/5.0.1/nonreporting.xml
|
169
|
-
- test/data/
|
170
|
-
- test/data/results/4.2.5/results-empty.xml
|
171
|
-
- test/data/results/4.2.5/results-preview.xml
|
172
|
-
- test/data/results/4.2.5/results.xml
|
173
|
-
- test/data/results/4.3.5/results-empty.xml
|
174
|
-
- test/data/results/4.3.5/results-preview.xml
|
175
|
-
- test/data/results/4.3.5/results.xml
|
176
|
-
- test/data/results/5.0.2/results-empty.xml
|
177
|
-
- test/data/results/5.0.2/results-empty_preview.xml
|
172
|
+
- test/data/export/4.2.5/export_results.xml
|
178
173
|
- test/data/results/5.0.2/results-preview.xml
|
179
174
|
- test/data/results/5.0.2/results.xml
|
175
|
+
- test/data/results/5.0.2/results-empty.xml
|
176
|
+
- test/data/results/5.0.2/results-empty_preview.xml
|
177
|
+
- test/data/results/4.3.5/results-preview.xml
|
178
|
+
- test/data/results/4.3.5/results.xml
|
179
|
+
- test/data/results/4.3.5/results-empty.xml
|
180
|
+
- test/data/results/4.2.5/results-preview.xml
|
181
|
+
- test/data/results/4.2.5/results.xml
|
182
|
+
- test/data/results/4.2.5/results-empty.xml
|
180
183
|
- test/data/resultsreader_test_data.json
|
181
|
-
- test/
|
182
|
-
- test/
|
183
|
-
- test/
|
184
|
+
- test/data/atom/atom_without_feed.xml
|
185
|
+
- test/data/atom/atom_with_feed.xml
|
186
|
+
- test/data/atom/atom_with_several_entries.xml
|
187
|
+
- test/data/atom/atom_feed_with_message.xml
|
188
|
+
- test/data/atom/atom_with_simple_entries.xml
|
189
|
+
- test/data/atom_test_data.json
|
190
|
+
- test/data/export_test_data.json
|
184
191
|
- test/test_collection.rb
|
185
|
-
- test/test_configuration_file.rb
|
186
|
-
- test/test_context.rb
|
187
|
-
- test/test_entity.rb
|
188
|
-
- test/test_helper.rb
|
189
|
-
- test/test_http_error.rb
|
190
|
-
- test/test_index.rb
|
191
|
-
- test/test_inputs.rb
|
192
|
-
- test/test_jobs.rb
|
193
|
-
- test/test_messages.rb
|
194
|
-
- test/test_modular_input_kinds.rb
|
195
|
-
- test/test_namespace.rb
|
196
|
-
- test/test_restarts.rb
|
197
|
-
- test/test_resultsreader.rb
|
198
192
|
- test/test_roles.rb
|
199
|
-
- test/test_saved_searches.rb
|
200
|
-
- test/test_service.rb
|
201
|
-
- test/test_users.rb
|
202
193
|
- test/test_xml_shim.rb
|
194
|
+
- test/test_atomfeed.rb
|
203
195
|
- test/testfile.txt
|
196
|
+
- test/services.xml
|
197
|
+
- test/test_http_error.rb
|
198
|
+
- test/test_resultsreader.rb
|
199
|
+
- test/test_namespace.rb
|
200
|
+
- test/test_modular_input_kinds.rb
|
201
|
+
- test/test_inputs.rb
|
202
|
+
- test/test_entity.rb
|
203
|
+
- test/test_index.rb
|
204
|
+
- test/services.server.info.xml
|
205
|
+
- test/test_messages.rb
|