jasperserver-rails 0.4.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a27409a5e6a91607cc06bf3336ac971cefa828f8
4
- data.tar.gz: c93a4b4ba67c65675a05c2acda3d8b1b93bd7f3f
3
+ metadata.gz: ac7821da9cf526c83c1059eb32f82a1fd1631cb9
4
+ data.tar.gz: 100acdb5effeaf0b8178290e8d4d30cb90a14029
5
5
  SHA512:
6
- metadata.gz: 1c490ff5b313c350ad6ad971c66406442b51ee2245f194c2e3dcb642df9fe57f4b385175021ec0557300c6555d2139d151b70fd26c089bd47dc7c6215f659c5a
7
- data.tar.gz: 4e38c6a358f65ca65b0ee05c5a9a5bc0165195e008b45ff49b54111ee9c57bc9930908f38ae0a7972d9745824de93c314b4d8f2f09ad4d6fa8bf160500459e65
6
+ metadata.gz: 36a26814753702c77606e57cd882d9e0a74f32c58a12e12f4b685e3e9379a27c804acf7126ec3e1cde5d8cf506294bc245b2dc72a5c0c469e795c6b2a77156e9
7
+ data.tar.gz: f9a76adfca6251191d495d475bea91a93c8d0cfb0aca8d5f0637feab64a38c1f0d27b076b90cc79606ebec69abc67b8eaadde7bb15039af4f4c3b4f0f0a8a9bb
@@ -1,15 +1,46 @@
1
1
  # Changelog
2
2
 
3
- ## Version 0.1.0
3
+ ## 1.0.0
4
+
5
+ * Adds ability to save report to a file
6
+
7
+ ## 0.4.0
8
+
9
+ * Adds ability to specify report path
10
+ * Fixes tests due to report path change
11
+
12
+ ## 0.3.0
13
+
14
+ * Updates test suite to work with Rails 4
15
+
16
+ ## 0.2.1
17
+
18
+ * Fixes dependency versions in gemspec
19
+
20
+ ## 0.2.0
21
+
22
+ * Updates `rest-client`
23
+
24
+ ## 0.1.2
25
+
26
+ * Fixes gemspec
27
+ * Updates dependencies
28
+
29
+ ## 0.1.1
30
+
31
+ * Changes rubygems to use https
32
+ * Relaxes rails version
33
+
34
+ ## 0.1.0
4
35
 
5
36
  * Updated gem to use URI and encode parameters sent to the server
6
37
  * Updated tests for convenience
7
38
 
8
- ## Version 0.0.2
39
+ ## 0.0.2
9
40
 
10
41
  * Allow running in multiple environments
11
42
  * Added some basic tests
12
43
 
13
- ## Version 0.0.1
44
+ ## 0.0.1
14
45
 
15
46
  * Initial release
@@ -21,7 +21,7 @@ module JasperserverRails
21
21
  login
22
22
  end
23
23
 
24
- def run_report(filename, &block)
24
+ def generate_report(&block)
25
25
  instance_eval(&block) if block_given?
26
26
  login
27
27
  # Run report
@@ -37,11 +37,12 @@ module JasperserverRails
37
37
  ).to_s,
38
38
  { cookies: @cookie }
39
39
  )
40
+ end
40
41
 
41
- # Write file
42
+ def run_report(filename, &block)
42
43
  FileUtils.mkdir_p(File.expand_path(filename).split('/')[0..-2].join('/'))
43
44
  f = File.new(filename, 'wb')
44
- f.write(report_data.body)
45
+ f.write(generate_report(&block).body)
45
46
  f.close
46
47
  end
47
48
 
@@ -1,3 +1,3 @@
1
1
  module JasperserverRails
2
- VERSION = '0.4.0'
2
+ VERSION = '1.0.0'
3
3
  end
@@ -66,6 +66,18 @@ class JasperserverRailsTest < ActiveSupport::TestCase
66
66
  File.exist? report_file
67
67
  end
68
68
 
