Class: Fluent::Test::Driver::Base
- Inherits:
-
Object
- Object
- Fluent::Test::Driver::Base
- Defined in:
- lib/fluent/test/driver/base.rb
Constant Summary collapse
- DEFAULT_TIMEOUT =
300
Instance Attribute Summary collapse
-
#instance ⇒ Object
readonly
Returns the value of attribute instance.
-
#logs ⇒ Object
readonly
Returns the value of attribute logs.
Instance Method Summary collapse
- #break_if(&block) ⇒ Object
- #broken? ⇒ Boolean
- #configure(conf, syntax: :v1) ⇒ Object
- #end_if(&block) ⇒ Object
-
#initialize(klass, opts: {}, &block) ⇒ Base
constructor
A new instance of Base.
- #instance_hook_after_started ⇒ Object
- #instance_hook_before_stopped ⇒ Object
- #instance_shutdown ⇒ Object
- #instance_start ⇒ Object
- #run(timeout: nil, start: true, shutdown: true, &block) ⇒ Object
- #run_actual(timeout: DEFAULT_TIMEOUT, &block) ⇒ Object
- #stop? ⇒ Boolean
Constructor Details
#initialize(klass, opts: {}, &block) ⇒ Base
Returns a new instance of Base.
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/fluent/test/driver/base.rb', line 36 def initialize(klass, opts: {}, &block) if klass.is_a?(Class) @instance = klass.new if block @instance.singleton_class.module_eval(&block) @instance.send(:initialize) end else @instance = klass end @instance.under_plugin_development = true @socket_manager_server = nil @logs = [] @run_post_conditions = [] @run_breaking_conditions = [] @broken = false end |
Instance Attribute Details
#instance ⇒ Object (readonly)
Returns the value of attribute instance.
32 33 34 |
# File 'lib/fluent/test/driver/base.rb', line 32 def instance @instance end |
#logs ⇒ Object (readonly)
Returns the value of attribute logs.
32 33 34 |
# File 'lib/fluent/test/driver/base.rb', line 32 def logs @logs end |
Instance Method Details
#break_if(&block) ⇒ Object
66 67 68 69 |
# File 'lib/fluent/test/driver/base.rb', line 66 def break_if(&block) raise ArgumentError, "block is not given" unless block_given? @run_breaking_conditions << block end |
#broken? ⇒ Boolean
71 72 73 |
# File 'lib/fluent/test/driver/base.rb', line 71 def broken? @broken end |
#configure(conf, syntax: :v1) ⇒ Object
57 58 59 |
# File 'lib/fluent/test/driver/base.rb', line 57 def configure(conf, syntax: :v1) raise NotImplementedError end |
#end_if(&block) ⇒ Object
61 62 63 64 |
# File 'lib/fluent/test/driver/base.rb', line 61 def end_if(&block) raise ArgumentError, "block is not given" unless block_given? @run_post_conditions << block end |
#instance_hook_after_started ⇒ Object
130 131 132 |
# File 'lib/fluent/test/driver/base.rb', line 130 def instance_hook_after_started # insert hooks for tests available after instance.start end |
#instance_hook_before_stopped ⇒ Object
134 135 136 |
# File 'lib/fluent/test/driver/base.rb', line 134 def instance_hook_before_stopped # same with above end |
#instance_shutdown ⇒ Object
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/fluent/test/driver/base.rb', line 138 def instance_shutdown instance_hook_before_stopped show_errors_if_exists = ->(label, block){ begin block.call rescue => e puts "unexpected error while #{label}, #{e.class}:#{e.}" e.backtrace.each do |bt| puts "\t#{bt}" end end } show_errors_if_exists.call(:stop, ->(){ @instance.stop unless @instance.stopped? }) show_errors_if_exists.call(:before_shutdown, ->(){ @instance.before_shutdown unless @instance.before_shutdown? }) show_errors_if_exists.call(:shutdown, ->(){ @instance.shutdown unless @instance.shutdown? }) show_errors_if_exists.call(:after_shutdown, ->(){ @instance.after_shutdown unless @instance.after_shutdown? }) if @instance.respond_to?(:server_wait_until_stop) @instance.server_wait_until_stop end if @instance.respond_to?(:event_loop_wait_until_stop) @instance.event_loop_wait_until_stop end show_errors_if_exists.call(:close, ->(){ @instance.close unless @instance.closed? }) if @instance.respond_to?(:thread_wait_until_stop) @instance.thread_wait_until_stop end show_errors_if_exists.call(:terminate, ->(){ @instance.terminate unless @instance.terminated? }) if @socket_manager_server @socket_manager_server.close if @socket_manager_server.is_a?(String) && File.exist?(@socket_manager_path) FileUtils.rm_f @socket_manager_path end end end |
#instance_start ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/fluent/test/driver/base.rb', line 102 def instance_start if @instance.respond_to?(:server_wait_until_start) @socket_manager_path = ServerEngine::SocketManager::Server.generate_path if @socket_manager_path.is_a?(String) && File.exist?(@socket_manager_path) FileUtils.rm_f @socket_manager_path end @socket_manager_server = ServerEngine::SocketManager::Server.open(@socket_manager_path) ENV['SERVERENGINE_SOCKETMANAGER_PATH'] = @socket_manager_path.to_s end unless @instance.started? @instance.start end unless @instance.after_started? @instance.after_start end if @instance.respond_to?(:thread_wait_until_start) @instance.thread_wait_until_start end if @instance.respond_to?(:event_loop_wait_until_start) @instance.event_loop_wait_until_start end instance_hook_after_started end |
#run(timeout: nil, start: true, shutdown: true, &block) ⇒ Object
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/fluent/test/driver/base.rb', line 75 def run(timeout: nil, start: true, shutdown: true, &block) instance_start if start timeout ||= DEFAULT_TIMEOUT stop_at = Fluent::Clock.now + timeout @run_breaking_conditions << ->(){ Fluent::Clock.now >= stop_at } if !block_given? && @run_post_conditions.empty? && @run_breaking_conditions.empty? raise ArgumentError, "no stop conditions nor block specified" end sleep_with_watching_threads = ->(){ if @instance.respond_to?(:_threads) @instance._threads.values.each{|t| t.join(0) } end sleep 0.1 } begin retval = run_actual(timeout: timeout, &block) sleep_with_watching_threads.call until stop? retval ensure instance_shutdown if shutdown end end |
#run_actual(timeout: DEFAULT_TIMEOUT, &block) ⇒ Object
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'lib/fluent/test/driver/base.rb', line 181 def run_actual(timeout: DEFAULT_TIMEOUT, &block) if @instance.respond_to?(:_threads) sleep 0.1 until @instance._threads.values.all?(&:alive?) end if @instance.respond_to?(:event_loop_running?) sleep 0.1 until @instance.event_loop_running? end if @instance.respond_to?(:_child_process_processes) sleep 0.1 until @instance._child_process_processes.values.all?{|pinfo| pinfo.alive } end return_value = nil begin Timeout.timeout(timeout * 2) do |sec| return_value = block.call if block_given? end rescue Timeout::Error raise TestTimedOut, "Test case timed out with hard limit." end return_value end |
#stop? ⇒ Boolean
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'lib/fluent/test/driver/base.rb', line 205 def stop? # Should stop running if post conditions are not registered. return true unless @run_post_conditions || @run_post_conditions.empty? # Should stop running if all of the post conditions are true. return true if @run_post_conditions.all? {|proc| proc.call } # Should stop running if some of the breaking conditions is true. # In this case, some post conditions may be not true. if @run_breaking_conditions.any? {|proc| proc.call } @broken = true return true end false end |