Tests: unit_stop() removed where possible.

Since wait_for_record() was introduced there is no need
to stop Unit before parsing unit.log.
This commit is contained in:
Andrei Zeliankou
2021-01-12 06:20:23 +00:00
parent a0bc946db3
commit f5ac143246
6 changed files with 10 additions and 70 deletions

View File

@@ -2,7 +2,6 @@ import re
import pytest
from conftest import unit_stop
from unit.applications.lang.ruby import TestApplicationRuby
@@ -175,8 +174,6 @@ class TestRubyApplication(TestApplicationRuby):
self.get()
unit_stop()
assert (
self.wait_for_record(r'\[error\].+Error in application')
is not None
@@ -187,8 +184,6 @@ class TestRubyApplication(TestApplicationRuby):
self.get()
unit_stop()
assert (
self.wait_for_record(r'\[error\].+1234567890') is not None
), 'errors puts int'
@@ -198,8 +193,6 @@ class TestRubyApplication(TestApplicationRuby):
self.get()
unit_stop()
assert (
self.wait_for_record(r'\[error\].+Error in application')
is not None
@@ -215,7 +208,6 @@ class TestRubyApplication(TestApplicationRuby):
self.get()
unit_stop()
assert (
self.wait_for_record(r'\[error\].+1234567890') is not None
@@ -228,8 +220,6 @@ class TestRubyApplication(TestApplicationRuby):
self.conf({"listeners": {}, "applications": {}})
unit_stop()
assert (
self.wait_for_record(r'\[error\].+At exit called\.') is not None
), 'at exit'
@@ -289,8 +279,6 @@ class TestRubyApplication(TestApplicationRuby):
assert self.get()['status'] == 500, 'body each error status'
unit_stop()
assert (
self.wait_for_record(r'\[error\].+Failed to run ruby script')
is not None