69
+ test 'report data is returned when simply generating the report' do
70
+ report_file = 'test/dummy/tmp/reports/test3.pdf'
71
+ VCR.use_cassette 'test3' do
72
+ report = JasperserverRails::Jasperserver.new.generate_report do
73
+ format 'pdf'
74
+ report 'reports/samples/Department'
75
+ params({ Value1: 'Value1' })
76
+ end
77
+ assert report
78
+ end
79
+ end
80
+
69
81
  test 'stays logged in when running multiple reports' do
70
82
  report_file = 'test/dummy/tmp/reports/test4.pdf'
71
83
  VCR.use_cassette 'test4' do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jasperserver-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris McKnight
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-19 00:00:00.000000000 Z
11
+ date: 2016-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -82,19 +82,11 @@ files:
82
82
  - test/dummy/config/initializers/wrap_parameters.rb
83
83
  - test/dummy/config/locales/en.yml
84
84
  - test/dummy/config/routes.rb
85
- - test/dummy/db/test.sqlite3
86
- - test/dummy/log/development.log
87
- - test/dummy/log/test.log
88
85
  - test/dummy/public/404.html
89
86
  - test/dummy/public/422.html
90
87
  - test/dummy/public/500.html
91
88
  - test/dummy/public/favicon.ico
92
89
  - test/dummy/script/rails
93
- - test/dummy/tmp/reports/test.pdf
94
- - test/dummy/tmp/reports/test2.pdf
95
- - test/dummy/tmp/reports/test3.pdf
96
- - test/dummy/tmp/reports/test4.pdf
97
- - test/dummy/tmp/reports/test5.pdf
98
90
  - test/fixtures/vcr_cassettes/test1.yml
99
91
  - test/fixtures/vcr_cassettes/test2.yml
100
92
  - test/fixtures/vcr_cassettes/test3.yml
@@ -148,9 +140,6 @@ test_files:
148
140
  - test/dummy/config/locales/en.yml
149
141
  - test/dummy/config/routes.rb
150
142
  - test/dummy/config.ru
151
- - test/dummy/db/test.sqlite3
152
- - test/dummy/log/development.log
153
- - test/dummy/log/test.log
154
143
  - test/dummy/public/404.html
155
144
  - test/dummy/public/422.html
156
145
  - test/dummy/public/500.html
@@ -158,11 +147,6 @@ test_files:
158
147
  - test/dummy/Rakefile
159
148
  - test/dummy/README.rdoc
160
149
  - test/dummy/script/rails
161
- - test/dummy/tmp/reports/test.pdf
162
- - test/dummy/tmp/reports/test2.pdf
163
- - test/dummy/tmp/reports/test3.pdf
164
- - test/dummy/tmp/reports/test4.pdf
165
- - test/dummy/tmp/reports/test5.pdf
166
150
  - test/fixtures/vcr_cassettes/test1.yml
167
151
  - test/fixtures/vcr_cassettes/test2.yml
168
152
  - test/fixtures/vcr_cassettes/test3.yml
