diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-10-23 16:59:53 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-10-23 16:59:53 +0300 |
commit | 38cfe4cf3d9fd2a4ed0f3949586126a7b8144e8e (patch) | |
tree | c3e4e07c3f2f3bf4f8b99deb7994b8953a4a33b5 /test/test_access_log.py | |
parent | 1033cfa3b0255fb23ecd87cc0c4fb4ebb6fedff3 (diff) | |
download | unit-38cfe4cf3d9fd2a4ed0f3949586126a7b8144e8e.tar.gz unit-38cfe4cf3d9fd2a4ed0f3949586126a7b8144e8e.tar.bz2 |
Tests: added USR1 signal test for unit.log.
Diffstat (limited to 'test/test_access_log.py')
-rw-r--r-- | test/test_access_log.py | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/test/test_access_log.py b/test/test_access_log.py index 02d9cb2c..94f6e7bf 100644 --- a/test/test_access_log.py +++ b/test/test_access_log.py @@ -298,42 +298,5 @@ Connection: close 'change', ) - def test_access_log_reopen(self): - self.load('empty') - - log_path = self.testdir + '/access.log' - - self.assertTrue(self.waitforfiles(log_path), 'open') - - log_path_new = self.testdir + '/new.log' - - os.rename(log_path, log_path_new) - - self.get() - - self.assertIsNotNone( - self.wait_for_record(r'"GET / HTTP/1.1" 200 0 "-" "-"', 'new.log'), - 'rename new', - ) - self.assertFalse(os.path.isfile(log_path), 'rename old') - - with open(self.testdir + '/unit.pid', 'r') as f: - pid = f.read().rstrip() - - call(['kill', '-s', 'USR1', pid]) - - self.assertTrue(self.waitforfiles(log_path), 'reopen') - - self.get(url='/usr1') - - self.assertIsNotNone( - self.wait_for_record(r'"GET /usr1 HTTP/1.1" 200 0 "-" "-"'), - 'reopen 2', - ) - self.assertIsNone( - self.search_in_log(r'/usr1', 'new.log'), 'rename new 2' - ) - - if __name__ == '__main__': TestAccessLog.main() |