File without changes
@@ -1,138 +0,0 @@
1
- DEPRECATION WARNING: config.active_record.whitelist_attributes is deprecated and have no effect. Remove its call from the configuration. (called from block in tsort_each at /Users/cmcknight/.rbenv/versions/2.2.3/lib/ruby/2.2.0/tsort.rb:226)
2
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from require at script/rails:6)
3
-
4
-
5
- Started POST "/login" for 127.0.0.1 at 2015-10-02 12:59:39 -0500
6
-
7
- NoMethodError (undefined method `auto_explain_threshold_in_seconds=' for #<Class:0x007fb2aab5f158>):
8
- activerecord (4.2.4) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
9
- activerecord (4.2.4) lib/active_record/railtie.rb:108:in `block (3 levels) in <class:Railtie>'
10
- activerecord (4.2.4) lib/active_record/railtie.rb:107:in `each'
11
- activerecord (4.2.4) lib/active_record/railtie.rb:107:in `block (2 levels) in <class:Railtie>'
12
- activesupport (4.2.4) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
13
- activesupport (4.2.4) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
14
- activesupport (4.2.4) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
15
- activesupport (4.2.4) lib/active_support/lazy_load_hooks.rb:44:in `each'
16
- activesupport (4.2.4) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
17
- activerecord (4.2.4) lib/active_record/base.rb:315:in `<module:ActiveRecord>'
18
- activerecord (4.2.4) lib/active_record/base.rb:26:in `<top (required)>'
19
- activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:660:in `rescue in call'
20
- activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:651:in `call'
21
- actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
22
- activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
23
- activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
24
- activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
25
- actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
26
- actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
27
- actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
28
- actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
29
- actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
30
- railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
31
- railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
32
- activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
33
- activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
34
- activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
35
- railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
36
- actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
37
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
38
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
39
- activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
40
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
41
- actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
42
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
43
- railties (4.2.4) lib/rails/engine.rb:518:in `call'
44
- railties (4.2.4) lib/rails/application.rb:165:in `call'
45
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
46
- thin (1.6.4) lib/thin/connection.rb:86:in `block in pre_process'
47
- thin (1.6.4) lib/thin/connection.rb:84:in `catch'
48
- thin (1.6.4) lib/thin/connection.rb:84:in `pre_process'
49
- thin (1.6.4) lib/thin/connection.rb:53:in `process'
50
- thin (1.6.4) lib/thin/connection.rb:39:in `receive_data'
51
- eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
52
- eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
53
- thin (1.6.4) lib/thin/backends/base.rb:73:in `start'
54
- thin (1.6.4) lib/thin/server.rb:162:in `start'
55
- rack (1.6.4) lib/rack/handler/thin.rb:19:in `run'
56
- rack (1.6.4) lib/rack/server.rb:286:in `start'
57
- railties (4.2.4) lib/rails/commands/server.rb:80:in `start'
58
- railties (4.2.4) lib/rails/commands/commands_tasks.rb:80:in `block in server'
59
- railties (4.2.4) lib/rails/commands/commands_tasks.rb:75:in `tap'
60
- railties (4.2.4) lib/rails/commands/commands_tasks.rb:75:in `server'
61
- railties (4.2.4) lib/rails/commands/commands_tasks.rb:39:in `run_command!'
62
- railties (4.2.4) lib/rails/commands.rb:17:in `<top (required)>'
63
- script/rails:6:in `require'
64
- script/rails:6:in `<main>'
65
-
66
-
67
- Rendered /Users/cmcknight/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
68
- Rendered /Users/cmcknight/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
69
- Rendered /Users/cmcknight/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
70
- Rendered /Users/cmcknight/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (56.9ms)
71
-
72
-
73
- Started POST "/login" for 127.0.0.1 at 2015-10-02 12:59:39 -0500
74
-
75
- NoMethodError (undefined method `auto_explain_threshold_in_seconds=' for #<Class:0x007fb2aab5f158>):
76
- activerecord (4.2.4) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
77
- activerecord (4.2.4) lib/active_record/railtie.rb:108:in `block (3 levels) in <class:Railtie>'
78
- activerecord (4.2.4) lib/active_record/railtie.rb:107:in `each'
79
- activerecord (4.2.4) lib/active_record/railtie.rb:107:in `block (2 levels) in <class:Railtie>'
80
- activesupport (4.2.4) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
81
- activesupport (4.2.4) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
82
- activesupport (4.2.4) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
83
- activesupport (4.2.4) lib/active_support/lazy_load_hooks.rb:44:in `each'
84
- activesupport (4.2.4) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
85
- activerecord (4.2.4) lib/active_record/base.rb:315:in `<module:ActiveRecord>'
86
- activerecord (4.2.4) lib/active_record/base.rb:26:in `<top (required)>'
87
- activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:660:in `rescue in call'
88
- activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:651:in `call'
89
- actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
90
- activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
91
- activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
92
- activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
93
- actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
94
- actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
95
- actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
96
- actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
97
- actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
98
- railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
99
- railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
100
- activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
101
- activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
102
- activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
103
- railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
104
- actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
105
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
106
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
107
- activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
108
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
109
- actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
110
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
111
- railties (4.2.4) lib/rails/engine.rb:518:in `call'
112
- railties (4.2.4) lib/rails/application.rb:165:in `call'
113
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
114
- thin (1.6.4) lib/thin/connection.rb:86:in `block in pre_process'
115
- thin (1.6.4) lib/thin/connection.rb:84:in `catch'
116
- thin (1.6.4) lib/thin/connection.rb:84:in `pre_process'
117
- thin (1.6.4) lib/thin/connection.rb:53:in `process'
118
- thin (1.6.4) lib/thin/connection.rb:39:in `receive_data'
119
- eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
120
- eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
121
- thin (1.6.4) lib/thin/backends/base.rb:73:in `start'
122
- thin (1.6.4) lib/thin/server.rb:162:in `start'
123
- rack (1.6.4) lib/rack/handler/thin.rb:19:in `run'
124
- rack (1.6.4) lib/rack/server.rb:286:in `start'
125
- railties (4.2.4) lib/rails/commands/server.rb:80:in `start'
126
- railties (4.2.4) lib/rails/commands/commands_tasks.rb:80:in `block in server'
127
- railties (4.2.4) lib/rails/commands/commands_tasks.rb:75:in `tap'
128
- railties (4.2.4) lib/rails/commands/commands_tasks.rb:75:in `server'
129
- railties (4.2.4) lib/rails/commands/commands_tasks.rb:39:in `run_command!'
130
- railties (4.2.4) lib/rails/commands.rb:17:in `<top (required)>'
131
- script/rails:6:in `require'
132
- script/rails:6:in `<main>'
133
-
134
-
135
- Rendered /Users/cmcknight/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
136
- Rendered /Users/cmcknight/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
137
- Rendered /Users/cmcknight/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
138
- Rendered /Users/cmcknight/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (54.9ms)
@@ -1,240 +0,0 @@
1
-  (0.1ms) begin transaction
2
- -------------------------------------------------------------------------
3
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
4
- -------------------------------------------------------------------------
5
-  (0.1ms) rollback transaction
6
-  (0.0ms) begin transaction
7
- -------------------------------------------------
8
- JasperserverRailsTest: test_test.pdf_is_generated
9
- -------------------------------------------------
10
-  (0.0ms) rollback transaction
11
-  (0.0ms) begin transaction
12
- --------------------------------------------------
13
- JasperserverRailsTest: test_test2.pdf_is_generated
14
- --------------------------------------------------
15
-  (0.0ms) rollback transaction
16
-  (0.0ms) begin transaction
17
- --------------------------------------------------
18
- JasperserverRailsTest: test_test3.pdf_is_generated
19
- --------------------------------------------------
20
-  (0.1ms) rollback transaction
21
-  (0.1ms) begin transaction
22
- -------------------------------------------------------------------------
23
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
24
- -------------------------------------------------------------------------
25
-  (0.1ms) rollback transaction
26
-  (0.0ms) begin transaction
27
- -------------------------------------------------
28
- JasperserverRailsTest: test_test.pdf_is_generated
29
- -------------------------------------------------
30
-  (0.0ms) rollback transaction
31
-  (0.0ms) begin transaction
32
- --------------------------------------------------
33
- JasperserverRailsTest: test_test2.pdf_is_generated
34
- --------------------------------------------------
35
-  (0.0ms) rollback transaction
36
-  (0.0ms) begin transaction
37
- --------------------------------------------------
38
- JasperserverRailsTest: test_test3.pdf_is_generated
39
- --------------------------------------------------
40
-  (0.1ms) rollback transaction
41
-  (0.1ms) begin transaction
42
- -------------------------------------------------------------------------
43
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
44
- -------------------------------------------------------------------------
45
-  (0.1ms) rollback transaction
46
-  (0.0ms) begin transaction
47
- -------------------------------------------------
48
- JasperserverRailsTest: test_test.pdf_is_generated
49
- -------------------------------------------------
50
-  (0.0ms) rollback transaction
51
-  (0.0ms) begin transaction
52
- --------------------------------------------------
53
- JasperserverRailsTest: test_test2.pdf_is_generated
54
- --------------------------------------------------
55
-  (0.0ms) rollback transaction
56
-  (0.0ms) begin transaction
57
- --------------------------------------------------
58
- JasperserverRailsTest: test_test3.pdf_is_generated
59
- --------------------------------------------------
60
-  (0.1ms) rollback transaction
61
-  (0.1ms) begin transaction
62
- -------------------------------------------------------------------------
63
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
64
- -------------------------------------------------------------------------
65
-  (0.1ms) rollback transaction
66
-  (0.0ms) begin transaction
67
- -------------------------------------------------
68
- JasperserverRailsTest: test_test.pdf_is_generated
69
- -------------------------------------------------
70
-  (0.0ms) rollback transaction
71
-  (0.0ms) begin transaction
72
- --------------------------------------------------
73
- JasperserverRailsTest: test_test2.pdf_is_generated
74
- --------------------------------------------------
75
-  (0.0ms) rollback transaction
76
-  (0.1ms) begin transaction
77
- --------------------------------------------------
78
- JasperserverRailsTest: test_test3.pdf_is_generated
79
- --------------------------------------------------
80
-  (0.1ms) rollback transaction
81
-  (0.1ms) begin transaction
82
- -------------------------------------------------------------------------
83
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
84
- -------------------------------------------------------------------------
85
-  (0.1ms) rollback transaction
86
-  (0.0ms) begin transaction
87
- -------------------------------------------------
88
- JasperserverRailsTest: test_test.pdf_is_generated
89
- -------------------------------------------------
90
-  (0.0ms) rollback transaction
91
-  (0.0ms) begin transaction
92
- --------------------------------------------------
93
- JasperserverRailsTest: test_test2.pdf_is_generated
94
- --------------------------------------------------
95
-  (0.0ms) rollback transaction
96
-  (0.0ms) begin transaction
97
- --------------------------------------------------
98
- JasperserverRailsTest: test_test3.pdf_is_generated
99
- --------------------------------------------------
100
-  (0.1ms) rollback transaction
101
-  (0.1ms) begin transaction
102
- -------------------------------------------------------------------------
103
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
104
- -------------------------------------------------------------------------
105
-  (0.1ms) rollback transaction
106
-  (0.1ms) begin transaction
107
- -------------------------------------------------
108
- JasperserverRailsTest: test_test.pdf_is_generated
109
- -------------------------------------------------
110
-  (0.1ms) rollback transaction
111
-  (0.0ms) begin transaction
112
- --------------------------------------------------
113
- JasperserverRailsTest: test_test2.pdf_is_generated
114
- --------------------------------------------------
115
-  (0.0ms) rollback transaction
116
-  (0.1ms) begin transaction
117
- --------------------------------------------------
118
- JasperserverRailsTest: test_test3.pdf_is_generated
119
- --------------------------------------------------
120
-  (0.1ms) rollback transaction
121
-  (0.1ms) begin transaction
122
- -------------------------------------------------------------------------
123
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
124
- -------------------------------------------------------------------------
125
-  (0.1ms) rollback transaction
126
-  (0.1ms) begin transaction
127
- -------------------------------------------------
128
- JasperserverRailsTest: test_test.pdf_is_generated
129
- -------------------------------------------------
130
-  (0.0ms) rollback transaction
131
-  (0.0ms) begin transaction
132
- --------------------------------------------------
133
- JasperserverRailsTest: test_test2.pdf_is_generated
134
- --------------------------------------------------
135
-  (0.0ms) rollback transaction
136
-  (0.1ms) begin transaction
137
- --------------------------------------------------
138
- JasperserverRailsTest: test_test3.pdf_is_generated
139
- --------------------------------------------------
140
-  (0.1ms) rollback transaction
141
-  (0.1ms) begin transaction
142
- -------------------------------------------------------------------------
143
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
144
- -------------------------------------------------------------------------
145
-  (0.1ms) rollback transaction
146
-  (0.0ms) begin transaction
147
- -------------------------------------------------
148
- JasperserverRailsTest: test_test.pdf_is_generated
149
- -------------------------------------------------
150
-  (0.0ms) rollback transaction
151
-  (0.0ms) begin transaction
152
- --------------------------------------------------
153
- JasperserverRailsTest: test_test2.pdf_is_generated
154
- --------------------------------------------------
155
-  (0.0ms) rollback transaction
156
-  (0.0ms) begin transaction
157
- --------------------------------------------------
158
- JasperserverRailsTest: test_test3.pdf_is_generated
159
- --------------------------------------------------
160
-  (0.1ms) rollback transaction
161
-  (0.1ms) begin transaction
162
- -------------------------------------------------------------------------
163
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
164
- -------------------------------------------------------------------------
165
-  (0.1ms) rollback transaction
166
-  (0.0ms) begin transaction
167
- -------------------------------------------------
168
- JasperserverRailsTest: test_test.pdf_is_generated
169
- -------------------------------------------------
170
-  (0.0ms) rollback transaction
171
-  (0.0ms) begin transaction
172
- --------------------------------------------------
173
- JasperserverRailsTest: test_test2.pdf_is_generated
174
- --------------------------------------------------
175
-  (0.0ms) rollback transaction
176
-  (0.0ms) begin transaction
177
- --------------------------------------------------
178
- JasperserverRailsTest: test_test3.pdf_is_generated
179
- --------------------------------------------------
180
-  (0.1ms) rollback transaction
181
-  (0.1ms) begin transaction
182
- -------------------------------------------------------------------------
183
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
184
- -------------------------------------------------------------------------
185
-  (0.2ms) rollback transaction
186
-  (0.1ms) begin transaction
187
- -------------------------------------------------
188
- JasperserverRailsTest: test_test.pdf_is_generated
189
- -------------------------------------------------
190
-  (0.1ms) rollback transaction
191
-  (0.1ms) begin transaction
192
- --------------------------------------------------
193
- JasperserverRailsTest: test_test2.pdf_is_generated
194
- --------------------------------------------------
195
-  (0.1ms) rollback transaction
196
-  (0.0ms) begin transaction
197
- --------------------------------------------------
198
- JasperserverRailsTest: test_test3.pdf_is_generated
199
- --------------------------------------------------
200
-  (0.1ms) rollback transaction
201
-  (0.1ms) begin transaction
202
- -------------------------------------------------------------------------
203
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
204
- -------------------------------------------------------------------------
205
-  (0.1ms) rollback transaction
206
-  (0.0ms) begin transaction
207
- -------------------------------------------------
208
- JasperserverRailsTest: test_test.pdf_is_generated
209
- -------------------------------------------------
210
-  (0.1ms) rollback transaction
211
-  (0.0ms) begin transaction
212
- --------------------------------------------------
213
- JasperserverRailsTest: test_test2.pdf_is_generated
214
- --------------------------------------------------
215
-  (0.1ms) rollback transaction
216
-  (0.0ms) begin transaction
217
- --------------------------------------------------
218
- JasperserverRailsTest: test_test3.pdf_is_generated
219
- --------------------------------------------------
220
-  (0.1ms) rollback transaction
221
-  (0.1ms) begin transaction
222
- -------------------------------------------------------------------------
223
- JasperserverRailsTest: test_stays_logged_in_when_running_multiple_reports
224
- -------------------------------------------------------------------------
225
-  (0.1ms) rollback transaction
226
-  (0.1ms) begin transaction
227
- -------------------------------------------------
228
- JasperserverRailsTest: test_test.pdf_is_generated
229
- -------------------------------------------------
230
-  (0.1ms) rollback transaction
231
-  (0.0ms) begin transaction
232
- --------------------------------------------------
233
- JasperserverRailsTest: test_test2.pdf_is_generated
234
- --------------------------------------------------
235
-  (0.1ms) rollback transaction
236
-  (0.0ms) begin transaction
237
- --------------------------------------------------
238
- JasperserverRailsTest: test_test3.pdf_is_generated
239
- --------------------------------------------------
240
-  (0.1ms) rollback transaction